/* ==========================================================================
   Sekabet Mobil Revizyon - Ana Stil Dosyası
   ========================================================================== */

:root {
    /* Renk Paleti */
    --c-dark-navy: #0A1128;
    --c-summer-blue: #00D2FF;
    --c-tropical: #20B2AA;
    --c-summer-orange: #FF8C00;
    --c-sea-theme: #008B8B;

    /* Efektler ve Cam (Glassmorphism) */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow-spread: 15px;

    /* Tipografi */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* =========================================
   Sıfırlama & Temel Ayarlar
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--c-dark-navy);
    color: #fff;
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================
   Yardımcı Sınıflar (Utilities)
   ========================================= */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.text-gradient-tropical {
    background: linear-gradient(90deg, var(--c-summer-blue), var(--c-tropical));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(90deg, #4A90E2, var(--c-summer-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
    background: linear-gradient(90deg, #FFB84D, var(--c-summer-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-sea {
    background: linear-gradient(90deg, var(--c-sea-theme), var(--c-summer-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animasyonlar */
@keyframes pulseGlowBlue {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 210, 255, 0.6);
    }
}

@keyframes pulseGlowTropical {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(32, 178, 170, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(32, 178, 170, 0.6);
    }
}

@keyframes pulseGlowOrange {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
    }
}

@keyframes pulseGlowSea {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 139, 139, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 139, 139, 0.6);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-150%) skewX(-25deg);
    }

    100% {
        transform: translateX(250%) skewX(-25deg);
    }
}

/* Glow Efektleri (Artık Kalp Gibi Atıyor) */
.glow-blue {
    border: 1px solid rgba(0, 210, 255, 0.5);
    animation: pulseGlowBlue 3s infinite;
}

.glow-tropical {
    border: 1px solid rgba(32, 178, 170, 0.5);
    animation: pulseGlowTropical 3s infinite 0.5s;
}

.glow-orange {
    border: 1px solid rgba(255, 140, 0, 0.5);
    animation: pulseGlowOrange 3s infinite 1s;
}

.glow-sea {
    border: 1px solid rgba(0, 139, 139, 0.5);
    animation: pulseGlowSea 3s infinite 1.5s;
}

/* Yıldız Puanı Rozeti */
.star-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: rgba(0, 0, 0, 0.55);
    /* Daha hafif şeffaflık */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #FFD700;
    font-size: 0.45rem;
    /* İyice ufalttık */
    font-family: var(--font-body);
    font-weight: 400;
    /* Daha da incelttik */
    padding: 1px 3px;
    /* İç boşluğu minimuma indirdik */
    border-radius: 2px;
    /* Keskin, minik köşeler */
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2px;
    border: none;
    /* Çerçeveyi tamamen kaldırdık, daha saf dursun */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.star-badge i {
    font-size: 0.40rem;
    /* İkonu çok daha minik yaptık */
}

/* =========================================
   Yüklenme Ekranı (Preloader)
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c-dark-navy);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.casino-chip {
    width: 60px;
    height: 60px;
    border: 5px dashed #FFD700;
    border-radius: 50%;
    background: radial-gradient(circle, #FFA500 20%, #FF8C00 80%);
    animation: spinChip 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes spinChip {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   Kayan Yazı (Marquee)
   ========================================= */
.marquee-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(90deg, #1a1a1a, #333, #1a1a1a);
    border-bottom: 1px solid #FFD700;
    z-index: 101;
    /* Header'dan üstte */
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: #FFD700;
    font-weight: 600;
    padding: 0 30px;
    letter-spacing: 0.5px;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   Üst Menü (Header)
   ========================================= */
.header {
    position: fixed;
    top: 30px;
    /* Marquee için 30px aşağı alındı */
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    height: 40px;
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-container img {
    height: 100%;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.menu-toggle {
    font-size: 24px;
    color: var(--c-summer-blue);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:active {
    transform: scale(0.9);
}

/* =========================================
   Mobil Açılır Menü
   ========================================= */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    padding: 40px 20px;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 1px solid var(--glass-border);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.nav-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #eee;
    transition: color 0.3s ease;
}

.nav-links a i {
    color: var(--c-tropical);
    width: 25px;
    text-align: center;
}

.nav-links a:hover,
.nav-links a:active {
    color: var(--c-summer-orange);
}

/* =========================================
   Ana İçerik
   ========================================= */
.main-content {
    margin-top: 100px;
    /* Header (70) + Marquee (30) */
    padding: 0 20px 40px 20px;
    /* Soldan sağdan 20px marjin/padding */
}

.section-header {
    padding: 5px 0 5px 0;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    /* Başlıklar kalınlaştırıldı */
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-header h2 i {
    font-size: 0.85rem;
    /* Başlıklardaki ikonları da biraz ufaltalım */
}

/* 1. Tepe VIP Banner Carousel (3:1 Oran) */
.vip-top-banner {
    padding: 0 0 5px 0;
    position: relative;
}

.banner-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox için scrollbar gizleme */
}

.banner-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari için scrollbar gizleme */
}

.banner-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding-right: 10px;
    /* Slaytlar arası hafif boşluk */
}

.banner-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    /* aspect-ratio kaldirildi */
}

.banner-wrapper img {
    width: 100%;
    height: auto;
    /* object-fit kaldirildi */
    image-rendering: -webkit-optimize-contrast;
    /* Görseli kırpmadan sığdırır */
    display: block;
}

/* Kaydırma İpuçları (Dots) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: #fff;
}

/* =========================================
   VIP'ler (Yatay Kaydırılabilir Liste)
   ========================================= */
.vip-horizontal-list {
    margin-bottom: 5px;
}

.vip-horizontal-list .scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
    /* Scrollbar için boşluk */
    scrollbar-width: none;
    /* Firefox için scrollbar gizleme */
}

.vip-horizontal-list .scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari için scrollbar gizleme */
}

.scroll-slide {
    flex: 0 0 75%;
    scroll-snap-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.item-logo {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.item-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.rank-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: #FFD700;
    color: #000;
    font-family: var(--font-heading);
    font-weight: 600; /* Biraz daha okunaklı olsun diye artırdım */
    font-style: italic; /* İtalik eklendi */
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent; /* Kaba çizgiyi şeffaf yaptım */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-width: 0;
    /* Flexbox içinde metnin kesilmesini (ellipsis) sağlamak için kritik */
}

.info-top {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.info-top h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.star-rating {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #FFD700;
    font-size: 0.45rem;
    font-weight: 400;
    padding: 1px 3px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.star-rating i {
    font-size: 0.40rem;
}

.bonus-pill {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 85, 0.15));
    color: #FF1493; /* Neon Pembe/Kırmızı */
    font-size: 0.45rem; /* ~4px küçültüldü */
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2); /* Kırmızı parlama efekti */
    white-space: nowrap;
    letter-spacing: 0.2px;
}
.bonus-pill::before {
    content: '🎰 ';
    font-size: 1.1em;
}

.btn-play {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.70rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-play:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* 2. Dikey VIP Vitrini (195x325) */
.vip-showcase {
    margin-bottom: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 5px;
}

.bento-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.bento-item:active {
    transform: scale(0.97);
}

.bento-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bento-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.bento-item.short {
    aspect-ratio: 2 / 1; /* Kutular yarıdan kesildi (önceden 5/4'tü) */
}

/* Çapraz (Sağ-Sol ters) düzen için */
.bento-grid.reversed .bento-item.tall {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.bento-grid.reversed .bento-item.short {
    grid-column: 1;
}

/* 3. Kare VIP Vitrini (125x125) */
.vip-square-showcase {
    margin-bottom: 5px;
}

.square-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
}

.vip-card.square {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
}

.vip-card.square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 4'lü Döner Glow Bannerlar */
.mini-squares-section {
    margin-bottom: 5px;
}

.mini-squares-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0;
}

.mini-square-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.15); /* Dışarıya hafif bir genel neon yansıması */
}

.mini-square-item::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    /* Gerçek neon renkleri: Cyan ve Magenta karışımı */
    background: conic-gradient(from 0deg, transparent 50%, rgba(0, 255, 255, 0.3) 65%, #00FFFF 85%, #FF00FF 100%);
    animation: rotateGlow 2s linear infinite;
    z-index: 1;
}

.mini-square-inner {
    position: absolute;
    inset: 2px; /* Döner çerçevenin kalınlığı */
    background-color: #0A1128; /* Temanın lacivert arka planı */
    border-radius: 6px;
    z-index: 2;
    overflow: hidden;
}

.mini-square-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 4. Ana Sponsorlar (240x80 Logolar) */
.main-sponsors {
    margin-top: 30px;
}

.sponsor-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    /* Kibar görünüm için daha sıkı */
    padding: 0;
}

.sponsor-item {
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    /* Logolar üstte, yazı altta olacak şekilde */
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Logo ile rozet arasında hafif boşluk */
    overflow: hidden;
    background: #000;
}

.sponsor-item img {
    width: 100%;
    height: auto;
    max-height: 80px;
    /* Logoların aşırı büyümesini engeller */
    object-fit: contain;
}

/* Bonus Rozeti (Görselin altındaki kırmızı kapsül) */
.bonus-badge {
    position: relative;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 85, 0.15));
    color: #FF1493; /* Neon Pembe/Kırmızı */
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 3px 5px;
    border-radius: 20px;
    font-size: clamp(0.30rem, 2.0vw, 0.40rem); /* Font boyutu küçültüldü */
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: -0.3px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.bonus-badge::before {
    content: '🎰 ';
    font-size: 1.1em;
}

/* Shine (Parlama) Efekti */
.bonus-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: translateX(-150%) skewX(-25deg);
    animation: shine 3s infinite;
}

.sponsor-actions {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 10px 0;
    /* Daha kibar buton */
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    /* Küçültüldü */
    text-align: center;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.btn:active {
    transform: translateY(2px);
}

.btn-outline-blue {
    background: transparent;
    border: 2px solid var(--c-summer-blue);
    color: var(--c-summer-blue);
}

.btn-outline-tropical {
    background: transparent;
    border: 2px solid var(--c-tropical);
    color: var(--c-tropical);
}

.btn-outline-sea {
    background: transparent;
    border: 2px solid var(--c-sea-theme);
    color: var(--c-sea-theme);
}

.btn-outline-orange {
    background: transparent;
    border: 2px solid var(--c-summer-orange);
    color: var(--c-summer-orange);
}

.btn-fill-orange {
    background: linear-gradient(45deg, #FF8C00, #FF6347);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.btn-fill-blue {
    background: linear-gradient(45deg, var(--c-summer-blue), #007FFF);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

/* =========================================
   İletişim / CTA Alanı (Markanızı Yerleştirin)
   ========================================= */
.contact-cta {
    margin: 30px 0 10px;
    padding: 0 15px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .cta-grid {
        grid-template-columns: 1.3fr 1fr;
    }
}

.cta-brand-box {
    background-color: #2b8cff; /* Açık mavi arka plan */
    border-radius: 16px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    height: 220px; /* Yükseklik artırıldı ki sığsın */
}

.brand-text {
    width: 60%; /* Yazıya maksimum alan */
    z-index: 2;
}

.brand-text h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem; /* Küçültüldü */
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    word-break: keep-all; /* Kelimenin ortasından bölünmesini kesinlikle engeller */
    white-space: pre-wrap;
}

.brand-marquee-container {
    display: flex;
    gap: 6px; /* Boşluklar biraz daraltıldı */
    height: 300px;
    position: absolute;
    right: 5px;
    top: -40px;
    width: 40%; /* Logolara daha az, yazıya daha çok yer */
    justify-content: flex-end;
    padding-right: 5px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 5%, black 20%, black 80%, transparent 95%);
    mask-image: linear-gradient(to bottom, transparent 5%, black 20%, black 80%, transparent 95%);
}

.brand-column {
    display: flex;
    flex-direction: column;
    width: 32%;
}

.brand-marquee {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.marquee-logo {
    background-color: #000;
    border-radius: 8px;
    padding: 6px;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.1);
}

.marquee-logo img {
    max-width: 100%;
    max-height: auto;
    /* object-fit kaldirildi */
    image-rendering: -webkit-optimize-contrast;
}

/* Kayan Animasyonlar */
.column-down .brand-marquee {
    animation: marqueeDown 10s linear infinite;
}

.column-up .brand-marquee {
    animation: marqueeUp 10s linear infinite;
}

@keyframes marqueeDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

@keyframes marqueeUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.cta-contact-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px; /* İç boşlukları daralttık ki sığsın */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 220px; /* Sabit 180px yerine grid ile esneyecek veya 220px olacak */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.cta-contact-box h2 {
    color: #fff;
    font-size: 1rem; /* Sol kutuyla aynı boyuta (1rem) getirildi */
    font-family: var(--font-heading);
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.3;
}

.cta-contact-box p {
    color: #a0a0b0;
    font-size: 0.95rem; /* Biraz daha okunabilir */
    margin-bottom: 15px;
    margin-top: 0;
}

.btn-contact {
    background-color: #2b8cff;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 1rem;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.btn-contact:hover {
    background-color: #1e70d6;
}

.horizontal-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mobilde de her zaman yan yana */
    gap: 10px; /* Boşluğu biraz kıstık ki sığsınlar */
    margin: 20px 15px; /* Üstten ve alttan boşluk */
}

.horizontal-banner {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    aspect-ratio: 2/1; /* 400x200 oranı (Genişlik/Yükseklik = 2) */
}

.horizontal-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.horizontal-banner:hover img {
    transform: scale(1.05);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px 20px;
    margin-top: 30px;
    border-top: 1px solid var(--glass-border);
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-logo {
    height: 26px;
    width: auto;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.3));
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    max-width: 280px;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.footer-col {
    flex: 1;
    text-align: left;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.8rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400; /* Daha ince font */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li a::before {
    content: "\f105"; /* FontAwesome right chevron */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
    font-size: 0.7rem;
    color: var(--c-summer-blue);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-links li a:hover::before {
    opacity: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon.telegram { color: #0088cc; }
.social-icon.instagram { color: #E1306C; }

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    margin: 0;
}

/* =========================================
   Header Ana Sponsorlar Butonu
   ========================================= */
.btn-main-sponsors {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.btn-main-sponsors:hover {
    background: rgba(0, 210, 255, 0.2);
    transform: scale(1.05);
}

.btn-main-sponsors i {
    font-size: 0.9rem;
}

@media (max-width: 360px) {
    .vip-card.vertical {
        width: 120px;
    }

    .square-grid {
        gap: 8px;
    }

    .sponsor-actions {
        flex-direction: column;
    }
}

/* Tablet boyutları (İsteğe bağlı, gerçi odak mobil) */
@media (min-width: 768px) {
    .main-content {
        max-width: 600px;
        /* Tablette de telefon boyutunu korumak daha şık durur Telegram reklamı için */
        margin-left: auto;
        margin-right: auto;
    }

    .header {
        max-width: 600px;
        left: 50%;
        transform: translateX(-50%);
    }
}