/* =============================================
   BOZOBET - Ana CSS Dosyası (Temiz Versiyon)
   ============================================= */

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* =============================================
   TICKER
   ============================================= */
.ticker-wrapper {
    background: linear-gradient(90deg, #ff6b00, #ffa500);
    padding: 10px 0;
    overflow: hidden;
    display: flex;
}
.ticker-content {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.ticker-content span { padding: 0 50px; font-weight: 600; }
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   HEADER
   ============================================= */
.header {
    background: #000;
    padding: 15px 0;
    border-bottom: 2px solid #ffa500;
    box-shadow: 0 4px 20px rgba(255,165,0,0.3);
    position: sticky;
    top: 0;
    z-index: 500;
    width: 100%;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* Header iletişim butonları */
.header-contact-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}
.hdr-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    border: 1px solid transparent;
}
.hdr-support {
    background: rgba(102,126,234,.15);
    border-color: rgba(102,126,234,.4);
    color: #a5b4fc;
}
.hdr-support:hover {
    background: rgba(102,126,234,.3);
    color: #fff;
    transform: translateY(-1px);
}
.hdr-whatsapp {
    background: rgba(37,211,102,.12);
    border-color: rgba(37,211,102,.4);
    color: #25d366;
}
.hdr-whatsapp:hover {
    background: rgba(37,211,102,.25);
    color: #fff;
    transform: translateY(-1px);
}
.hdr-telegram {
    background: rgba(0,136,204,.12);
    border-color: rgba(0,136,204,.4);
    color: #29b6f6;
}
.hdr-telegram:hover {
    background: rgba(0,136,204,.25);
    color: #fff;
    transform: translateY(-1px);
}
/* Mobilde gizle */
@media (max-width: 768px) {
    .header-contact-btns { display: none; }
}
.logo img { height: 50px; }
.logo h1 { font-size: 28px; font-weight: 900; }

/* Yüklenen logo — otomatik boyutlanır */
.site-logo-img {
    max-height: 60px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}
.btn-login {
    background: transparent;
    border: 2px solid #ffa500;
    color: #ffa500;
}
.btn-login:hover { background: #ffa500; color: #000; }

.btn-register {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    color: #fff;
}
.btn-register:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255,165,0,0.4); }

/* Kullanıcı bilgi alanı */
.user-info { display: flex; align-items: center; gap: 10px; }

.balance {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(26,31,58,0.9);
    border: 1px solid rgba(0,200,83,0.35);
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.balance i { color: #00e676; font-size: 18px; flex-shrink: 0; }
.balance span { color: #fff; }

.btn-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(26,31,58,0.9);
    border: 1px solid rgba(255,165,0,0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-profile:hover { border-color: #ffa500; transform: translateY(-2px); }
.btn-profile .profile-avatar {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffa500, #ff6b00);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff; flex-shrink: 0;
}
.btn-profile .profile-info { display: flex; flex-direction: column; }
.btn-profile .profile-label {
    font-size: 10px; color: rgba(255,165,0,0.8);
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; line-height: 1;
}
.btn-profile .profile-name { font-weight: 700; font-size: 14px; line-height: 1.3; }

.btn-deposit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0,200,83,0.4);
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-deposit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,200,83,0.5);
}
.btn-deposit i { font-size: 16px; }

/* =============================================
   NAV
   ============================================= */
.main-nav {
    background: #0a0a0a;
    border-bottom: 3px solid #ffa500;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 4px 15px rgba(255,165,0,0.2);
}
.main-nav::-webkit-scrollbar { height: 3px; }
.main-nav::-webkit-scrollbar-thumb { background: #ffa500; border-radius: 3px; }

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    min-width: max-content;
}
.nav-menu li { flex-shrink: 0; }
.nav-menu li a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 14px;
}
.nav-menu li a i { margin-right: 5px; }
.nav-menu li a:hover,
.nav-menu li a.active { background: #ffa500; color: #000; }

.nav-bonus-item { margin-left: auto; }
.nav-bonus-btn {
    background: linear-gradient(135deg, #ff6b00, #ffa500) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 14px 22px !important;
    border-radius: 6px;
    display: flex !important;
    align-items: center;
    gap: 8px;
    animation: navBonusPulse 2s ease-in-out infinite;
}
.nav-bonus-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,165,0,0.6); }
.nav-bonus-btn i { animation: rotateStar 3s linear infinite; }
.bonus-badge {
    background: #ff0000; color: #fff;
    padding: 2px 7px; border-radius: 10px;
    font-size: 10px; font-weight: 700;
}
@keyframes navBonusPulse {
    0%,100% { box-shadow: 0 4px 15px rgba(255,165,0,0.4); }
    50%      { box-shadow: 0 4px 25px rgba(255,165,0,0.8); }
}
@keyframes rotateStar {
    to { transform: rotate(360deg); }
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
    padding: 25px 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =============================================
   ANA SLIDER
   ============================================= */
.banner-section { margin-bottom: 25px; }

.main-slider {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    background: #0a0e1a;
    aspect-ratio: 16/5;
}
.ms-slide { display: none; width: 100%; height: 100%; }
.ms-slide.active { display: block; animation: msFade 0.5s ease; }
@keyframes msFade {
    from { opacity: 0; transform: scale(1.02); }
    to   { opacity: 1; transform: scale(1); }
}
.ms-slide img, .ms-slide a { width: 100%; height: 100%; object-fit: cover; display: block; }

.ms-dots {
    position: absolute; bottom: 14px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 7px; z-index: 10;
}
.ms-dot {
    width: 9px; height: 9px; border-radius: 5px;
    background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
}
.ms-dot.active { width: 26px; background: #ffa500; }

.ms-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
    color: #fff; font-size: 17px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 10;
}
.ms-arrow:hover { background: rgba(255,165,0,0.4); border-color: #ffa500; color: #ffa500; }
.ms-prev { left: 14px; }
.ms-next { right: 14px; }

/* =============================================
   4'LÜ BANNER
   ============================================= */
.quad-banner-section { margin-bottom: 30px; }
.quad-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.quad-banner-item {
    border-radius: 10px; overflow: hidden;
    aspect-ratio: 16/9; transition: transform 0.3s, box-shadow 0.3s;
}
.quad-banner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(255,165,0,0.25);
}
.quad-banner-item img { width: 100%; height: 100%; object-fit: cover; }
.quad-banner-item a { display: block; width: 100%; height: 100%; }

/* =============================================
   PROMO BANNERS
   ============================================= */
.promo-banners { margin-bottom: 35px; }
.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.promo-card {
    border-radius: 10px; overflow: hidden;
    cursor: pointer; transition: transform 0.3s;
    position: relative;
}
.promo-card:hover { transform: translateY(-5px); }
.promo-card img { width: 100%; height: auto; display: block; }

/* =============================================
   GAMES
   ============================================= */
.games-section { margin-bottom: 45px; }
.section-title {
    font-size: 26px; margin-bottom: 22px;
    color: #ffa500; border-left: 4px solid #ffa500;
    padding-left: 14px; display: flex; align-items: center; gap: 10px;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 18px;
}
.game-card {
    position: relative; border-radius: 10px;
    overflow: hidden; cursor: pointer;
    transition: transform 0.3s; width: 100%;
}
.game-card:hover { transform: translateY(-5px); }
.game-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.game-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.92) 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    padding: 18px; opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
}
.game-card:hover .game-overlay { opacity: 1; pointer-events: all; }
/* Mobil: her zaman görünür */
@media (hover: none) {
    .game-overlay { opacity: 1; pointer-events: all; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.88) 100%); }
}
.game-info { text-align: center; margin-bottom: 12px; }
.game-info h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.game-info p  { color: #ffa500; font-size: 12px; font-weight: 600; }
.play-btn {
    padding: 10px 26px;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    border: none; border-radius: 25px;
    color: #fff; font-weight: 600; cursor: pointer; transition: transform 0.3s;
}
.play-btn:hover { transform: scale(1.1); }

.deposit-btn {
    display: block;
    margin-top: 8px;
    padding: 8px 20px;
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid #00c853;
    border-radius: 20px;
    color: #00e676;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    white-space: nowrap;
}
.deposit-btn:hover {
    background: #00c853;
    color: #fff;
    transform: scale(1.05);
}

/* Mid/Bottom Banners */
.mid-banner, .bottom-banner { margin: 35px 0; }
.mid-banner img, .bottom-banner img {
    width: 100%; height: 240px; object-fit: cover;
    border-radius: 10px; display: block;
}

/* =============================================
   MOBİL FOOTER
   ============================================= */
.mobFooter {
    display: none;
    position: fixed;
    z-index: 600;
    background: #1a1f3a;
    padding: 6px 0;
    width: 100%;
    bottom: 0; left: 0; right: 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
    border-top: 2px solid #ffa500;
    justify-content: space-around;
    align-items: center;
}
.mob-footer-item {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: #9aa3b2; text-decoration: none;
    padding: 7px 10px; transition: all 0.3s;
    flex: 1; text-align: center;
}
.mob-footer-item i { font-size: 20px; margin-bottom: 3px; }
.mob-footer-item span { font-size: 10px; font-weight: 500; }
.mob-footer-item:hover,
.mob-footer-item.active { color: #ffa500; }

/* =============================================
   MOBİL SIDEBAR
   ============================================= */
.mobile-sidebar {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; height: 100%;
    background: #1a1f3a;
    z-index: 1050;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}
.mobile-sidebar.active { right: 0; }

.sidebar-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px;
    background: #151829;
    border-bottom: 2px solid #ffa500;
}
.sidebar-title { font-weight: 700; font-size: 17px; color: #fff; }
.close-sidebar-btn {
    background: none; border: none; color: #fff;
    font-size: 22px; cursor: pointer;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.close-sidebar-btn:hover { color: #ffa500; transform: rotate(90deg); }

.sidebar-content { padding: 18px; }

.sidebar-user-info {
    margin-bottom: 18px; padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-profile-card {
    display: flex; align-items: center; gap: 12px;
    padding: 14px; background: rgba(255,165,0,0.1);
    border: 1px solid rgba(255,165,0,0.3);
    border-radius: 12px; text-decoration: none; transition: all 0.3s;
}
.sidebar-profile-card:hover { background: rgba(255,165,0,0.2); transform: translateX(4px); }
.sidebar-avatar {
    width: 46px; height: 46px; border-radius: 10px;
    background: linear-gradient(135deg, #ffa500, #ff6b00);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; flex-shrink: 0;
}
.sidebar-user-details { display: flex; flex-direction: column; flex: 1; }
.sidebar-user-label {
    font-size: 10px; color: rgba(255,165,0,0.8);
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px;
}
.sidebar-user-name { font-size: 15px; color: #fff; font-weight: 700; }
.sidebar-profile-card > i { color: #ffa500; font-size: 16px; }

.sidebar-auth-buttons {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 18px; padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-auth-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 13px 18px; border-radius: 10px;
    text-decoration: none; font-weight: 700; font-size: 14px; transition: all 0.3s;
}
.sidebar-auth-btn.login {
    background: rgba(255,165,0,0.1); border: 2px solid #ffa500; color: #ffa500;
}
.sidebar-auth-btn.login:hover { background: #ffa500; color: #000; }
.sidebar-auth-btn.register {
    background: linear-gradient(135deg, #ff6b00, #ffa500); color: #fff; border: 2px solid transparent;
}
.sidebar-auth-btn.register:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255,165,0,0.4); }
.sidebar-auth-btn i { font-size: 17px; }

.sidebar-menu { list-style: none; padding: 0; margin: 0 0 20px 0; }
.sidebar-menu li { margin-bottom: 3px; }
.sidebar-menu a {
    display: flex; align-items: center; gap: 11px;
    padding: 11px 14px; color: #9aa3b2;
    text-decoration: none; border-radius: 8px;
    transition: all 0.3s; font-size: 14px;
}
.sidebar-menu a:hover { background: rgba(255,165,0,0.1); color: #ffa500; padding-left: 18px; }
.sidebar-menu a i { font-size: 17px; width: 20px; }

.sidebar-contact {
    display: flex; flex-direction: column; gap: 9px;
    padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1);
}
.sidebar-contact-btn {
    display: flex; align-items: center; gap: 11px;
    padding: 11px 14px; border-radius: 8px;
    text-decoration: none; color: #fff; font-weight: 600; transition: all 0.3s;
}
.sidebar-contact-btn.deposit  { background: linear-gradient(135deg, #00c853, #00e676); }
.sidebar-contact-btn.bonus    { background: linear-gradient(135deg, #ff6b00, #ffa500); }
.sidebar-contact-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.sidebar-contact-btn.telegram { background: linear-gradient(135deg, #0088cc, #0066aa); }
.sidebar-contact-btn:hover { transform: translateX(4px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.sidebar-contact-btn i { font-size: 19px; }

#sidebar-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); z-index: 1049;
    opacity: 0; transition: opacity 0.3s;
}
#sidebar-overlay.active { display: block; opacity: 1; }

/* =============================================
   FOOTER
   ============================================= */
.mainFooter {
    background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
    color: #e0e0e0; margin-top: 50px; position: relative; overflow: hidden;
}
.mainFooter::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #ffa500, transparent);
}
.footer-top { padding: 55px 0 35px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
}
.footer-logo h2 {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-desc { color: #9aa3b2; font-size: 14px; line-height: 1.7; margin: 12px 0 18px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; transition: all 0.3s; text-decoration: none; color: #fff;
}
.social-btn.whatsapp  { background: linear-gradient(135deg, #25D366, #128C7E); }
.social-btn.telegram  { background: linear-gradient(135deg, #0088cc, #0066aa); }
.social-btn.instagram { background: linear-gradient(135deg, #E1306C, #833AB4); }
.social-btn.support   { background: linear-gradient(135deg, #ff6b00, #ffa500); }
.social-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 20px rgba(255,165,0,0.4); }

.footer-title {
    color: #fff; font-size: 15px; font-weight: 700;
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,165,0,0.3); position: relative;
}
.footer-title::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 45px; height: 2px; background: #ffa500;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #9aa3b2; text-decoration: none; font-size: 13px;
    display: flex; align-items: center; gap: 7px; transition: all 0.3s;
}
.footer-links a:hover { color: #ffa500; padding-left: 5px; }
.footer-links a i { font-size: 11px; opacity: 0.6; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.contact-item {
    display: flex; align-items: center; gap: 11px;
    padding: 11px; background: rgba(255,255,255,0.03);
    border-radius: 8px; border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s; text-decoration: none; color: inherit;
}
.contact-item:hover { background: rgba(255,165,0,0.1); border-color: rgba(255,165,0,0.3); transform: translateX(4px); }
.contact-item i { font-size: 22px; color: #ffa500; }
.contact-item strong { color: #fff; font-size: 13px; display: block; margin-bottom: 2px; }
.contact-item span { color: #9aa3b2; font-size: 11px; }

.payment-methods { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); }
.payment-methods h5 { color: #fff; font-size: 13px; margin-bottom: 10px; font-weight: 600; }
.payment-icons { display: flex; gap: 9px; flex-wrap: wrap; }
.payment-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: #9aa3b2; transition: all 0.3s; cursor: pointer;
}
.payment-icon:hover { background: rgba(255,165,0,0.1); border-color: #ffa500; color: #ffa500; transform: translateY(-3px); }

.footer-bottom {
    background: rgba(0,0,0,0.3); padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-content {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 18px;
}
.footer-copyright p { margin: 0; color: #9aa3b2; font-size: 13px; line-height: 1.6; }
.footer-copyright strong { color: #ffa500; }
.footer-age-warning { color: #ffcd36 !important; font-weight: 600; margin-top: 4px !important; }
.responsible-gaming { display: flex; align-items: center; gap: 12px; }
.responsible-text { color: #9aa3b2; font-size: 13px; font-weight: 600; }
.responsible-icons { display: flex; gap: 9px; align-items: center; }
.resp-icon {
    width: 38px; height: 38px;
    background: rgba(255,165,0,0.1); border: 1px solid rgba(255,165,0,0.3);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: #ffa500; font-weight: 700; font-size: 13px; transition: all 0.3s;
}
.resp-icon:hover { background: rgba(255,165,0,0.2); transform: scale(1.1); }

/* Scroll to Top */
.scroll-top-btn {
    position: fixed; bottom: 90px; right: 20px;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    color: #fff; border: none; border-radius: 50%;
    font-size: 17px; cursor: pointer;
    opacity: 0; visibility: hidden; transition: all 0.3s;
    z-index: 590; box-shadow: 0 4px 15px rgba(255,165,0,0.4);
    display: flex; align-items: center; justify-content: center;
}
.scroll-top-btn.show { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(255,165,0,0.6); }

/* Canlı Destek Widget - support-widget.php içinde tanımlı */

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .games-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .quad-banner-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header */
    .header-content { flex-direction: column; gap: 10px; }
    .header-actions { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .balance { padding: 8px 14px; font-size: 13px; }
    .balance i { font-size: 15px; }
    .btn-profile { padding: 7px 14px; }
    .btn-profile .profile-avatar { width: 32px; height: 32px; font-size: 16px; }
    .btn-profile .profile-name { font-size: 13px; }
    .btn-deposit { padding: 10px 18px; font-size: 13px; }

    /* Nav */
    .nav-menu { justify-content: flex-start; padding: 0 8px; }
    .nav-menu li a { padding: 12px 13px; font-size: 13px; }

    /* Slider */
    .main-slider { aspect-ratio: 16/7; border-radius: 8px; }
    .ms-arrow { width: 34px; height: 34px; font-size: 13px; }
    .ms-prev { left: 8px; }
    .ms-next { right: 8px; }

    /* Banners */
    .quad-banner-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .mid-banner img, .bottom-banner img { height: 180px; }

    /* Games */
    .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
    .game-card img { height: 190px; }
    .section-title { font-size: 20px; }

    /* Mobil Footer göster */
    .mobFooter { display: flex !important; }

    /* Main content alt boşluk (mobil footer için) */
    .main-content { padding-bottom: 70px; }
    .mainFooter { margin-bottom: 60px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer-col { text-align: center; }
    .footer-social, .payment-icons { justify-content: center; }
    .footer-links a { justify-content: center; }
    .footer-links a:hover { padding-left: 0; }
    .footer-contact { align-items: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .responsible-gaming { flex-direction: column; gap: 8px; }
    .footer-top { padding-bottom: 25px; }

    /* Scroll top */
    .scroll-top-btn { bottom: 75px; right: 14px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .section-title { font-size: 18px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .game-card img { height: 170px; }
    .banner-grid { grid-template-columns: 1fr; }
}

/* Desktop: mobil footer gizle */
@media (min-width: 769px) {
    .mobFooter { display: none !important; }
    .mobile-sidebar { display: none !important; }
    #sidebar-overlay { display: none !important; }
}

/* ── Orta Banner Seti (banners32) ─────────────────────────────────────────── */
.mid-banner-set { padding: 30px 0; }

.mid-banner-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    overflow-x: auto;
}

.mid-banner-item {
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

.mid-banner-item a { display: block; line-height: 0; }

.mid-banner-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mid-banner-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(255,165,0,0.3);
}

@media (max-width: 900px) {
    .mid-banner-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 500px) {
    .mid-banner-row { grid-template-columns: repeat(2, 1fr); }
}
