/* ===================================================
   MARINA BETCIO STYLE OVERRIDE
   Renk: #1a1d29 bg, #FFD700 accent, #fff text
   =================================================== */

/* === BODY & GLOBAL === */
body, html, .wrapper, .main-content, #page-wrapper, .welcome-theme {
    background: #1a1d29 !important;
    background-attachment: fixed !important;
    font-family: 'Poppins', sans-serif !important;
    color: #fff;
}

/* === TOP ANNOUNCEMENT BAR === */
.betcio-announce {
    background: linear-gradient(135deg, #0d1117, #141b2d);
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 6px 40px;
    position: relative;
    z-index: 1001;
    white-space: nowrap;
    overflow: hidden;
}
.betcio-announce .announce-text {
    display: inline-block;
    animation: announceScroll 20s linear infinite;
}
@keyframes announceScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.betcio-announce .announce-close {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    cursor: pointer; font-size: 16px; color: rgba(255,255,255,0.4); font-weight: 700;
}
.betcio-announce .announce-nav {
    display: none !important;
}
.betcio-announce .announce-nav.left { left: 8px; }
.betcio-announce .announce-nav.right { right: 32px; }

/* === MAIN HEADER === */
.betcio-header {
    background: #1a1d29;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.betcio-header .bh-logo img {
    height: 38px;
    width: auto;
}
.betcio-header .bh-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.betcio-header .bh-btn {
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.bh-btn-outline {
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    background: transparent;
}
.bh-btn-outline:hover {
    border-color: #FFD700;
    color: #FFD700;
    background: rgba(255,215,0,0.05);
}
.bh-btn-yellow {
    background: #FFD700 !important;
    color: #1a1d29 !important;
    border: none;
    font-weight: 800;
}
.bh-btn-yellow:hover {
    background: #ffea4d !important;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    transform: translateY(-1px);
}
.bh-btn-login {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    background: transparent;
    padding: 7px 18px;
    border-radius: 6px;
}
.bh-btn-login:hover { border-color: #FFD700; color: #FFD700; }
.bh-icon-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    background: rgba(255,255,255,0.06);
    border: none; cursor: pointer;
    transition: all 0.2s;
}
.bh-icon-btn:hover { background: rgba(255,215,0,0.15); color: #FFD700; }
.bh-clock {
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.5);
    padding: 0 8px;
    font-variant-numeric: tabular-nums;
}
.bh-lang {
    display: flex; align-items: center; gap: 4px;
    font-size: 11px; color: #fff; cursor: pointer;
    padding: 5px 8px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}
.bh-lang img { width: 18px; height: 13px; border-radius: 2px; }
.bh-hamburger {
    width: 36px; height: 36px; display: flex;
    align-items: center; justify-content: center;
    font-size: 18px; color: #fff; cursor: pointer;
    background: rgba(255,255,255,0.06); border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
}
.bh-hamburger:hover { background: rgba(255,215,0,0.1); color: #FFD700; }

/* User logged in header */
.bh-user-info {
    display: flex; align-items: center; gap: 8px;
    padding: 5px 12px; border-radius: 8px;
    background: rgba(255,215,0,0.06);
    border: 1px solid rgba(255,215,0,0.15);
}
.bh-user-name { font-size: 12px; font-weight: 600; color: #FFD700; }
.bh-user-bal { font-size: 12px; font-weight: 700; color: #fff; }
.bh-btn-dep {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #1a1d29 !important;
    padding: 7px 16px; border-radius: 6px;
    font-size: 11px; font-weight: 800;
    text-decoration: none; border: none;
}
.bh-btn-dep:hover { box-shadow: 0 4px 12px rgba(255,215,0,0.3); }
.bh-btn-wit {
    border: 1.5px solid #FFD700;
    color: #FFD700;
    padding: 6px 14px; border-radius: 6px;
    font-size: 11px; font-weight: 700;
    text-decoration: none; background: transparent;
}
.bh-btn-wit:hover { background: rgba(255,215,0,0.08); }

/* === NAV BAR === */
.betcio-nav {
    background: #1a1d29;
    padding: 8px 24px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    -webkit-overflow-scrolling: touch;
}
.betcio-nav::-webkit-scrollbar { display: none; }
.betcio-nav a {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1.5px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}
.betcio-nav a:hover {
    border-color: #FFD700;
    color: #FFD700;
    background: rgba(255,215,0,0.06);
}
.betcio-nav a.nav-promo {
    background: linear-gradient(135deg, #0d1117, #141b2d);
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-color: #FFD700;
    font-weight: 800;
}
.betcio-nav a.nav-promo:hover {
    background: #ffea4d;
    box-shadow: 0 2px 10px rgba(255,215,0,0.3);
}
.betcio-nav a i { font-size: 13px; }

/* === BANNER SLIDER === */
#large-slider { border-radius: 12px; overflow: hidden; margin: 12px 16px !important; }
#large-slider .item img, .home-main-banner {
    width: 100%; height: auto; aspect-ratio: 16/6;
    object-fit: cover; border-radius: 12px;
}
.carousel-control { background: none !important; opacity: 0.7; }
.carousel-control:hover { opacity: 1; }
.carousel-indicators li {
    background: rgba(255,255,255,0.3) !important;
    border: none !important;
    width: 8px; height: 8px; border-radius: 50%;
}
.carousel-indicators .active {
    background: #FFD700 !important;
    width: 10px; height: 10px;
}

/* === CATEGORY CARDS (Betcio 5 sütun) === */
.betcio-cats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 16px;
    margin: 0 auto;
    max-width: 1400px;
}
.betcio-cat-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.betcio-cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.betcio-cat-card img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.betcio-cat-card .cat-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    text-align: center;
}
.betcio-cat-card .cat-title {
    color: #FFD700; font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 6px;
}
.betcio-cat-card .cat-btn {
    display: inline-block;
    padding: 6px 18px; border-radius: 20px;
    background: #FFD700; color: #1a1d29;
    font-size: 11px; font-weight: 700;
    transition: all 0.2s;
}
.betcio-cat-card:hover .cat-btn { background: #ffea4d; }
.betcio-cat-card .cat-sub {
    color: rgba(255,255,255,0.5); font-size: 10px;
    margin-top: 4px;
}

/* === SECTION TITLES === */
.betcio-section-title {
    text-align: center;
    padding: 20px 16px 12px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    border: 1.5px solid rgba(255,215,0,0.25);
    border-radius: 8px;
    margin: 16px;
    background: rgba(255,215,0,0.03);
}

/* === GAME GRID === */
.betcio-games-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    padding: 0 16px 16px;
    max-width: 1400px;
    margin: 0 auto;
}
.betcio-game-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 3/4;
}
.betcio-game-card:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
.betcio-game-card img { width: 100%; height: 100%; object-fit: cover; }
.betcio-game-card .game-name {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 6px 8px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff; font-size: 10px; font-weight: 600;
    text-align: center;
}
.betcio-game-card .game-provider {
    position: absolute; top: 4px; left: 4px;
    background: rgba(0,0,0,0.6);
    color: rgba(255,255,255,0.7);
    font-size: 8px; padding: 2px 6px;
    border-radius: 4px; font-weight: 600;
    text-transform: uppercase;
}

/* === FOOTER === */
.betcio-footer {
    background: #080b16;
    box-shadow: 0 -2px 20px rgba(239,68,68,0.06);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 0 0;
    margin-top: 20px;
}
.betcio-footer-links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 30px;
}
.betcio-footer-col h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,215,0,0.15);
}
.betcio-footer-col a {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    text-decoration: none;
    padding: 3px 0;
    transition: color 0.2s;
}
.betcio-footer-col a:hover { color: #FFD700; }
.betcio-footer-providers {
    background: rgba(255,255,255,0.02);
    padding: 24px;
    text-align: center;
}
.betcio-footer-providers h5 {
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.betcio-footer-payments {
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.betcio-payment-badge {
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 10px;
    font-weight: 600;
}
.betcio-footer-bottom {
    text-align: center;
    padding: 20px;
    color: rgba(255,255,255,0.2);
    font-size: 11px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* === HIDE OLD ELEMENTS === */
.navbar.navbar-default.navbar-menu1 { display: none !important; }
.navbar-menu2 { display: none !important; }
.top-announcement-bar { display: none !important; }
nav#navbar { display: none !important; }

/* === MOBILE SIDE MENU OVERRIDE === */
#menu-panel-left {
    background: #12151f !important;
    border-right: 1px solid rgba(255,215,0,0.1) !important;
}
#menu-panel-left .side-menu-header {
    background: #1a1e2a !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    display: flex !important;
    align-items: center !important;
    padding: 14px 16px !important;
    gap: 10px !important;
}
.side-menu-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #e6edf3 !important;
    letter-spacing: .5px !important;
}
.side-menu-close {
    margin-left: auto !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    color: rgba(255,255,255,.3) !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.04) !important;
    transition: all .2s !important;
}
.side-menu-close:hover {
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
}
.mk-menu-item {
    display:none !important;
}
.mk-menu-grid {
    display:none !important;
}
.mk-bilet-badge {
    background: rgba(255,215,0,0.06) !important;
    color: #FFD700 !important;
    border: 1px solid rgba(255,215,0,0.15) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    letter-spacing: .3px !important;
}

/* Right panel */
#menu-panel-right {
    background: #12151f !important;
}
.pp-head { background: linear-gradient(135deg, #1a1d29, #12151f) !important; }
.pp-btn-dep { background: linear-gradient(135deg, #FFD700, #FFA500) !important; color: #1a1d29 !important; }
.pp-btn-wit { border-color: #FFD700 !important; color: #FFD700 !important; }
.pp-link:hover { background: rgba(255,215,0,0.06) !important; }
.pp-link.pp-gold { color: #FFD700 !important; }

/* === RESPONSIVE === */
@media(max-width: 991px) {
    .betcio-cats { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 8px; }
    .betcio-games-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 0 8px 12px; }
    .betcio-footer-links { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .betcio-header .bh-actions .desktop-only { display: none !important; }
    .betcio-nav { padding: 6px 12px 10px; gap: 5px; }
    .betcio-nav a { padding: 6px 12px; font-size: 10px; }
}
@media(max-width: 767px) {
    .betcio-cats { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .betcio-games-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
    .betcio-footer-links { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px 20px; }
    .betcio-header { padding: 8px 12px; }
    .betcio-header .bh-logo img { height: 30px; }
    #large-slider { margin: 8px !important; border-radius: 10px; }
    .betcio-section-title { font-size: 12px; margin: 8px; padding: 14px 10px; }
    .betcio-cat-card .cat-title { font-size: 11px; }
    .betcio-cat-card .cat-btn { font-size: 9px; padding: 4px 12px; }
}
@media(max-width: 480px) {
    .betcio-games-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
    .betcio-cat-card { aspect-ratio: 2/3; }
    .betcio-nav a { padding: 5px 10px; font-size: 9px; }
    .bh-btn { font-size: 10px; padding: 5px 10px; }
}

/* === MOBILE BOTTOM NAV BAR === */
.betcio-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #080b16;
    box-shadow: 0 -2px 20px rgba(239,68,68,0.06);
    border-top: 1px solid rgba(239,68,68,0.15);
    z-index: 99999;
    padding: 6px 0 env(safe-area-inset-bottom, 4px);
    overflow: visible;
}
.betcio-bottom-nav .bn-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: visible;
    position: relative;
}
.betcio-bottom-nav .bn-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 2px;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 9px; font-weight: 500;
    padding: 4px 8px;
    transition: color 0.2s;
}
.betcio-bottom-nav .bn-item i { font-size: 18px; color: rgba(255,255,255,0.7); }
.betcio-bottom-nav .bn-item:hover,
.betcio-bottom-nav .bn-item.active { color: #fff; }
.betcio-bottom-nav .bn-item.bn-center {
    background: transparent; color: rgba(255,255,255,0.7);
    border-radius: 0; width: auto; height: auto;
    margin-top: -22px; justify-content: center;
    box-shadow: none;
}
.bn-center-circle {
    width: 52px; height: 52px; border-radius: 50%;
    background: #0d1020;
    border: 2px solid rgba(239,68,68,0.3);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 25px rgba(239,68,68,0.15), 0 0 50px rgba(239,68,68,0.05);
}
.bn-center-circle i {
    font-size: 22px !important; color: #fff !important;
}
@media(max-width: 991px) {
    .betcio-bottom-nav { display: block; }
    body { padding-bottom: 60px; }
}

/* === HIDE OLD ELEMENTS === */
.mk-marquee, .mk-bonus-slim, .trust-band, .home-top-cats,
.mk-pv-wrap, #pwaIosGuide { display: none !important; }

/* === EXISTING GAME GRID RESTYLE (betco-*) === */
.betco-section { background: transparent !important; padding: 0 !important; }
.betco-section-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 16px 10px; max-width: 1400px; margin: 0 auto;
}
.betco-title {
    font-size: 16px; font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: 1px;
}
.betco-more-link {
    color: #FFD700 !important; font-size: 12px; font-weight: 700;
    text-decoration: none; text-transform: uppercase;
    border: 1px solid rgba(255,215,0,0.2); padding: 6px 14px;
    border-radius: 6px; transition: all 0.2s;
}
.betco-more-link:hover { background: rgba(255,215,0,0.1); border-color: #FFD700; }

.betco-games-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 10px !important; padding: 0 16px 20px !important;
    max-width: 1400px; margin: 0 auto;
}
.betco-game-card {
    border-radius: 12px !important; overflow: hidden;
    background: #080b16;
    box-shadow: 0 -2px 20px rgba(239,68,68,0.06); position: relative;
    transition: all 0.3s; cursor: pointer;
}
.betco-game-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
.betco-game-img {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover; display: block;
    transition: transform 0.4s;
}
.betco-game-card:hover .betco-game-img { transform: scale(1.05); }
.betco-game-name {
    padding: 8px 10px; font-size: 11px; font-weight: 600;
    color: #e6edf3; text-align: center; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
    background: #080b16;
    box-shadow: 0 -2px 20px rgba(239,68,68,0.06);
}
.betco-game-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.betco-game-card:hover .betco-game-overlay { opacity: 1; }
.betco-game-overlay span {
    background: #FFD700; color: #1a1d29;
    padding: 8px 20px; border-radius: 20px;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase;
}

/* Live count badge */
.live-count {
    background: rgba(255,215,0,0.15); color: #FFD700;
    font-size: 10px; padding: 2px 8px; border-radius: 10px;
    font-weight: 600; margin-left: 6px;
}

/* Mobile game grid */
@media(max-width: 991px) {
    .betco-games-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 6px !important; }
}
@media(max-width: 767px) {
    .betco-games-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 5px !important; padding: 0 8px 12px !important; }
    .betco-game-name { font-size: 9px; padding: 5px 6px; }
    .betco-title { font-size: 13px; }
}
@media(max-width: 480px) {
    .betco-games-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* === SOL MENÜ - Betcio tarzı: default gizli, hamburger ile açılır === */
#menu-panel-left {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    min-height: -webkit-fill-available !important;
    z-index: 99999 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    transform: translateX(-100%) !important;
    transition: transform 0.25s ease !important;
    background: #1a1e2a !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 70px !important;
}
#menu-panel-left.open {
    transform: translateX(0) !important;
}
.overlay {
    position: fixed !important;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6) !important;
    z-index: 10000 !important;
    display: none !important;
}
.overlay.open { display: block !important; }

/* Sol menü butonu (MENÜ yazısı) gizle - betcio'da yok */
#menu-button-left { display: none !important; }

/* Ana içerik sol margin sıfırla */
body, .wrapper, #page-wrapper, .main-content, section, .container {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
/* Sidebar body sınıflarını override et */
body.sidebar-closed .main-content,
body .main-content {
    margin-left: 0 !important;
    width: 100% !important;
}

/* PWA banner pozisyon fix */
#pwaBanner { bottom: 70px !important; }

/* === HAMBURGER - sadece mobilde === */
@media(min-width: 992px) {
    .bh-hamburger { display: none !important; }
    #menu-button-right { display: none !important; }
}
@media(max-width: 991px) {
    .bh-hamburger { display: flex !important; }
}

/* === ORTALAMA & SPACING === */
.betcio-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 30px !important;
}
.betcio-nav {
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    padding: 8px 30px 12px !important;
}
.betcio-announce {
    max-width: 100%;
    padding: 6px 50px;
}
#large-slider {
    max-width: 1400px;
    margin: 12px auto !important;
    padding: 0 16px;
}
.container {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    float: none !important;
}
.betco-section {
    max-width: 1400px;
    margin-left: auto !important;
    margin-right: auto !important;
}
section#main, section {
    max-width: 100%;
    margin: 0 auto;
}
/* Banner tam genişlik, kenarlardan eşit */
#large-slider .carousel-inner {
    border-radius: 12px;
    overflow: hidden;
}
/* Eski layout override */
.col-9, .col-md-10, .col-12 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}
#main-center, #main-panel, .center-container {
    width: 100% !important;
    max-width: 1400px;
    margin: 0 auto;
}

/* === FORCE FULL WIDTH - eski sidebar kalıntılarını kaldır === */
body, html { width: 100% !important; overflow-x: hidden !important; }
body.sidebar-closed, body { padding-left: 0 !important; margin-left: 0 !important; }
.wrapper, #page-wrapper, .main-content, .content-wrapper,
#main, #main-panel, #main-center, .center-container,
.welcome-theme, section { 
    margin-left: 0 !important; 
    padding-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}
#menu-panel-left:not(.open) ~ *, 
#menu-panel-left:not(.open) ~ div,
#menu-panel-left:not(.open) ~ section { margin-left: 0 !important; }
.navbar-brand { margin-left: 0 !important; padding-left: 0 !important; }
/* Eski sidebar açık alanı kapat */
.sidebar, .side-menu, #sidebar, .left-sidebar, 
.sidebar-nav, #menu-panel-left:not(.open) { 
    width: 0 !important; 
    min-width: 0 !important; 
    flex: none !important;
}
/* Container'ları ortala */
.container, .container-fluid {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    float: none !important;
}
.row { margin-left: 0 !important; margin-right: 0 !important; }

/* === SIDEBAR MARGIN FIX - spesifik override === */
body.welcome-theme {
    margin-left: 0 !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    width: 100% !important;
}
body.welcome-theme.sidebar-closed {
    margin-left: 0 !important;
}
#menu-button-left {
    display: none !important;
}

/* === BANNER KÜÇÜLT - Betcio tarzı === */
#large-slider {
    max-width: 1400px !important;
    margin: 12px auto !important;
    padding: 0 16px !important;
    border-radius: 12px !important;
}
#large-slider .carousel-inner {
    border-radius: 12px !important;
    overflow: hidden !important;
}
#large-slider .item img, .home-main-banner {
    width: 100% !important;
    height: auto !important;
    max-height: 420px !important;
    aspect-ratio: 16/5 !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}
@media(max-width: 991px) {
    #large-slider .item img, .home-main-banner {
        max-height: 280px !important;
        aspect-ratio: 16/7 !important;
    }
}
@media(max-width: 767px) {
    #large-slider .item img, .home-main-banner {
        max-height: 200px !important;
        aspect-ratio: 16/8 !important;
    }
    #large-slider { margin: 8px auto !important; padding: 0 8px !important; }
}

/* === HEADER HIZALAMA - banner ile aynı genişlik === */
.betcio-announce {
    padding: 6px 16px !important;
}
.betcio-header {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 8px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px;
}
.betcio-header .bh-logo {
    flex-shrink: 0;
}
.betcio-header .bh-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    margin-left: auto !important;
}
.betcio-nav {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 6px 16px 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
}
/* Banner ile aynı kenar boşlukları */
.betcio-cats {
    max-width: 1400px !important;
    margin: 12px auto 0 !important;
    padding: 0 16px !important;
}
.betcio-section-title {
    max-width: 1400px !important;
    margin: 16px auto !important;
}
.betco-section {
    max-width: 1400px !important;
    margin: 0 auto !important;
}
.betco-section-head {
    max-width: 100% !important;
    padding: 16px 16px 10px !important;
}
.betco-games-grid {
    max-width: 100% !important;
    padding: 0 16px 20px !important;
}


/* === HEADER/NAV FULL WIDTH + CENTERED CONTENT === */
.betcio-announce { width: 100%; box-sizing: border-box; }
.betcio-header {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 8px calc((100% - 1368px) / 2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #1a1d29 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    min-height: 52px;
}
@media(max-width: 1400px) {
    .betcio-header { padding: 8px 16px !important; }
}
.betcio-nav {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 6px calc((100% - 1368px) / 2) 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #1a1d29 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow-x: auto;
}
@media(max-width: 1400px) {
    .betcio-nav { padding: 6px 16px 10px !important; }
}

/* ============================================
   MOBİL BETCIO TASARIM
   ============================================ */

@media(max-width: 991px) {
    /* === MOBİL HEADER === */
    .betcio-announce {
        font-size: 11px !important;
        padding: 8px 30px !important;
        line-height: 1.4;
    }
    .betcio-announce .announce-text {
        white-space: normal !important;
        text-align: center;
        animation: none !important;
    }
    .betcio-header {
        padding: 8px 12px !important;
        flex-wrap: wrap;
        gap: 6px;
    }
    .betcio-header .bh-logo img {
        height: 28px !important;
    }
    .betcio-header .bh-actions {
        gap: 4px !important;
    }
    .betcio-header .bh-btn {
        padding: 5px 10px !important;
        font-size: 10px !important;
    }
    /* Mobilde icon row ayrı satır */
    .bh-icon-row {
        display: flex !important;
        width: 100%;
        gap: 8px;
        padding: 4px 0;
    }

    /* === MOBİL NAV === */
    .betcio-nav {
        padding: 6px 8px 8px !important;
        gap: 5px !important;
    }
    .betcio-nav a {
        padding: 6px 12px !important;
        font-size: 10px !important;
        border-radius: 16px !important;
    }

    /* === MOBİL BANNER === */
    #large-slider {
        margin: 6px 8px !important;
        border-radius: 10px !important;
    }
    #large-slider .item img, .home-main-banner {
        max-height: 180px !important;
        border-radius: 10px !important;
        aspect-ratio: auto !important;
    }

    /* === HIZLI İŞLEM GRID (Betcio tarzı 4x3) === */
    .mobile-quick-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 12px 8px;
    }
    .mobile-quick-grid .mq-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        padding: 12px 4px;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.04);
        transition: all 0.2s;
    }
    .mobile-quick-grid .mq-item .mq-icon {
        width: 44px; height: 44px;
        border-radius: 12px;
        background: rgba(255,215,0,0.1);
        display: flex; align-items: center; justify-content: center;
        font-size: 20px;
        color: #FFD700;
    }
    .mobile-quick-grid .mq-item .mq-label {
        font-size: 9px;
        font-weight: 700;
        color: rgba(255,255,255,0.7);
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    /* === KATEGORİ KARTLARI 2 SÜTUN === */
    .betcio-cats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 0 8px !important;
    }
    .betcio-cat-card {
        aspect-ratio: 3/2 !important;
        border-radius: 12px !important;
    }
    .betcio-cat-card .cat-title {
        font-size: 13px !important;
        font-weight: 800 !important;
    }
    .betcio-cat-card .cat-btn {
        font-size: 9px !important;
        padding: 4px 14px !important;
    }
    .betcio-cat-card .cat-sub { display: none !important; }

    /* === OYUN GRID 4 SÜTUN === */
    .betco-games-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 4px !important;
        padding: 0 8px 12px !important;
    }
    .betco-game-card { border-radius: 8px !important; }
    .betco-game-name { font-size: 8px !important; padding: 4px !important; }

    /* === SECTION TITLES === */
    .betcio-section-title {
        font-size: 12px !important;
        margin: 8px !important;
        padding: 12px 8px !important;
        letter-spacing: 1px;
    }
    .betco-section-head {
        padding: 10px 8px 6px !important;
    }
    .betco-title { font-size: 13px !important; }
    .betco-more-link { font-size: 10px !important; padding: 4px 10px !important; }

    /* === ALT NAV (Betcio tarzı 5 buton) === */
    .betcio-bottom-nav {
        background: #0d1017 !important;
        border-top: 1px solid rgba(239,68,68,0.12) !important;
        padding: 4px 0 env(safe-area-inset-bottom, 2px) !important;
    }
    .betcio-bottom-nav .bn-items {
        display: flex !important;
        justify-content: space-around !important;
    }
    .betcio-bottom-nav .bn-item {
        font-size: 9px !important;
        gap: 2px !important;
        color: rgba(255,255,255,0.8) !important;
        position: relative;
    }
    .betcio-bottom-nav .bn-item i { font-size: 18px !important; color:rgba(255,255,255,0.8) !important; -webkit-text-fill-color:rgba(255,255,255,0.8) !important; }
    .betcio-bottom-nav .bn-item.active,
    .betcio-bottom-nav .bn-item:hover { color: #fff !important; }
    .betcio-bottom-nav .bn-item.bn-center {
        background: transparent !important; color: rgba(255,255,255,0.8) !important;
        border-radius: 0 !important;
        width: auto !important; height: auto !important;
        margin-top: 0 !important;
        box-shadow: none !important;
        z-index: 10 !important;
        position: relative !important;
    }
    .bn-center-circle {
        width: 52px !important; height: 52px !important; border-radius: 50% !important;
        background: #080b16 !important;
        border: 2px solid rgba(239,68,68,0.3) !important;
        display: flex !important; align-items: center !important; justify-content: center !important;
        box-shadow: 0 0 25px rgba(239,68,68,0.15) !important;
    }
    .bn-center-circle i {
        font-size: 22px !important; color: #fff !important; -webkit-text-fill-color: #fff !important;
    }
    .betcio-bottom-nav .bn-badge {
        position: absolute; top: -4px; right: -4px;
        background: #e74c3c; color: #fff;
        font-size: 8px; font-weight: 700;
        padding: 1px 4px; border-radius: 8px;
        min-width: 14px; text-align: center;
    }

    /* Masaüstündeki gereksiz şeyler gizle */
    .desktop-only { display: none !important; }

    /* PWA banner gizle (bottom nav ile çakışıyor) */
    #pwaBanner { display: none !important; }
}

@media(max-width: 480px) {
    .betcio-header .bh-logo img { height: 26px !important; }
    #large-slider .item img, .home-main-banner { max-height: 150px !important; }
    .mobile-quick-grid { gap: 6px; padding: 8px 6px; }
    .mobile-quick-grid .mq-item { padding: 8px 2px; border-radius: 10px; }
    .mobile-quick-grid .mq-item .mq-icon { width: 38px; height: 38px; font-size: 18px; }
    .mobile-quick-grid .mq-item .mq-label { font-size: 8px; }
    .betco-games-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

/* Masaüstünde quick grid gizle */
@media(min-width: 992px) {
    .mobile-quick-grid { display: none !important; }
}

/* === ÜST BOŞLUK/BAR KALDIR === */
body, body.welcome-theme, body.welcome-theme.no-title {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
html { padding-top: 0 !important; margin-top: 0 !important; }
nav#navbar, .navbar, .navbar-default, .navbar-menu1, .br-rstyle,
.navbar-menu2, .container-fluid.navbar-menu2 {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    visibility: hidden !important;
    overflow: hidden !important;
}
/* Eski top bar */
.top-announcement-bar, #navbar-menu2 {
    display: none !important;
    height: 0 !important;
}
/* İlk child olarak betcio-announce gelmeli */
.betcio-announce { margin-top: 0 !important; }

/* === MOBİL HEADER - Betcio tarzı === */
@media(max-width: 991px) {
    /* GİRİŞ butonu - koyu arkaplan, beyaz kenarlık */
    .bh-btn-login {
        background: #2a2d3a !important;
        border: 1.5px solid rgba(255,255,255,0.3) !important;
        color: #fff !important;
        padding: 6px 14px !important;
        border-radius: 20px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
    }
    /* ÜYE OL butonu - sarı */
    .bh-btn-yellow {
        background: #FFD700 !important;
        color: #1a1d29 !important;
        padding: 6px 14px !important;
        border-radius: 20px !important;
        font-size: 11px !important;
        font-weight: 800 !important;
    }
    /* WhatsApp iconu header'da küçük */
    .bh-icon-btn {
        width: 30px !important; height: 30px !important;
        font-size: 16px !important;
        background: transparent !important;
    }
    /* 3 nokta menü */
    .bh-hamburger {
        width: 30px !important; height: 30px !important;
        font-size: 16px !important;
        background: transparent !important;
        border: none !important;
        position: relative;
    }
    /* Bildirim badge */
    .bh-notif-badge {
        position: absolute;
        top: -2px; right: -2px;
        background: #FFD700;
        color: #1a1d29;
        font-size: 8px;
        font-weight: 800;
        width: 16px; height: 16px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
    }
    /* Header icon row - 2. satır */
    .bh-mobile-icons {
        display: flex !important;
        width: 100%;
        gap: 6px;
        padding: 2px 0 4px;
        align-items: center;
    }
    .bh-mobile-icons .bh-mi {
        width: 32px; height: 32px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 16px; color: rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        text-decoration: none;
        transition: all 0.2s;
    }
    .bh-mobile-icons .bh-mi:hover { color: #FFD700; border-color: rgba(255,215,0,0.2); }
    .bh-mobile-icons .bh-mi.whatsapp { color: #25D366; }
    
    /* GÖREV YAP KAZAN mobilde gizle */
    .bh-btn-outline { display: none !important; }
    
    /* Header flex wrap */
    .betcio-header {
        flex-wrap: wrap !important;
        padding: 6px 10px !important;
        gap: 4px !important;
    }
    /* İlk satır: logo + butonlar */
    .betcio-header .bh-actions {
        gap: 5px !important;
    }
}
@media(min-width: 992px) {
    .bh-mobile-icons { display: none !important; }
    .bh-notif-badge { display: none !important; }
}

/* === MOBİL HEADER FIX v2 === */
@media(max-width: 991px) {
    /* Logo büyüt */
    .bh-logo img {
        height: 36px !important;
    }
    /* GİRİŞ butonu - beyaz */
    .bh-btn-login {
        background: #fff !important;
        color: #1a1d29 !important;
        border: none !important;
        font-weight: 800 !important;
    }
    /* ÜYE OL butonu - sarı */
    .bh-btn-yellow, .bh-btn[href*="register"], .bh-actions a[href*="register"] {
        background: #FFD700 !important;
        color: #1a1d29 !important;
        font-weight: 800 !important;
    }
    /* Header'daki WP ikonu gizle */
    .bh-actions > .bh-icon-btn { display: none !important; }
}

/* Logo 50px mobilde */
@media(max-width: 991px) {
    .betcio-header .bh-logo img {
        height: 50px !important;
        width: auto !important;
    }
}

/* === NAV PİLL KUTUCUKLAR - Betcio tarzı karemsi + glow === */
.betcio-nav a {
    border-radius: 6px !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 0 8px rgba(255,255,255,0.03), inset 0 1px 0 rgba(255,255,255,0.05) !important;
    padding: 8px 16px !important;
    color: rgba(255,255,255,0.8) !important;
    font-weight: 600 !important;
    font-size: 11px !important;
    letter-spacing: 0.3px !important;
    transition: all 0.2s ease !important;
}
.betcio-nav a:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.15) !important;
    box-shadow: 0 0 12px rgba(255,255,255,0.06) !important;
    color: #fff !important;
}
.betcio-nav a.nav-promo {
    border-radius: 6px !important;
}
@media(max-width: 991px) {
    .betcio-nav a {
        padding: 7px 12px !important;
        font-size: 10px !important;
        border-radius: 5px !important;
    }
}

/* === NAV PİLLS DAHA PARLAK === */
.betcio-nav a {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: 0 0 10px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.08) !important;
    color: rgba(255,255,255,0.9) !important;
}
.betcio-nav a:hover {
    background: rgba(255,255,255,0.14) !important;
    border-color: rgba(255,255,255,0.25) !important;
    box-shadow: 0 0 15px rgba(255,255,255,0.08) !important;
    color: #fff !important;
}

/* === NAV PİLLS - Betcio birebir === */
.betcio-nav a {
    background: rgba(255,255,255,0.12) !important;
    border: 1.5px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 0 12px rgba(255,255,255,0.05), inset 0 1px 1px rgba(255,255,255,0.1) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}
.betcio-nav a:hover, .betcio-nav a:active {
    background: rgba(255,255,255,0.18) !important;
    border-color: rgba(255,255,255,0.3) !important;
}
@media(max-width: 991px) {
    .betcio-nav a {
        padding: 8px 14px !important;
        font-size: 11px !important;
        border-radius: 8px !important;
    }
}

/* === NAV PİLLS - ince, küçük, aralıklı === */
.betcio-nav {
    gap: 10px !important;
}
.betcio-nav a {
    padding: 5px 12px !important;
    font-size: 10.5px !important;
    border-width: 1px !important;
    border-radius: 6px !important;
    line-height: 1.3 !important;
}
@media(max-width: 991px) {
    .betcio-nav {
        gap: 8px !important;
    }
    .betcio-nav a {
        padding: 5px 10px !important;
        font-size: 10px !important;
    }
}

/* NAV pill yazıları ince */
.betcio-nav a {
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
}

/* NAV pills mobil - 5px 8px, 9px */
@media(max-width: 991px) {
    .betcio-nav a {
        padding: 5px 8px !important;
        font-size: 9px !important;
    }
}

/* Nav pill ikonları gizle + kırık beyaz yazı */
.betcio-nav a i, .betcio-nav a .nav-icon {
    display: none !important;
}
.betcio-nav a {
    color: rgba(255,255,255,0.7) !important;
}
.betcio-nav a:hover {
    color: rgba(255,255,255,0.9) !important;
}

/* === BANNER MOBİL - tam sığdır === */
@media(max-width: 991px) {
    #large-slider, .home-main-banner, .slider-container, 
    .main-slider, #main-slider, .betcio-banner-wrap {
        width: calc(100% - 16px) !important;
        max-width: 100% !important;
        margin: 8px auto !important;
        padding: 0 !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }
    #large-slider .item, .slider-item {
        width: 100% !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }
    #large-slider .item img, .home-main-banner img,
    .slider-item img, .main-slider img {
        width: 100% !important;
        height: auto !important;
        max-height: 200px !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 12px !important;
        display: block !important;
    }
    /* Slider okları */
    .owl-prev, .owl-next, 
    .slider-prev, .slider-next {
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}
@media(max-width: 480px) {
    #large-slider .item img, .home-main-banner img {
        max-height: 160px !important;
    }
}

/* === HIZLI İŞLEM GRID - Betcio tarzı sarı/gold === */
.mobile-quick-grid .mq-item {
    background: rgba(255,215,0,0.03) !important;
    border: 1.5px solid rgba(255,215,0,0.15) !important;
    border-radius: 14px !important;
    padding: 14px 4px !important;
    box-shadow: 0 0 12px rgba(255,215,0,0.04) !important;
    transition: all 0.25s ease !important;
}
.mobile-quick-grid .mq-item:active {
    background: rgba(255,215,0,0.08) !important;
    border-color: rgba(255,215,0,0.3) !important;
}
.mobile-quick-grid .mq-item .mq-icon {
    width: 48px !important; height: 48px !important;
    border-radius: 12px !important;
    background: transparent !important;
    font-size: 26px !important;
    color: #FFD700 !important;
}
.mobile-quick-grid .mq-item .mq-label {
    font-size: 9px !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: 2px !important;
}
/* WhatsApp ve Telegram özel renkler */
.mobile-quick-grid .mq-item .mq-icon[style*="25D366"] {
    color: #FFD700 !important;
}
.mobile-quick-grid .mq-item .mq-icon[style*="29B6F6"] {
    color: #FFD700 !important;
}
@media(max-width: 480px) {
    .mobile-quick-grid .mq-item .mq-icon {
        width: 42px !important; height: 42px !important;
        font-size: 22px !important;
    }
}

/* Grid: ikonlar sarı, yazılar kırık beyaz küçük */
.mobile-quick-grid .mq-item .mq-label {
    color: rgba(255,255,255,0.6) !important;
    font-size: 7.5px !important;
    font-weight: 600 !important;
}

/* Grid: ikonlar sarı, yazılar kırık beyaz küçük */
.mobile-quick-grid .mq-item .mq-label {
    color: rgba(255,255,255,0.6) !important;
    font-size: 7.5px !important;
    font-weight: 600 !important;
}

/* Grid kutuları küçült */
.mobile-quick-grid {
    gap: 6px !important;
    padding: 8px 8px !important;
}
.mobile-quick-grid .mq-item {
    padding: 8px 2px !important;
    border-radius: 10px !important;
    gap: 3px !important;
}
.mobile-quick-grid .mq-item .mq-icon {
    width: 32px !important; height: 32px !important;
    font-size: 18px !important;
}

/* === ÖNE ÇIKAN ETKİNLİKLER === */
.betcio-events-section {
    padding: 0 8px;
    margin: 12px 0;
}
.events-title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    padding: 12px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.events-carousel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.event-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 12px;
}
.event-league {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.event-league i { color: #FFD700; font-size: 12px; }
.event-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.event-team {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    flex: 1;
}
.event-team.right { justify-content: flex-end; text-align: right; }
.event-team img { width: 20px; height: 15px; border-radius: 2px; }
.event-info {
    text-align: center;
    padding: 0 8px;
}
.event-date { font-size: 10px; color: rgba(255,255,255,0.5); }
.event-time { font-size: 12px; font-weight: 700; color: #FFD700; }
.event-odds {
    display: flex;
    gap: 6px;
}
.odd-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 4px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}
.odd-btn span { font-size: 9px; color: rgba(255,255,255,0.5); }
.odd-btn b { font-size: 13px; color: #FFD700; font-weight: 700; }
.odd-btn:active { background: rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.3); }

/* === GÜNÜN KOMBİNESİ === */
.betcio-kombine-section {
    padding: 0 8px;
    margin: 8px 0 12px;
}
.kombine-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.kombine-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
}
.kombine-more {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.kombine-cards {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.kombine-card {
    min-width: 280px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px;
    scroll-snap-align: start;
    position: relative;
}
.kombine-badge {
    position: absolute;
    top: 8px; right: 8px;
    background: linear-gradient(135deg, #0d1117, #141b2d);
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
}
.kombine-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.km-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 11px;
}
.km-teams { color: rgba(255,255,255,0.8); flex: 1; }
.km-pick { color: rgba(255,255,255,0.5); font-size: 10px; margin: 0 8px; }
.km-odd { color: #FFD700; font-weight: 700; }
.kombine-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}
.km-total-odd { color: #FFD700; font-size: 14px; }
.km-play-btn {
    background: linear-gradient(135deg, #0d1117, #141b2d);
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

/* Masaüstünde max-width */
@media(min-width: 992px) {
    .betcio-events-section, .betcio-kombine-section {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 16px;
    }
}

/* Canlı maç badge */
.event-live {
    background: #FF4444;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 6px;
    animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.event-score {
    font-size: 16px;
    font-weight: 800;
    color: #FFD700;
}

/* Events fallback kartı */
.events-fallback {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,215,0,0.04);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}
.events-fallback:active { background: rgba(255,215,0,0.08); }
.ef-icon {
    width: 42px; height: 42px;
    background: rgba(255,215,0,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #FFD700;
    flex-shrink: 0;
}
.ef-text { flex: 1; }
.ef-text b { display: block; color: #fff; font-size: 13px; margin-bottom: 2px; }
.ef-text span { font-size: 11px; color: rgba(255,255,255,0.5); }
.ef-arrow { color: rgba(255,255,255,0.3); font-size: 14px; }

/* BetBy Widget */
.betby-widget-wrap {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    min-height: 100px;
}
.betby-widget-wrap iframe {
    background: #0b0f1a;
}
.events-see-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    margin-top: 8px;
    color: #FFD700;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 8px;
    background: rgba(255,215,0,0.04);
    transition: all 0.2s;
}
.events-see-all:active {
    background: rgba(255,215,0,0.1);
}

/* === YÜKSELTİLMİŞ ORANLAR === */
.events-title {
    font-size: 12px !important;
    color: #FFD700 !important;
    letter-spacing: 1.5px !important;
    padding: 10px 0 6px !important;
    border-top: none !important;
}
.event-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.04), rgba(255,255,255,0.02)) !important;
    border: 1px solid rgba(255,215,0,0.12) !important;
    cursor: pointer;
}
.event-card:active {
    background: linear-gradient(135deg, rgba(255,215,0,0.08), rgba(255,255,255,0.04)) !important;
}
.odd-btn {
    background: rgba(255,215,0,0.06) !important;
    border: 1px solid rgba(255,215,0,0.15) !important;
}
.odd-btn b {
    color: #FFD700 !important;
}

/* Yükseltilmiş Oranlar - kayan yazı */
.events-title {
    font-weight: 400 !important;
    font-size: 11px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    position: relative !important;
    text-shadow: 0 0 8px rgba(255,215,0,0.4) !important;
    animation: titleGlow 2s ease-in-out infinite alternate !important;
}
.events-title span, .events-title {
    display: inline-block !important;
    animation: titleSlide 8s linear infinite !important;
}
@keyframes titleSlide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
@keyframes titleGlow {
    0% { text-shadow: 0 0 6px rgba(255,215,0,0.3); }
    100% { text-shadow: 0 0 14px rgba(255,215,0,0.6), 0 0 30px rgba(255,215,0,0.2); }
}

/* Yükseltilmiş Oranlar - kutucuk */
.events-title {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    margin: 0 0 8px 0 !important;
    text-align: center !important;
    color: rgba(255,255,255,0.6) !important;
    text-shadow: none !important;
    animation: none !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
}

/* === MAÇLAR - premium tasarım === */
.event-card {
    border-radius: 14px !important;
    padding: 14px 16px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,215,0,0.02)) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
}
.event-league {
    font-size: 9px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.4) !important;
    letter-spacing: 0.3px !important;
}
.event-league i {
    font-size: 10px !important;
    color: rgba(255,215,0,0.6) !important;
}
.event-team {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.85) !important;
}
.event-team img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    object-fit: contain !important;
    background: rgba(255,255,255,0.06) !important;
    padding: 3px !important;
}
.event-date {
    font-size: 9px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.35) !important;
}
.event-time {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255,215,0,0.8) !important;
}
.event-odds {
    gap: 8px !important;
    margin-top: 2px !important;
}
.odd-btn {
    border-radius: 10px !important;
    padding: 6px 4px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
}
.odd-btn span {
    font-size: 8px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.35) !important;
}
.odd-btn b {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.8) !important;
}
.events-carousel {
    gap: 8px !important;
}
.events-see-all {
    border-radius: 10px !important;
    font-weight: 400 !important;
    font-size: 11px !important;
    color: rgba(255,255,255,0.4) !important;
    border-color: rgba(255,255,255,0.06) !important;
    background: rgba(255,255,255,0.02) !important;
}

/* === MAÇLAR - premium tasarım === */
.event-card {
    border-radius: 14px !important;
    padding: 14px 16px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,215,0,0.02)) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
}
.event-league {
    font-size: 9px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.4) !important;
    letter-spacing: 0.3px !important;
}
.event-league i {
    font-size: 10px !important;
    color: rgba(255,215,0,0.6) !important;
}
.event-team {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.85) !important;
}
.event-team img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    object-fit: contain !important;
    background: rgba(255,255,255,0.06) !important;
    padding: 3px !important;
}
.event-date {
    font-size: 9px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.35) !important;
}
.event-time {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255,215,0,0.8) !important;
}
.event-odds {
    gap: 8px !important;
    margin-top: 2px !important;
}
.odd-btn {
    border-radius: 10px !important;
    padding: 6px 4px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
}
.odd-btn span {
    font-size: 8px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.35) !important;
}
.odd-btn b {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.8) !important;
}
.events-carousel {
    gap: 8px !important;
}
.events-see-all {
    border-radius: 10px !important;
    font-weight: 400 !important;
    font-size: 11px !important;
    color: rgba(255,255,255,0.4) !important;
    border-color: rgba(255,255,255,0.06) !important;
    background: rgba(255,255,255,0.02) !important;
}

/* === GÜNÜN KOMBİNESİ - premium === */
.kombine-header {
    border-top: none !important;
    padding: 6px 0 !important;
}
.kombine-title {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.6) !important;
    letter-spacing: 1.5px !important;
}
.kombine-more {
    font-size: 10px !important;
    color: rgba(255,255,255,0.3) !important;
    font-weight: 400 !important;
}
.kombine-card {
    border-radius: 14px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,215,0,0.02)) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    padding: 14px 16px !important;
}
.kombine-badge {
    background: rgba(255,215,0,0.15) !important;
    color: #FFD700 !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    padding: 3px 10px !important;
}
.kombine-name {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 8px !important;
}
.km-row {
    padding: 5px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.03) !important;
    font-size: 11px !important;
}
.km-teams {
    color: rgba(255,255,255,0.6) !important;
    font-weight: 400 !important;
}
.km-pick {
    color: rgba(255,255,255,0.35) !important;
    font-size: 9px !important;
    font-weight: 400 !important;
}
.km-odd {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 600 !important;
    font-size: 11px !important;
}
.kombine-footer {
    margin-top: 10px !important;
    font-size: 11px !important;
    color: rgba(255,255,255,0.5) !important;
}
.km-total-odd {
    color: #FFD700 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}
.km-play-btn {
    background: rgba(255,215,0,0.15) !important;
    color: #FFD700 !important;
    border-radius: 12px !important;
    padding: 6px 18px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
}

/* Günün Kombinesi - yatay layout */
.kombine-cards {
    overflow-x: auto !important;
    flex-direction: row !important;
    -webkit-overflow-scrolling: touch !important;
}
.kombine-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 100% !important;
    padding: 10px 14px !important;
}
.kombine-name {
    display: none !important;
}
.kombine-badge {
    position: static !important;
    flex-shrink: 0 !important;
    order: -1 !important;
}
.kombine-matches {
    flex: 1 !important;
    min-width: 0 !important;
}
.km-row {
    padding: 2px 0 !important;
    border-bottom: none !important;
    font-size: 10px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.kombine-footer {
    margin-top: 0 !important;
    flex-shrink: 0 !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: center !important;
    display: flex !important;
}
.km-play-btn {
    white-space: nowrap !important;
    padding: 5px 12px !important;
    font-size: 9px !important;
}

/* Kombine kupon tasarımı */
.kombine-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.06), rgba(255,215,0,0.02)) !important;
    border: 1px dashed rgba(255,215,0,0.2) !important;
    border-radius: 12px !important;
    position: relative !important;
}
.kombine-card::before,
.kombine-card::after {
    content: '' !important;
    position: absolute !important;
    width: 14px !important;
    height: 14px !important;
    background: #0f1320 !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.kombine-card::before { left: -8px !important; }
.kombine-card::after { right: -8px !important; }

.kombine-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #1a1d29 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 2px 8px rgba(255,215,0,0.3) !important;
    white-space: nowrap !important;
}

/* Kombine - küçük, scroll yok */
.kombine-cards {
    overflow: hidden !important;
}
.kombine-card {
    min-width: unset !important;
    width: 100% !important;
    padding: 8px 20px !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}
.kombine-badge {
    font-size: 7px !important;
    padding: 3px 8px !important;
}
.km-row {
    font-size: 9px !important;
    padding: 1px 0 !important;
}
.km-teams { font-size: 9px !important; }
.km-pick { font-size: 8px !important; }
.km-odd { font-size: 9px !important; }
.km-total-odd { font-size: 11px !important; }
.km-play-btn {
    padding: 4px 10px !important;
    font-size: 8px !important;
}
.kombine-footer {
    font-size: 10px !important;
}
.betcio-kombine-section {
    margin-bottom: 8px !important;
}

/* === KATEGORİ KARTLARI - görselli === */
.betcio-cat-img {
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    aspect-ratio: 10/13 !important;
    min-height: unset !important;
    height: auto !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,215,0,0.1) !important;
    overflow: hidden !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.betcio-cat-img:active {
    transform: scale(0.97) !important;
    box-shadow: 0 0 16px rgba(255,215,0,0.15) !important;
}
.betcio-cats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
}
@media(min-width: 992px) {
    .betcio-cats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
}

/* Kategori kartları - küçük + blur efekt */
.betcio-cat-img {
    aspect-ratio: 4/4.5 !important;
    border-radius: 10px !important;
    position: relative !important;
}
.betcio-cat-img::after {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0 !important;
    background: linear-gradient(
        180deg,
        rgba(15,19,32,0.1) 0%,
        rgba(15,19,32,0.15) 40%,
        rgba(15,19,32,0.5) 100%
    ) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(0.5px) !important;
    -webkit-backdrop-filter: blur(0.5px) !important;
    pointer-events: none !important;
}
.betcio-cats {
    gap: 6px !important;
    padding: 0 !important;
}

/* Kategori kartları - orijinal boyut + alt gölge üst parlaklık */
.betcio-cat-img {
    aspect-ratio: 10/13 !important;
}
.betcio-cat-img::after {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08) 0%,
        rgba(255,255,255,0.02) 15%,
        transparent 40%,
        rgba(0,0,0,0.2) 75%,
        rgba(0,0,0,0.5) 100%
    ) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.betcio-cats {
    gap: 8px !important;
}

/* === MARİNAWİN HIZLI SLOT === */
.mw-fast-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 8px;
}
.mw-fast-slot-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.2s ease;
}
.mw-fast-slot-card:active {
    transform: scale(0.96);
}
.mw-fast-slot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mw-fs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 8px 8px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.mw-fs-name {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
}
.mw-fs-provider {
    color: rgba(255,255,255,0.4);
    font-size: 8px;
    font-weight: 400;
}
@media(min-width: 768px) {
    .mw-fast-slots {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .mw-fs-name { font-size: 13px; }
    .mw-fs-provider { font-size: 10px; }
}

/* === Hareketli renk değiştiren kutucuk === */
.events-title {
    position: relative !important;
    background: transparent !important;
    border: none !important;
    z-index: 1 !important;
    overflow: hidden !important;
}
.events-title::before {
    content: '' !important;
    position: absolute !important;
    top: -1px; left: -1px; right: -1px; bottom: -1px !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #FFD700 15%,
        #FFA500 30%,
        #FFD700 50%,
        #FFA500 70%,
        #FFD700 85%,
        transparent 100%
    ) !important;
    background-size: 200% 100% !important;
    animation: borderShine 3s linear infinite !important;
    border-radius: 6px !important;
    z-index: -2 !important;
}
.events-title::after {
    content: '' !important;
    position: absolute !important;
    top: 1px; left: 1px; right: 1px; bottom: 1px !important;
    background: #0f1320 !important;
    border-radius: 5px !important;
    z-index: -1 !important;
}
@keyframes borderShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Daha belirgin renk akışı */
.events-title::before {
    top: -2px !important; left: -2px !important; right: -2px !important; bottom: -2px !important;
    background: linear-gradient(
        90deg,
        #FFD700 0%,
        #FF8C00 20%,
        #FFD700 40%,
        #FFF44F 60%,
        #FF8C00 80%,
        #FFD700 100%
    ) !important;
    background-size: 300% 100% !important;
    animation: borderShine 2s linear infinite !important;
    opacity: 1 !important;
}
.events-title::after {
    top: 2px !important; left: 2px !important; right: 2px !important; bottom: 2px !important;
}
@keyframes borderShine {
    0% { background-position: 300% 0; }
    100% { background-position: -300% 0; }
}

/* Betcio tarzı - ışık çizgisi süpürme efekti */
.events-title::before {
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 30%,
        rgba(255,165,0,0.4) 45%,
        rgba(255,215,0,0.6) 50%,
        rgba(255,165,0,0.4) 55%,
        transparent 70%,
        transparent 100%
    ) !important;
    background-size: 100% 100% !important;
    animation: lightSweep 2s ease-in-out infinite !important;
    border-radius: 6px !important;
    z-index: -1 !important;
    opacity: 1 !important;
}
.events-title::after {
    display: none !important;
}
.events-title {
    background: rgba(15,19,32,0.85) !important;
    border: 1px solid rgba(255,165,0,0.2) !important;
    overflow: hidden !important;
}
@keyframes lightSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Popüler slotlar 4x4 grid */
.betco-game-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
}
.betco-game-card {
    border-radius: 10px !important;
    overflow: hidden !important;
}
.betco-game-img {
    width: 100% !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    border-radius: 10px !important;
}
.betco-game-name {
    display: none !important;
}

/* Popüler slotlar 4x4 grid - doğru class */
.betco-games-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
}

/* === 4 SÜTUN ZORLA - tüm ekranlarda === */
.betco-games-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 5px !important;
}
@media(max-width: 767px) {
    .betco-games-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 5px !important;
    }
}
@media(max-width: 480px) {
    .betco-games-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 4px !important;
    }
}

/* Oyun kartları dikdörtgen format */
.betco-game-card {
    border-radius: 10px !important;
    overflow: hidden !important;
}
.betco-game-card a.gameImg {
    display: block !important;
}
.betco-game-img {
    width: 100% !important;
    aspect-ratio: 3/4 !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    display: block !important;
}

/* === POPÜLER LİGLER === */
.pop-ligler {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pop-lig-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.pop-lig-row:active {
    background: rgba(255,255,255,0.06);
}
.pop-lig-star {
    color: rgba(255,255,255,0.25);
    font-size: 14px;
    flex-shrink: 0;
}
.pop-lig-flag {
    font-size: 18px;
    flex-shrink: 0;
}
.pop-lig-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.pop-lig-region {
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    font-weight: 400;
}
.pop-lig-name {
    color: #e6edf3;
    font-size: 12px;
    font-weight: 500;
}
.pop-lig-count {
    background: rgba(255,215,0,0.15);
    color: #FFD700;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Popüler ligler - Betcio tarzı sarı rakamlar */
.pop-lig-count {
    background: #FFD700 !important;
    color: #0f1320 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 4px 12px !important;
    border-radius: 14px !important;
    min-width: 32px !important;
    text-align: center !important;
}

/* Ligler - gri rakam */
.pop-lig-count {
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.6) !important;
}

/* === POPÜLER MAÇLAR === */
.pop-maclar {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pm-match {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    text-decoration: none !important;
    gap: 6px;
    transition: background 0.2s;
}
.pm-match:active { background: rgba(255,255,255,0.06); }
.pm-live {
    background: #e53935;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    flex-shrink: 0;
    animation: pmBlink 1.5s infinite;
}
@keyframes pmBlink { 50% { opacity: 0.5; } }
.pm-time {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    min-width: 36px;
    text-align: center;
    flex-shrink: 0;
}
.pm-teams {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}
.pm-team {
    color: #e6edf3;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pm-score {
    color: #FFD700;
    font-weight: 700;
    font-size: 11px;
    min-width: 16px;
    text-align: center;
}
.pm-odds {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.pm-odd {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 4px 8px;
    min-width: 42px;
    cursor: pointer;
    transition: background 0.2s;
}
.pm-odd:active { background: rgba(0,212,200,0.15); }
.pm-odd-label {
    color: rgba(255,255,255,0.35);
    font-size: 8px;
    font-weight: 600;
}
.pm-odd-val {
    color: #00D4C8;
    font-size: 11px;
    font-weight: 700;
}
.pm-league-head {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    font-weight: 600;
    padding: 6px 10px 2px;
    text-transform: uppercase;
}

/* BOTTOM NAV SARI */
@media(max-width:768px){
    .mob-nav-item,.mob-nav-item span{color:#F0C040 !important;}
    .mob-nav-item i,.mob-nav-item .fa-solid,.mob-nav-item .fa-brands{color:#F0C040 !important;}
    .mob-nav-item.active,.mob-nav-item.active span{color:#FFD700 !important;}
    .mob-nav-item.active i{color:#FFD700 !important;}
}

/* BOTTOM NAV SARI */
@media(max-width:768px){
    .mob-nav-item,.mob-nav-item span{color:#F0C040 !important;}
    .mob-nav-item i,.mob-nav-item .fa-solid,.mob-nav-item .fa-brands{color:#F0C040 !important;}
    .mob-nav-item.active,.mob-nav-item.active span{color:#FFD700 !important;}
    .mob-nav-item.active i{color:#FFD700 !important;}
}

/* === BETCIO LIST MENU === */
.bm-list{padding:8px 12px 20px;}
.bm-section-title{font-size:10px;font-weight:600;color:rgba(255,255,255,.2);letter-spacing:1.5px;text-transform:uppercase;padding:16px 0 8px;margin-top:0;border-top:1px solid rgba(255,255,255,.04);}
.bm-section-title:first-child{padding-top:6px;margin-top:0;}
.bm-item{display:flex;align-items:center;gap:14px;padding:13px 16px;background:rgba(255,255,255,.03);border:none;border-bottom:1px solid rgba(255,255,255,.04);border-radius:0;margin-bottom:0;text-decoration:none;color:rgba(255,255,255,.7);transition:all .15s;font-size:13px;font-weight:400;}
.bm-item:hover{background:rgba(255,255,255,.05);}
.bm-item i{width:20px;text-align:center;font-size:14px;color:rgba(255,255,255,.3);flex-shrink:0;}
.bm-item span{flex:1;}
.bm-item.bm-gold{color:rgba(255,215,0,.7);}
.bm-item.bm-gold i{color:rgba(255,215,0,.35);}
.bm-badge{font-size:8px;font-weight:700;padding:3px 8px;background:rgba(255,215,0,.08);border:1px solid rgba(255,215,0,.15);color:#FFD700;border-radius:4px;letter-spacing:.5px;text-transform:uppercase;flex-shrink:0;}
