/* ===== TEMEL STILLER ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll - ensure media elements don't overflow */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

:root {
    --color-black: #000;
    --color-black-matt: #0d0d0d;
    --color-orange: #FF1803;
    --color-orange-hover: #FF3820;
    --color-orange-glow: rgba(255, 24, 3, 0.3);
    --color-white: #fff;
    --color-text-light: rgba(255, 255, 255, 0.9);
    --border-radius: 12px;
    --border-radius-large: 16px;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Typography Scale - Hiyerarşik Yazı Boyutları */
    --font-size-h1: 48px;        /* Hero Title */
    --font-size-h2: 36px;        /* Section Title */
    --font-size-h3: 24px;        /* Category Title */
    --font-size-h4: 20px;        /* Subtitle */
    --font-size-body-lg: 18px;    /* Body Large */
    --font-size-body: 16px;      /* Body Text */
    --font-size-body-sm: 14px;   /* Body Small */
    --font-size-sm: 12px;        /* Small Text */
}

/* Optimized font fallbacks */
@font-face {
    font-family: 'Poppins Fallback';
    src: local('Arial');
    size-adjust: 105%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 80px;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-primary), 'Poppins Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-black);
    color: var(--color-text-light);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,.8);
    border-left: 1px solid rgba(255,24,3,.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-orange), var(--color-orange-hover));
    border-radius: 6px;
    border: 2px solid rgba(0,0,0,.8);
    box-shadow: 0 0 10px var(--color-orange-glow), inset 0 1px 2px rgba(255,255,255,.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-orange-hover), var(--color-orange));
    box-shadow: 0 0 15px rgba(255,24,3,.7), inset 0 1px 3px rgba(255,255,255,.3);
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity .6s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.loading-frame {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.loading-frame::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,24,3,.85), rgba(255,56,32,.9), rgba(255,24,3,.85));
    box-shadow: 0 0 30px rgba(255,24,3,.2), 0 0 60px rgba(255,24,3,.1), inset 0 0 40px rgba(255,24,3,.15);
    animation: frame-shimmer 6s ease-in-out infinite;
}

@keyframes frame-shimmer {
    0%, 100% { box-shadow: 0 0 30px rgba(255,24,3,.2), 0 0 60px rgba(255,24,3,.1); }
    50% { box-shadow: 0 0 40px rgba(255,24,3,.25), 0 0 80px rgba(255,24,3,.12); }
}

#loading-video, .loading-fallback {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 16px;
    filter: contrast(1.05) brightness(.97);
    display: block;
    transition: opacity .5s ease;
}

.loading-fallback {
    opacity: 1;
    background-color: #000;
}

#loading-video {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
}

#loading-video.loaded {
    opacity: 1;
}

.loading-live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0,0,0,.85), rgba(13,13,13,.9));
    border: 1px solid rgba(255,0,0,.6);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    z-index: 10003;
    box-shadow: 0 2px 8px rgba(0,0,0,.6), 0 0 12px rgba(255,0,0,.3);
}

.live-dot-pulse {
    width: 10px;
    height: 10px;
    color: red;
    animation: live-pulse 1.2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px red);
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.85); }
}

.live-text {
    color: #fff;
    font-weight: 600;
    font-size: var(--font-size-sm);
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0,0,0,.8);
}

.loading-tagline-wrapper {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10005;
    animation: fadeInUp .8s ease .2s both;
}

.loading-tagline-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0,0,0,.4);
    border: 1px solid rgba(255,24,3,.5);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,.5);
}

.loading-tagline {
    color: rgba(255,255,255,.95);
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 8px var(--color-orange-glow);
}

.loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,24,3,.2);
    border-top-color: var(--color-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.skip-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border: 2px solid var(--color-orange);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: var(--font-size-body-sm);
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 15px var(--color-orange-glow);
    z-index: 10004;
}

.skip-button:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255,24,3,.8);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Fade-in animation without transform to prevent layout shift */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== PARTIKÜL EFEKTLER ===== */
.loading-particles, .floating-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -50px;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255,24,3,.8), rgba(255,56,32,.4) 50%, transparent);
    border-radius: 50%;
    opacity: .6;
    animation: float-up 15s linear infinite;
    box-shadow: 0 0 6px rgba(255,24,3,.5);
    will-change: transform, opacity;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 30%; animation-delay: 2s; animation-duration: 20s; width: 5px; height: 5px; }
.particle:nth-child(3) { left: 50%; animation-delay: 1s; animation-duration: 22s; }
.particle:nth-child(4) { left: 70%; animation-delay: 3s; animation-duration: 19s; width: 5px; height: 5px; }
.particle:nth-child(5) { left: 90%; animation-delay: 1.5s; animation-duration: 19s; width: 5px; height: 5px; }

@keyframes float-up {
    0% { transform: translate3d(0,0,0); opacity: 0; }
    10%, 90% { opacity: .6; }
    100% { transform: translate3d(20px,-100vh,0); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999999;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 24, 3, 0.2);
    transition: all 0.3s ease;
}

body.loading .navbar {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    cursor: pointer;
    transition: transform .3s ease;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo .logo-text, .footer-logo .logo-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: clamp(42px, 6vw, 56px);
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    font-style: normal;
    display: flex;
    align-items: center;
    line-height: 1;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
    /* Prevent layout shift on desktop */
    min-height: 40px;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 24, 3, 0.1);
    color: var(--color-orange);
}

.nav-telegram-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 24, 3, 0.1);
    border: 1px solid rgba(255, 24, 3, 0.3);
    border-radius: 6px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-telegram-btn:hover {
    background: rgba(255, 24, 3, 0.2);
    border-color: var(--color-orange);
}

.nav-telegram-btn svg {
    width: 16px;
    height: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 24, 3, 0.1);
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1000002;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 20px 100px;
    background: linear-gradient(180deg, var(--color-black), var(--color-black-matt));
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--color-orange-glow), transparent 70%);
    opacity: .3;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.hero-image-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255,24,3,.4);
    box-shadow: 0 0 20px rgba(255,24,3,.15);
    transition: all .4s ease;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
}

/* Desktop: Reduce hero image size by 20% */
@media (min-width: 969px) {
    .hero-image-carousel {
        transform: scale(0.8);
        transform-origin: center;
    }
}

.hero-image-carousel:hover {
    border-color: rgba(255,24,3,.6);
    box-shadow: 0 0 30px rgba(255,24,3,.25);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    display: none;
    transition: opacity .5s ease;
    filter: brightness(.95) contrast(1.05);
    /* Enable hardware acceleration */
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-image.active {
    display: block;
    animation: fadeInUp .8s ease;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,24,3,.3);
    cursor: pointer;
    transition: all .3s ease;
}

.dot.active {
    background-color: var(--color-orange);
    box-shadow: 0 0 10px var(--color-orange-glow);
}

.hero-content {
    /* Reserve minimum space to prevent layout shift */
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Prevent content from shifting during animation */
    will-change: opacity;
    contain: layout;
}

.hero-title {
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Use opacity-only animation to prevent layout shift */
    animation: fadeIn .8s ease .2s both;
    /* Reserve exact height and line-height to prevent layout shift on desktop */
    min-height: 58px;
    line-height: 1.2;
    /* Prevent layout shift during font loading */
    font-display: optional;
}

.hero-features-inline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-card {
    background: linear-gradient(135deg, #000, #1a0000 50%, #000);
    border: 1px solid rgba(139,0,0,.4);
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,.6);
    contain: layout style paint;
}

.feature-card:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: rgba(139,0,0,.6);
    box-shadow: 0 8px 30px rgba(0,0,0,.8);
}

.feature-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(139,0,0,.8);
    transition: all .4s ease;
}

.feature-card:hover .feature-icon {
    color: var(--color-orange);
    transform: scale(1.05);
}

.feature-title {
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeIn .8s ease .6s both;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 15px var(--color-orange-glow);
}

.btn-primary:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--color-orange-glow);
}

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

.btn-secondary:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-2px);
}

.betgens-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: rgba(255,24,3,.1);
    border: 1px solid var(--color-orange);
    border-radius: var(--border-radius);
    color: var(--color-text-light);
    font-size: var(--font-size-body-sm);
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
}

.betgens-badge:hover {
    background-color: rgba(255,24,3,.2);
    border-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--color-orange-glow);
}

.betgens-logo-small {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 24, 3, .3));
    transition: all .3s ease;
}

.betgens-badge:hover .betgens-logo-small {
    filter: drop-shadow(0 4px 12px rgba(255, 24, 3, .5));
    transform: scale(1.05);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 20px;
    background-color: var(--color-black-matt);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.premium-frame {
    position: relative;
    padding: 8px;
    border: 1px solid rgba(255,24,3,.35);
    border-radius: var(--border-radius-large);
    box-shadow: 0 0 25px rgba(255,24,3,.12);
    transition: all .4s ease;
}

.premium-frame:hover {
    border-color: rgba(255,24,3,.55);
    box-shadow: 0 0 35px rgba(255,24,3,.2);
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: calc(var(--border-radius-large) - 4px);
    display: block;
    filter: brightness(.92) contrast(1.08);
    transition: all .4s ease;
    /* Optimize rendering */
    will-change: filter, transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.premium-frame:hover .about-image {
    filter: brightness(.95) contrast(1.15);
    transform: scale(1.02);
}

.section-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(255,24,3,.2), inset 0 1px 0 rgba(255,255,255,.1);
}

.section-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,24,3,.15), rgba(139,0,0,.1));
    border: 2px solid rgba(255,24,3,.4);
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
}

.about-description {
    font-size: var(--font-size-body-lg);
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.about-badges {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
    margin: 25px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255,24,3,.08), rgba(139,0,0,.05));
    border: 1px solid rgba(255,24,3,.3);
    border-radius: 8px;
    transition: all .3s ease;
    cursor: default;
    width: 100%;
    box-sizing: border-box;
}

.about-badge:hover {
    background: linear-gradient(135deg, rgba(255,24,3,.15), rgba(139,0,0,.1));
    border-color: rgba(255,24,3,.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,24,3,.2);
}

.about-badge svg {
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255, 24, 3, .4));
}

.about-badge span {
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    color: rgba(255,255,255,.9);
}

/* ===== SPONSORS SECTION ===== */
.sponsors {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--color-black), #0a0a0a);
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.sponsor-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.category-title {
    font-size: var(--font-size-h3);
    font-weight: 700;
    margin-bottom: 25px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(255,24,3,.2), inset 0 1px 0 rgba(255,255,255,.1);
}

.category-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,24,3,.15), rgba(139,0,0,.1));
    border: 2px solid rgba(255,24,3,.4);
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
}

.category-title::after {
    display: none;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.sponsor-grid-new {
    grid-template-columns: 1fr;
    max-width: 100%;
}

.sponsor-card {
    background: linear-gradient(135deg, #000, #1a0000 50%, #000);
    border: 1px solid rgba(139,0,0,.3);
    border-radius: 12px;
    padding: 20px 18px;
    text-align: center;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.6);
    contain: layout style paint;
}

.sponsor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,24,3,.6);
    box-shadow: 0 12px 50px rgba(0,0,0,.8);
}

.sponsor-logo {
    width: 120px;
    height: 65px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s ease;
}

.sponsor-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(.95) drop-shadow(0 0 10px rgba(255, 24, 3, .2));
    transition: all .4s ease;
    /* Optimize rendering */
    will-change: filter, transform;
    transform: translateZ(0);
}

.sponsor-card:hover .sponsor-logo-img {
    filter: brightness(1) drop-shadow(0 0 20px rgba(255, 24, 3, .4));
    transform: scale(1.05);
}

.sponsor-bonuses {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.bonus-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(255,24,3,.1), rgba(139,0,0,.08));
    border: 1px solid rgba(255,24,3,.4);
    border-radius: 6px;
    color: var(--color-orange);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.sponsor-card:hover .bonus-badge {
    border-color: rgba(255,24,3,.6);
    background: linear-gradient(135deg, rgba(255,24,3,.15), rgba(139,0,0,.12));
    transform: translateX(3px);
}

.btn-register {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-hover));
    color: var(--color-white);
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: var(--font-size-body-sm);
    letter-spacing: .5px;
    box-shadow: 0 4px 20px rgba(255,24,3,.3);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--color-orange-hover), var(--color-orange));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,24,3,.5);
}

/* Ana Sponsor */
.sponsor-card.main-sponsor {
    border-color: rgba(255,24,3,.6);
    border-width: 2px;
    padding: 32px 28px;
    background: linear-gradient(135deg, rgba(0,0,0,.98), rgba(13,0,0,1) 50%, rgba(0,0,0,.98));
    box-shadow: 0 10px 40px rgba(0,0,0,.8), 0 0 50px rgba(255,24,3,.2);
}

.main-sponsor-content {
    display: flex;
    align-items: stretch;
    gap: 28px;
    position: relative;
    z-index: 1;
}


.sponsor-card.main-sponsor .sponsor-logo {
    width: 33.33%;
    min-width: 200px;
    max-width: 280px;
    flex-shrink: 0;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255,24,3,.12), rgba(139,0,0,.1));
    border-radius: 16px;
    border: 2px solid rgba(255,24,3,.3);
    position: relative;
    box-shadow: 0 8px 30px rgba(255,24,3,.25);
    transition: all .4s ease;
    aspect-ratio: 1;
    height: auto;
}

.sponsor-card.main-sponsor .sponsor-logo-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.05) drop-shadow(0 0 25px rgba(255, 24, 3, .5));
}

.main-sponsor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.sponsor-card.main-sponsor .sponsor-bonuses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sponsor-card.main-sponsor .bonus-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255,24,3,.2), rgba(139,0,0,.15));
    border: 2px solid rgba(255,24,3,.6);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255,24,3,.25);
}

.main-sponsor-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255,24,3,.06), rgba(139,0,0,.04));
    border-radius: 12px;
    border: 1px solid rgba(255,24,3,.25);
    transition: all .4s ease;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0,0,0,.4);
    border-radius: 8px;
    border: 1px solid rgba(255,24,3,.2);
    transition: all .3s ease;
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--color-orange);
    filter: drop-shadow(0 0 4px rgba(255, 24, 3, .5));
}

.feature-item span {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: rgba(255,255,255,.9);
}

.special-code-section {
    padding: 16px;
    background: linear-gradient(135deg, rgba(255,24,3,.1), rgba(139,0,0,.08));
    border-radius: 12px;
    border: 2px solid rgba(255,24,3,.4);
    transition: all .4s ease;
    box-shadow: 0 4px 15px rgba(255,24,3,.2);
}

.special-code-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
}

.special-code-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.special-code-value {
    flex: 1;
    font-size: var(--font-size-h4);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-orange);
    text-align: center;
    padding: 12px;
    background: rgba(0,0,0,.4);
    border-radius: 8px;
    border: 1px solid rgba(255,24,3,.3);
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px var(--color-orange-glow);
    transition: all .3s ease;
}

.copy-code-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255,24,3,.2), rgba(139,0,0,.15));
    border: 2px solid rgba(255,24,3,.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255,24,3,.2);
    overflow: hidden;
}

.copy-code-btn .copy-icon {
    color: var(--color-orange);
    filter: drop-shadow(0 0 4px rgba(255, 24, 3, .5));
    transition: all .3s ease;
    position: relative;
    z-index: 2;
}

.copy-code-btn .check-icon {
    position: absolute;
    color: #4ade80;
    filter: drop-shadow(0 0 6px rgba(74, 222, 128, .6));
    opacity: 0;
    transform: scale(0);
    transition: all .3s ease;
    z-index: 2;
}

.copy-code-btn.copied .copy-icon {
    opacity: 0;
    transform: scale(0);
}

.copy-code-btn.copied .check-icon {
    opacity: 1;
    transform: scale(1);
}

.copy-code-btn:hover {
    background: linear-gradient(135deg, rgba(255,24,3,.35), rgba(139,0,0,.25));
    border-color: rgba(255,24,3,.8);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255,24,3,.4);
}

/* Reklam Kartları */
.sponsor-ad {
    text-decoration: none;
    cursor: pointer;
}

.sponsor-ad-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 15px;
}

.ad-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(139,0,0,.8), rgba(139,0,0,.6));
    color: rgba(255,255,255,.9);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
    border: 1px solid rgba(255,24,3,.3);
}

.ad-icon {
    width: 32px;
    height: 32px;
    color: rgba(255,255,255,.3);
    margin-bottom: 12px;
    transition: all .4s ease;
}

.sponsor-ad:hover .ad-icon {
    color: rgba(255,24,3,.6);
    transform: scale(1.1) rotate(5deg);
}

.ad-title {
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    color: rgba(255,255,255,.7);
    margin-bottom: 6px;
    transition: color .4s ease;
}

.ad-description {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,.5);
    margin-bottom: 10px;
    text-align: center;
    transition: color .4s ease;
}

.ad-link {
    font-size: var(--font-size-sm);
    color: rgba(255,24,3,.6);
    font-weight: 600;
    transition: all .4s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ad-link::after {
    content: '→';
    transition: transform .4s ease;
}

.sponsor-ad:hover .ad-link {
    color: var(--color-orange);
    transform: translateX(5px);
}

.new-label {
    display: none;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 2px 10px rgba(255,24,3,.5); }
    50% { box-shadow: 0 2px 15px rgba(255,24,3,.7); }
}

/* ===== SOCIAL SECTION ===== */
.social {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--color-black-matt), var(--color-black));
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 15px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.social-link-instagram {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    min-height: auto;
}

.social-link-youtube {
    grid-row: span 2;
    aspect-ratio: 1;
    min-height: auto;
    padding: 30px 20px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 12px;
    background: linear-gradient(135deg, #000, #1a0000 50%, #000);
    border: 1px solid rgba(139,0,0,.3);
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-text-light);
    transition: all .4s ease;
    position: relative;
    overflow: visible;
    text-align: center;
    min-height: 100px;
    contain: layout style paint;
}

.social-link:hover {
    border-color: rgba(255,24,3,.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255,24,3,.2);
}

.social-live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(0,0,0,.9), rgba(13,13,13,.95));
    border: 1px solid rgba(255,0,0,.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,.6);
}

/* YouTube için daha büyük nokta */
.social-link-youtube .social-live-badge .live-dot-pulse {
    width: 14px;
    height: 14px;
    filter: drop-shadow(0 0 6px red) drop-shadow(0 0 10px rgba(255,0,0,.8));
}

.social-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    position: relative;
    transition: all .4s ease;
    color: rgba(255,24,3,.8);
}

.social-link:hover .social-icon {
    color: var(--color-orange);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 24, 3, .6));
}

.social-text {
    font-weight: 600;
    font-size: var(--font-size-body-sm);
    line-height: 1.3;
    color: #fff;
    transition: color .4s ease;
}

.social-handle {
    font-weight: 400;
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,.6);
    transition: color .4s ease;
}

.social-link:hover .social-text {
    color: var(--color-orange);
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 20px 40px;
    background: linear-gradient(180deg, var(--color-black), #0a0a0a);
    border-top: 1px solid rgba(255,24,3,.15);
    position: relative;
    margin-top: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,24,3,.1);
}

.footer-logo .logo-text {
    font-size: var(--font-size-h2);
    margin-bottom: 10px;
    display: inline-block;
}

.footer-tagline {
    color: rgba(255,255,255,.5);
    font-size: var(--font-size-body-sm);
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-betgens {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-text {
    color: rgba(255,255,255,.6);
    margin-bottom: 20px;
    font-size: var(--font-size-body-sm);
    font-weight: 300;
}

.footer-betgens-text-link {
    color: rgba(255,24,3,.8);
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
}

.footer-betgens-text-link:hover {
    color: var(--color-orange);
    text-shadow: 0 0 8px rgba(255,24,3,.5);
}

.footer-betgens-link {
    display: inline-block;
    transition: all .3s ease;
}

.footer-betgens-logo {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(255, 24, 3, .25));
    transition: all .3s ease;
}

.footer-betgens-link:hover .footer-betgens-logo {
    filter: drop-shadow(0 4px 20px rgba(255, 24, 3, .5));
    transform: scale(1.08);
}

.footer-links {
    text-align: right;
}

.footer-links-title {
    color: rgba(255,255,255,.95);
    font-size: var(--font-size-body-lg);
    font-weight: 700;
    margin-bottom: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(255,24,3,.15), rgba(139,0,0,.12));
    border: 1px solid rgba(255,24,3,.4);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255,24,3,.15);
}

.footer-links-title svg {
    color: var(--color-orange);
    filter: drop-shadow(0 0 4px rgba(255, 24, 3, .4));
    flex-shrink: 0;
}

.footer-links-subtitle {
    color: rgba(255,255,255,.6);
    font-size: var(--font-size-sm);
    font-weight: 400;
    margin-bottom: 14px;
    font-style: italic;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: var(--font-size-body-sm);
    transition: all .3s ease;
    padding: 12px 18px;
    border-radius: 10px;
    position: relative;
    background: linear-gradient(135deg, rgba(255,24,3,.1), rgba(139,0,0,.08));
    border: 1px solid rgba(255,24,3,.3);
    box-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.footer-link svg {
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    flex-shrink: 0;
    transition: all .3s ease;
    filter: drop-shadow(0 0 4px rgba(255, 24, 3, .4));
}

.footer-link-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
}

.footer-link-title {
    font-weight: 600;
    font-size: var(--font-size-body-sm);
    color: rgba(255,255,255,.95);
}

.footer-link-subtitle {
    font-weight: 400;
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,.6);
}

.footer-link:hover {
    color: var(--color-orange);
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255,24,3,.2), rgba(139,0,0,.15));
    border-color: rgba(255,24,3,.6);
    box-shadow: 0 4px 15px rgba(255,24,3,.3);
}

.footer-link:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 24, 3, .7));
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 15px;
}

.footer-disclaimer {
    color: rgba(255,255,255,.5);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer strong {
    color: var(--color-orange);
    font-weight: 600;
}

.footer-copyright {
    color: rgba(255,255,255,.4);
    font-size: var(--font-size-sm);
    font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    :root {
        --font-size-h1: 36px;
        --font-size-h2: 28px;
        --font-size-h3: 20px;
        --font-size-h4: 18px;
    }
    
    .hero-container, .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--font-size-h1);
    }
    
    .nav-container {
        padding: 0 10px;
        gap: 8px;
    }
    
    .nav-logo {
        margin-right: 0;
        padding-right: 0;
    }
    
    
    .navbar {
        z-index: 99999 !important;
        padding: 14px 0;
    }
    
    .nav-logo .logo-text {
        padding-right: 0;
        font-size: clamp(36px, 6vw, 48px) !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        background-color: rgba(0,0,0,.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 80px;
        padding-bottom: 20px;
        transition: left .3s ease, visibility .3s ease, opacity .3s ease;
        z-index: 999998 !important;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        box-sizing: border-box;
        list-style: none;
        margin: 0;
        flex: none !important;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu.active {
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        overflow-y: auto;
    }
    
    /* Prevent unnecessary scroll on mobile menu */
    .nav-menu:not(.active) {
        overflow: hidden;
    }
    
    /* Only show scroll when content exceeds viewport */
    
    /* Hide scrollbar when not needed */
    .nav-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: rgba(255,24,3,.3);
        border-radius: 2px;
    }
    
    .nav-link {
        padding: 18px 24px;
        font-size: var(--font-size-body-lg);
        color: #ffffff !important;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0,0,0,.8);
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,24,3,.15);
        transition: all .3s ease;
        display: block;
        background-color: transparent;
    }
    
    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus {
        color: var(--color-orange) !important;
        background-color: rgba(255,24,3,.15);
        transform: translateX(5px);
        text-shadow: 0 0 10px rgba(255,24,3,.5);
    }
    
    .nav-menu .nav-link::before,
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .nav-telegram-btn {
        display: flex;
        padding: 6px 10px;
        font-size: var(--font-size-sm);
        order: 2;
        margin-right: auto;
    }
    
    .nav-telegram-btn span {
        display: none;
    }
    
    .nav-telegram-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-toggle {
        display: flex !important;
        order: 3;
        z-index: 1000000 !important;
        position: fixed !important;
        top: 12px;
        right: 15px;
        pointer-events: auto !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        background-color: rgba(0,0,0,.7);
        border-radius: 8px;
        padding: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,.5);
        backdrop-filter: blur(10px);
    }
    
    .nav-toggle.active {
        background-color: rgba(0,0,0,.9);
        box-shadow: 0 2px 15px rgba(255,24,3,.3);
    }
    
    .nav-toggle span {
        background: linear-gradient(90deg, var(--color-orange), var(--color-orange-hover)) !important;
        box-shadow: 0 0 6px rgba(255,24,3,.6) !important;
    }
    
    /* Mobile menu backdrop overlay - removed, using body overflow instead */
    
    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .sponsor-grid-main, .sponsor-grid-vip, .sponsor-grid-new {
        grid-template-columns: 1fr !important;
    }
    
    .sponsor-grid-new {
        max-width: 100%;
    }
    
    .sponsor-card.main-sponsor {
        padding: 24px 20px;
    }
    
    .main-sponsor-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .sponsor-card.main-sponsor .sponsor-logo {
        width: 100%;
        height: auto;
        min-width: auto;
        max-width: 100%;
        padding: 15px 20px;
        margin: 0 auto;
        aspect-ratio: 3 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sponsor-card.main-sponsor .sponsor-bonuses {
        grid-template-columns: 1fr;
    }
    
    .main-sponsor-features {
        grid-template-columns: 1fr;
    }
    
    .hero-features-inline {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin: 25px 0;
    }
    
    .social-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .social-link-youtube {
        grid-row: span 1;
        aspect-ratio: 2 / 1;
        padding: 20px 15px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        text-align: center;
    }
    
    .footer-links-title {
        margin-bottom: 10px;
        padding: 8px 16px;
        font-size: var(--font-size-body);
    }
    
    .footer-links-subtitle {
        margin-bottom: 12px;
    }
    
    .footer-contact-links {
        gap: 10px;
        align-items: center;
    }
    
    .footer-link {
        padding: 10px 16px;
    }
    
    .footer-link-content {
        align-items: center;
        text-align: center;
    }
    
    .footer-brand, .footer-links {
        text-align: center;
    }
    
    .footer-logo .logo-text {
        font-size: 72px !important;
    }
    
    .footer-contact-links {
        align-items: center;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-h1: 28px;
        --font-size-h2: 24px;
        --font-size-h3: 18px;
        --font-size-h4: 16px;
        --font-size-body-lg: 16px;
        --font-size-body: 14px;
        --font-size-body-sm: 13px;
    }
    
    .nav-logo .logo-text {
        font-size: clamp(32px, 6.5vw, 42px) !important;
    }
    
    /* Loading frame için mobil optimizasyonu */
    .loading-frame::before {
        inset: -2px;
        border-radius: 16px;
    }
    
    /* Loading video tablet optimizasyonu */
    #loading-video, .loading-fallback {
        max-width: 85vw;
    }
    
    .loading-tagline {
        font-size: var(--font-size-sm);
    }
    
    .loading-tagline-box {
        padding: 7px 14px;
    }
    
    .skip-button {
        padding: 9px 18px;
        font-size: var(--font-size-body-sm);
    }
    
    .hero {
        padding: 80px 15px 50px;
    }
    
    .hero-content {
        min-height: auto;
        justify-content: flex-start;
        padding-top: 10px;
    }
    
    .hero-title {
        font-size: var(--font-size-h1);
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: var(--font-size-h2);
        padding: 12px 20px;
    }
    
    .category-title {
        font-size: var(--font-size-h3);
        padding: 10px 18px;
    }
    
    .hero-features-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 15px 0;
    }
    
    .feature-card {
        padding: 14px 10px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
    }
    
    .feature-title {
        font-size: var(--font-size-sm);
    }
    
    .btn {
        padding: 14px 20px;
        font-size: var(--font-size-body-sm);
    }
    
    .about, .social, .sponsors {
        padding: 30px 15px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-image-wrapper {
        margin-top: 0;
    }
    
    .about-badges {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        margin: 20px 0;
    }
    
    .about-badge {
        padding: 10px 12px;
    }
    
    .about-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .about-badge span {
        font-size: var(--font-size-sm);
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-live-badge {
        top: 5px;
        right: 5px;
        padding: 3px 6px;
        gap: 3px;
        font-size: 9px;
        border-radius: 10px;
    }
    
    .social-live-badge .live-dot-pulse {
        width: 6px;
        height: 6px;
    }
    
    /* Twitch ve Kick için mobilde sadece nokta göster */
    .social-link:not(.social-link-youtube) .social-live-badge {
        padding: 6px;
        gap: 0;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        justify-content: center;
        align-items: center;
        border-width: 2px;
        box-shadow: 0 0 12px rgba(255,0,0,.6), 0 0 20px rgba(255,0,0,.3);
    }
    
    .social-link:not(.social-link-youtube) .social-live-badge .live-text {
        display: none;
    }
    
    .social-link:not(.social-link-youtube) .social-live-badge .live-dot-pulse {
        width: 12px;
        height: 12px;
        filter: drop-shadow(0 0 6px red) drop-shadow(0 0 10px rgba(255,0,0,.8));
        animation: live-pulse-mobile 1s ease-in-out infinite;
    }
    
    @keyframes live-pulse-mobile {
        0%, 100% { 
            opacity: 1; 
            transform: scale(1); 
            filter: drop-shadow(0 0 6px red) drop-shadow(0 0 10px rgba(255,0,0,.8));
        }
        50% { 
            opacity: .5; 
            transform: scale(0.8); 
            filter: drop-shadow(0 0 10px red) drop-shadow(0 0 15px rgba(255,0,0,1));
        }
    }
    
    .social-link-youtube {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2 / 1;
        min-height: auto;
        padding: 20px 15px;
    }
    
    /* YouTube için mobilde de büyük nokta */
    .social-link-youtube .social-live-badge .live-dot-pulse {
        width: 14px;
        height: 14px;
        filter: drop-shadow(0 0 6px red) drop-shadow(0 0 10px rgba(255,0,0,.8));
    }
    
    .footer {
        padding: 50px 15px 30px;
    }
    
    .footer-logo .logo-text {
        font-size: 80px !important;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-h1: 22px;
        --font-size-h2: 20px;
        --font-size-h3: 16px;
        --font-size-h4: 14px;
        --font-size-body-lg: 14px;
        --font-size-body: 13px;
        --font-size-body-sm: 12px;
        --font-size-sm: 12px;
    }
    
    .nav-logo .logo-text {
        font-size: clamp(28px, 7vw, 38px) !important;
    }
    
    /* Loading video mobil optimizasyonu */
    #loading-video, .loading-fallback {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .loading-tagline {
        font-size: var(--font-size-sm);
    }
    
    .loading-tagline-box {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .loading-spinner {
        width: 14px;
        height: 14px;
    }
    
    .skip-button {
        padding: 8px 16px;
        font-size: var(--font-size-sm);
        bottom: 15px;
        right: 15px;
    }
    
    .hero {
        padding: 70px 12px 40px;
    }
    
    .hero-content {
        min-height: auto;
        justify-content: flex-start;
        padding-top: 8px;
    }
    
    .hero-title {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 8px;
    }
    
    .section-title {
        font-size: 22px;
        padding: 10px 15px;
    }
    
    .category-title {
        font-size: 18px;
        padding: 8px 15px;
    }
    
    .about, .social, .sponsors {
        padding: 25px 12px;
    }
    
    .about-content {
        gap: 25px;
    }
    
    .about-image-wrapper {
        margin-top: 0;
    }
    
    .about-badges {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 15px 0;
    }
    
    .about-badge {
        padding: 10px 14px;
    }
    
    .about-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .about-badge span {
        font-size: var(--font-size-sm);
    }
    
    .hero-features-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 12px 0;
    }
    
    .feature-card {
        padding: 12px 8px;
    }
    
    .feature-icon {
        width: 26px;
        height: 26px;
        margin-bottom: 8px;
    }
    
    .feature-title {
        font-size: var(--font-size-sm);
    }
    
    .btn {
        padding: 12px 16px;
        font-size: var(--font-size-body-sm);
    }
    
    .sponsor-card.main-sponsor {
        padding: 20px 16px;
    }
    
    .ad-badge {
        top: 6px;
        right: 6px;
        padding: 2px 6px;
        font-size: 9px;
        border-radius: 6px;
        letter-spacing: 0.5px;
    }
    
    .sponsor-card.main-sponsor .sponsor-logo {
        width: 100%;
        height: auto;
        min-width: auto;
        max-width: 100%;
        padding: 12px 18px;
        aspect-ratio: 3 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-sponsor-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-logo .logo-text {
        font-size: 96px !important;
    }
}
