﻿:root {
            --primary-color: #1d3557;
            --secondary-color: #457b9d;
            --dark-color: #0a0a0f;
            --light-color: #f1faee;
            --accent-color: #a8dadc;
            --vanilla-brown: #8b4513;
            --vanilla-tan: #d2b48c;
            --hideaway-green: #2a9d8f;
            --neon-glow: 0 0 10px rgba(210, 180, 140, 0.7), 0 0 20px rgba(210, 180, 140, 0.5), 0 0 30px rgba(210, 180, 140, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-color);
            color: var(--light-color);
            overflow-x: hidden;
            min-height: 100vh;
        }
        
        /* Özel Arka Plan Görseli - GÜNCELLENDİ */
        .custom-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(10, 10, 15, 0.62), rgba(10, 10, 15, 0.82)),
                url('../assets/images/dayz-hero-1920.jpg');
            background-attachment: scroll;
            background-size: cover;
            background-position: center;
            z-index: -2;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--dark-color);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--vanilla-brown);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--vanilla-tan);
        }
        
        /* Header */
        .header {
            background-color: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            border-bottom: 1px solid rgba(139, 69, 19, 0.3);
            z-index: 1000;
            position: relative;
        }
        
        .header.scrolled {
            padding: 15px 0;
            background-color: rgba(0, 0, 0, 0.98);
        }
        
        /* GÜNCELLENMİŞ LOGO STİLİ - BEYAZ LOGO */
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
        }
        
        .logo span {
            color: white !important;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
            font-weight: 800;
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
        }
        
        .logo i {
            margin-right: 12px;
            color: white !important;
            font-size: 1.8rem;
        }
        
        .navbar ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .navbar li {
            margin: 0 15px;
        }
        
        /* GÜNCELLENMİŞ NAVBAR MENÜ STİLİ */
        .navbar a {
            color: var(--light-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .navbar a:hover {
            color: var(--vanilla-tan);
            transform: translateY(-2px);
        }
        
        .navbar a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--vanilla-brown), var(--vanilla-tan));
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .navbar a:hover:after {
            width: 100%;
        }
        
        /* Oyna Butonu Efekti - GELİŞTİRİLDİ */
        .navbar .btn-connect {
            background: linear-gradient(45deg, var(--vanilla-brown), #a0522d);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            position: relative;
            overflow: hidden;
            box-shadow: var(--neon-glow);
            animation: pulse-btn 2s infinite;
        }
        
        @keyframes pulse-btn {
            0%, 100% {
                box-shadow: var(--neon-glow);
            }
            50% {
                box-shadow: 0 0 15px rgba(210, 180, 140, 0.9), 0 0 30px rgba(210, 180, 140, 0.7), 0 0 45px rgba(210, 180, 140, 0.5);
            }
        }
        
        .navbar .btn-connect:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 20px rgba(210, 180, 140, 0.8);
            animation: none;
        }
        
        /* Ana Hero Bölümü */
        .main-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 150px 0 60px;
        }
        
        .main-hero-content {
            text-align: center;
            max-width: 1200px;
            width: 100%;
            z-index: 2;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        /* HAREKETLİ ANİMASYON KORUNDU */
        .vanilla-animation-container {
            position: relative;
            width: 100%;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: auto;
        }
        
        .vanilla-moving-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 3px;
            white-space: nowrap;
            padding: 15px 40px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
            background: linear-gradient(135deg, 
                        rgba(255, 255, 255, 0.1) 0%, 
                        rgba(255, 255, 255, 0.05) 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            display: inline-block;
        }
        
        /* Opsiyonel: Hover'da hafif bir parıltı efekti */
        .vanilla-moving-text:hover {
            animation: text-shimmer 2s infinite;
        }
        
        @keyframes text-shimmer {
            0% { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)); }
            50% { background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1)); }
            100% { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)); }
        }
        
        /* GÜNCELLENMİŞ: DAHA ŞIK ANA BAŞLIK - SADECE "Vanilla+ DayZ Deneyimi" KALDIRILDI */
        .main-title {
            margin-bottom: 20px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
        }
        
        .title-line-1 {
            display: block;
            font-size: 4.5rem;
            line-height: 1;
            margin-bottom: 10px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            letter-spacing: 4px;
            color: white;
        }
        
        .title-line-2 {
            display: block;
            font-size: 2.2rem;
            line-height: 1.3;
            color: var(--vanilla-tan);
            text-shadow: 0 2px 10px rgba(210, 180, 140, 0.5);
            letter-spacing: 2px;
            font-weight: 600;
            margin-top: 10px;
            position: relative;
        }
        
        .title-line-2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--vanilla-tan), transparent);
        }
        
        .main-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        
        /* Vanilla Badge KALDIRILDI - Bu stil artık kullanılmıyor */
        
        /* Video Trailer Bölümü */
        .trailer-section {
            padding: 100px 0;
            background-color: rgba(0, 0, 0, 0.7);
            position: relative;
            z-index: 1;
        }
        
        .trailer-container {
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--neon-glow);
            border: 2px solid rgba(139, 69, 19, 0.4);
            position: relative;
        }
        
        /* YouTube Video Container */
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background-color: #000;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .trailer-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 5;
            pointer-events: none;
        }
        
        .trailer-container:hover .trailer-overlay {
            opacity: 1;
        }
        
        .trailer-title {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 15px;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
        }
        
        .trailer-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            max-width: 700px;
            line-height: 1.6;
        }
        
        /* Server Stats */
        .server-stats {
            padding: 80px 0;
            background-color: rgba(0, 0, 0, 0.7);
            position: relative;
            z-index: 1;
        }
        
        /* Stat Box Tasarımı - GELİŞTİRİLDİ */
        .stat-box {
            text-align: center;
            padding: 40px 30px;
            background: rgba(20, 20, 30, 0.85);
            border-radius: 20px;
            margin-bottom: 30px;
            border: 1px solid rgba(139, 69, 19, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        
        .stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--vanilla-brown), var(--vanilla-tan));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .stat-box:hover::before {
            transform: scaleX(1);
        }
        
        .stat-box:hover {
            border-color: var(--vanilla-tan);
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--neon-glow);
        }
        
        .stat-icon {
            font-size: 3.5rem;
            color: var(--vanilla-tan);
            margin-bottom: 25px;
            filter: drop-shadow(0 0 10px rgba(210, 180, 140, 0.3));
        }
        
        /* DÜZELTİLDİ: Chernarus yazısı için daha küçük font boyutu (1.8rem) */
        .stat-value {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--vanilla-tan);
            margin-bottom: 10px;
            font-family: 'Orbitron', sans-serif;
            line-height: 1.1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-top: 5px;
        }
        
        /* Server Info */
        .server-info-section {
            padding: 100px 0;
            background-color: rgba(0, 0, 0, 0.6);
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--vanilla-brown), var(--vanilla-tan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--vanilla-tan), transparent);
        }
        
        .section-title p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Server Info Box - GELİŞTİRİLDİ */
        .server-info-box {
            background: rgba(20, 20, 30, 0.9);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(139, 69, 19, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        
        .server-info-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--vanilla-brown), var(--vanilla-tan));
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }
        
        .server-info-box:hover::before {
            transform: scaleY(1);
        }
        
        .server-info-box:hover {
            border-color: var(--vanilla-tan);
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--neon-glow);
        }
        
        .server-info-box h3 {
            color: var(--vanilla-tan);
            margin-bottom: 20px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            min-height: 60px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }
        
        .server-info-box h3 i {
            margin-right: 10px;
            font-size: 1.4rem;
        }
        
        .server-info-box ul {
            list-style-type: none;
            padding: 0;
        }
        
        .server-info-box li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.05rem;
        }
        
        .server-info-box li:last-child {
            border-bottom: none;
        }
        
        .server-info-box li i {
            margin-right: 10px;
            color: var(--vanilla-tan);
        }
        
        /* Connect Section */
        .connect-section {
            padding: 100px 0;
            background-color: rgba(0, 0, 0, 0.7);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .connect-box {
            background: rgba(20, 20, 30, 0.95);
            border-radius: 20px;
            padding: 50px;
            border: 2px solid var(--vanilla-tan);
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--neon-glow);
            position: relative;
            overflow: hidden;
        }
        
        .connect-box h2 {
            color: var(--vanilla-tan);
            margin-bottom: 25px;
            font-size: 2.5rem;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .connect-details {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            padding: 25px;
            margin: 40px 0;
            text-align: left;
            border: 1px solid rgba(139, 69, 19, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .connect-details p {
            margin-bottom: 15px;
            font-family: 'Courier New', monospace;
            font-size: 1.2rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .connect-details p:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .copy-btn {
            background: linear-gradient(45deg, var(--vanilla-brown), #a0522d);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            margin: 5px;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
        }
        
        .copy-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 20px rgba(210, 180, 140, 0.3);
        }
        
        /* Live Player Count */
        .live-player-container {
            background: rgba(20, 20, 30, 0.95);
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            border: 2px solid rgba(139, 69, 19, 0.3);
            backdrop-filter: blur(20px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), var(--neon-glow);
            position: relative;
            overflow: hidden;
        }
        
        .live-player-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(210, 180, 140, 0.1), transparent);
            z-index: 0;
        }
        
        .live-player-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .live-player-title {
            font-size: 2rem;
            color: var(--vanilla-tan);
            font-weight: 900;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .live-indicator {
            display: flex;
            align-items: center;
            background: rgba(46, 204, 113, 0.1);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid rgba(46, 204, 113, 0.3);
            font-family: 'Poppins', sans-serif;
        }
        
        .live-dot {
            width: 12px;
            height: 12px;
            background-color: #2ecc71;
            border-radius: 50%;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }
        
        .player-count-container {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .player-count-number {
            font-size: 5rem;
            font-weight: 900;
            color: var(--vanilla-tan);
            line-height: 1;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            font-family: 'Orbitron', sans-serif;
        }
        
        .player-count-max {
            font-size: 2.5rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .player-count-label {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .player-progress {
            height: 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin-top: 30px;
            overflow: hidden;
            border: 1px solid rgba(139, 0, 0, 0.3);
        }
        
        .player-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--vanilla-brown), var(--vanilla-tan));
            border-radius: 10px;
            width: 0%;
            transition: width 1s ease;
        }
        
        /* Footer */
        .footer {
            background-color: rgba(8, 8, 12, 0.95);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(139, 69, 19, 0.2);
            position: relative;
            z-index: 1;
        }
        
        /* GÜNCELLENMİŞ FOOTER LOGO - BEYAZ */
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            margin-bottom: 25px;
            display: inline-block;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .footer-logo span {
            color: white !important;
            font-weight: 800;
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
        }
        
        .footer-links h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            display: inline-block;
        }
        
        .footer-links h4:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--vanilla-tan);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            font-family: 'Poppins', sans-serif;
            position: relative;
        }
        
        .footer-links a:before {
            content: '>';
            position: absolute;
            left: -15px;
            opacity: 0;
            color: var(--vanilla-tan);
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--vanilla-tan);
            padding-left: 10px;
        }
        
        .footer-links a:hover:before {
            opacity: 1;
            left: 0;
        }
        
        /* EKLENDİ: Sosyal medya bağlantıları için not */
        .social-note {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 10px;
            font-style: italic;
            line-height: 1.4;
            max-width: 300px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(210, 180, 140, 0.3);
            text-decoration: none !important;
        }
        
        .social-links a:hover {
            background: var(--vanilla-brown);
            transform: translateY(-5px) rotate(10deg);
            border-color: var(--vanilla-brown);
            text-decoration: none !important;
        }
        
        /* GÜNCELLENMİŞ COPYRIGHT METNİ (SEO için) */
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(139, 69, 19, 0.3);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            font-family: 'Poppins', sans-serif;
        }
        
        /* Animasyonlar */
        @keyframes pulse {
            0% { 
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
            }
            70% { 
                opacity: 0.8;
                box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
            }
            100% { 
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* Vanilla+ Banner */
        .vanilla-banner {
            background: linear-gradient(90deg, rgba(139, 69, 19, 0.2), rgba(210, 180, 140, 0.2));
            border: 1px solid rgba(139, 69, 19, 0.4);
            border-radius: 15px;
            padding: 25px;
            margin: 40px auto;
            text-align: center;
            max-width: 900px;
            backdrop-filter: blur(10px);
            box-shadow: var(--neon-glow);
        }
        
        .vanilla-banner h3 {
            color: var(--vanilla-tan);
            margin-bottom: 15px;
            font-size: 1.8rem;
            font-family: 'Orbitron', sans-serif;
        }
        
        .vanilla-banner p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        /* Responsive düzenlemeler (yeni H1 için) */
        @media (max-width: 992px) {
            .title-line-1 {
                font-size: 3.5rem;
                letter-spacing: 3px;
            }
            .title-line-2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .title-line-1 {
                font-size: 2.8rem;
                letter-spacing: 2px;
            }
            .title-line-2 {
                font-size: 1.5rem;
            }
            .title-line-2::after {
                width: 120px;
            }
        }
        
        /* Responsive Tasarım */
        @media (max-width: 992px) {
            .main-subtitle {
                font-size: 1.4rem;
            }
            
            .vanilla-moving-text {
                font-size: 2.2rem;
                padding: 12px 30px;
            }
            
            .vanilla-animation-container {
                height: auto;
                margin-bottom: 15px;
            }
            
            .navbar ul {
                flex-direction: column;
                background-color: rgba(10, 10, 15, 0.98);
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                padding-top: 30px;
                transition: left 0.5s ease;
                z-index: 1000;
                backdrop-filter: blur(10px);
                border-top: 2px solid var(--vanilla-tan);
            }
            
            .navbar ul.active {
                left: 0;
            }
            
            .navbar li {
                margin: 15px 0;
                text-align: center;
            }
            
            .navbar a {
                font-size: 1.2rem;
                padding: 10px 0;
            }
            
            .mobile-toggle {
                display: block;
                font-size: 1.5rem;
                color: white;
                cursor: pointer;
                z-index: 1001;
            }
            
            .player-count-number {
                font-size: 4rem;
            }
            
            /* Responsive'de Chernarus düzeltmesi */
            .stat-value {
                font-size: 1.6rem !important;
            }
        }
        
        @media (max-width: 768px) {
            .main-subtitle {
                font-size: 1.2rem;
            }
            
            .vanilla-moving-text {
                font-size: 1.8rem;
                padding: 10px 20px;
            }
            
            .vanilla-animation-container {
                height: auto;
                margin-bottom: 10px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .player-count-number {
                font-size: 3.5rem;
            }
            
            .connect-box {
                padding: 30px 20px;
            }
            
            .server-info-box h3 {
                min-height: auto;
            }
            
            .button-container {
                flex-direction: column;
            }
            
            .button-container a {
                width: 100%;
            }
            
            /* Responsive'de Chernarus düzeltmesi */
            .stat-value {
                font-size: 1.4rem !important;
            }
        }
        
        /* Buton Konteynırı */
        .button-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .button-container a {
            flex: 1;
            min-width: 200px;
        }
        
        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-color);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(210, 180, 140, 0.3);
            border-top-color: var(--vanilla-tan);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Yeni Eklenen Community Section Stilleri - GELİŞTİRİLDİ */
        .community-card {
            text-align: center;
            height: 100%;
            padding: 40px 30px;
            background: rgba(20, 20, 30, 0.9);
            border-radius: 20px;
            border: 1px solid rgba(139, 69, 19, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        
        .community-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(210, 180, 140, 0.1), transparent);
            transition: left 0.7s ease;
        }
        
        .community-card:hover::before {
            left: 100%;
        }
        
        .community-card:hover {
            border-color: var(--vanilla-tan);
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--neon-glow);
        }
        
        .community-card.discord-card {
            border-color: rgba(114, 137, 218, 0.3);
        }
        
        .community-card.discord-card:hover {
            border-color: #7289da;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(114, 137, 218, 0.5);
        }
        
        .community-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            filter: drop-shadow(0 0 10px rgba(210, 180, 140, 0.3));
        }
        
        .community-stats {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }
        
        .community-stat {
            text-align: center;
            margin: 0 20px;
        }
        
        .community-stat-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--vanilla-tan);
            line-height: 1;
            font-family: 'Orbitron', sans-serif;
        }
        
        .community-stat.discord-stat .community-stat-value {
            color: #7289da;
        }
        
        .community-stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Poppins', sans-serif;
        }
        
        /* Butonlar - GELİŞTİRİLDİ */
        .btn-connect-large {
            background: linear-gradient(45deg, var(--vanilla-brown), #a0522d);
            color: white;
            padding: 16px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            margin: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            min-width: 220px;
            text-align: center;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--neon-glow);
        }
        
        .btn-connect-large:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(210, 180, 140, 0.4);
            color: white;
        }
        
        .discord-gradient {
            background: linear-gradient(45deg, #7289da, #5b6eae);
            color: white;
            padding: 16px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            margin: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            min-width: 220px;
            text-align: center;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .discord-gradient:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(114, 137, 218, 0.3);
            color: white;
        }
        
        .hideaway-discord-btn {
            background: #7289da;
            color: white;
            padding: 16px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            margin: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            min-width: 220px;
            text-align: center;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .hideaway-discord-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(114, 137, 218, 0.3);
            color: white;
        }
        
        .quote-box {
            background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), rgba(210, 180, 140, 0.1));
            border-left: 4px solid var(--vanilla-brown);
            padding: 25px;
            margin-top: 40px;
            border-radius: 0 15px 15px 0;
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .quote-author {
            text-align: right;
            margin-top: 15px;
            color: var(--vanilla-tan);
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }
        
        /* Hero Section'dan sonra gelen ilk bölüm için özel stil */
        .first-section-after-hero {
            padding-top: 60px;
            padding-bottom: 100px;
            background-color: rgba(0, 0, 0, 0.6);
            position: relative;
            z-index: 1;
        }
        
        .dual-card-section {
            margin-top: -50px;
            position: relative;
            z-index: 2;
        }
        
        .unified-notice {
            background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), rgba(114, 137, 218, 0.1));
            border: 1px solid rgba(139, 69, 19, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
        }
        
        .unified-notice h4 {
            color: var(--vanilla-tan);
            margin-bottom: 10px;
            font-size: 1.4rem;
            font-family: 'Poppins', sans-serif;
        }
        
        .unified-notice p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        /* Video Başlığı */
        .trailer-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .trailer-header h2 {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--vanilla-brown), var(--vanilla-tan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .trailer-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* DayZTR Discord Button */
        .hideaway-discord-btn {
            background: #7289da;
            color: white;
            padding: 16px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            margin: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            min-width: 220px;
            text-align: center;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hideaway-discord-btn:hover {
            background: #677bc4;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(114, 137, 218, 0.3);
            color: white;
        }
        
        /* Logo text için özel stil */
        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            color: var(--vanilla-tan);
        }
        
        /* YENİ: Chernarus düzeltmesi ve beyaz logo için ek stil */
        @media (max-width: 992px) {
            .stat-value {
                font-size: 1.6rem !important;
            }
        }
        
        @media (max-width: 768px) {
            .stat-value {
                font-size: 1.4rem !important;
            }
        }

        /* Final responsive and accessibility polish */
        .mobile-toggle {
            background: transparent;
            border: 0;
            padding: 8px;
            line-height: 1;
        }

        .main-hero .row,
        .server-info-section .row,
        .server-stats .row,
        .footer .row {
            max-width: 100%;
        }

        @media (max-width: 768px) {
            .main-hero {
                padding-left: 0;
                padding-right: 0;
            }

            .main-hero-content {
                width: 100%;
            }

            .main-hero .row {
                --bs-gutter-x: 1rem;
                margin-left: 0;
                margin-right: 0;
                width: 100%;
            }

            .main-hero .row > [class*="col-"] {
                padding-left: 0;
                padding-right: 0;
            }

            .community-card {
                width: 100%;
                max-width: 100%;
                padding: 28px 18px;
                border-radius: 12px;
            }

            .community-stats {
                gap: 12px;
                justify-content: space-between;
            }

            .community-stat {
                flex: 1 1 0;
                margin: 0;
                min-width: 0;
            }

            .community-stat-value {
                font-size: 1.65rem;
            }

            .community-stat-label {
                font-size: 0.72rem;
                letter-spacing: 0;
            }

            .button-container {
                width: 100%;
                gap: 12px;
            }

            .button-container a,
            .btn-connect-large,
            .discord-gradient,
            .hideaway-discord-btn,
            .copy-btn {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                margin-left: 0;
                margin-right: 0;
                white-space: normal;
                overflow-wrap: anywhere;
            }

            .copy-btn.ms-2 {
                margin-left: 0 !important;
                margin-top: 10px;
            }
        }

        /* Premium tactical polish */
        :root {
            --primary-color: #1f2f2a;
            --secondary-color: #78908a;
            --dark-color: #070908;
            --light-color: #f4f1e8;
            --accent-color: #9fb8b2;
            --vanilla-brown: #566848;
            --vanilla-tan: #d8c89a;
            --field-green: #6f8057;
            --steel-blue: #8fb3c1;
            --panel-bg: rgba(10, 14, 13, 0.84);
            --panel-bg-strong: rgba(8, 10, 10, 0.94);
            --panel-line: rgba(216, 200, 154, 0.2);
            --neon-glow: 0 18px 55px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(216, 200, 154, 0.12);
        }

        body,
        *,
        .navbar a,
        .logo,
        .title-line-1,
        .title-line-2,
        .stat-label,
        .community-stat-label,
        .btn-connect-large,
        .discord-gradient,
        .hideaway-discord-btn,
        .copy-btn {
            letter-spacing: 0 !important;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #070908;
        }

        .header,
        .vanilla-moving-text,
        .hero-intel-strip span,
        .server-info-box,
        .stat-box,
        .community-card,
        .live-player-container,
        .connect-box,
        .connect-details,
        .vanilla-banner {
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
        }

        .custom-bg {
            overflow: hidden;
            background:
                radial-gradient(circle at 24% 28%, rgba(82, 91, 66, 0.22) 0%, transparent 34%),
                radial-gradient(circle at 78% 18%, rgba(120, 93, 58, 0.16) 0%, transparent 28%),
                linear-gradient(180deg, rgba(3, 5, 5, 0.52) 0%, rgba(7, 9, 8, 0.76) 48%, rgba(7, 9, 8, 0.94) 100%),
                linear-gradient(90deg, rgba(7, 9, 8, 0.74) 0%, rgba(31, 47, 42, 0.18) 46%, rgba(7, 9, 8, 0.78) 100%),
                url('../assets/images/dayz-hero-1920.jpg');
            background-attachment: scroll;
            background-size: cover;
            background-position: center;
        }

        .custom-bg::before,
        .custom-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .custom-bg::before {
            background:
                linear-gradient(rgba(216, 200, 154, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(216, 200, 154, 0.04) 1px, transparent 1px),
                linear-gradient(135deg, transparent 0 46%, rgba(216, 200, 154, 0.035) 46% 47%, transparent 47% 100%);
            background-size: 92px 92px, 92px 92px, 260px 260px;
            mix-blend-mode: screen;
            opacity: 0.42;
        }

        .custom-bg::after {
            background:
                radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.82) 100%),
                repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px),
                repeating-radial-gradient(circle at 28% 34%, rgba(216, 200, 154, 0.035) 0 1px, transparent 1px 5px);
            opacity: 0.72;
        }

        .header {
            padding: 14px 0;
            background: rgba(7, 9, 8, 0.84);
            border-bottom: 1px solid rgba(216, 200, 154, 0.16);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
        }

        .header.scrolled {
            padding: 10px 0;
            background: rgba(7, 9, 8, 0.96);
        }

        .logo {
            font-size: 1.65rem;
        }

        .logo i {
            color: var(--vanilla-tan) !important;
        }

        .navbar li {
            margin: 0 10px;
        }

        .navbar a {
            font-size: 0.92rem;
            text-transform: uppercase;
        }

        .navbar a:after {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--vanilla-tan), transparent);
        }

        .navbar .btn-connect,
        .btn-connect-large,
        .discord-gradient,
        .hideaway-discord-btn,
        .copy-btn {
            border-radius: 8px;
            animation: none;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        .navbar .btn-connect,
        .btn-connect-large,
        .copy-btn {
            background: linear-gradient(135deg, #6f8057, #b3a06e);
        }

        .discord-gradient,
        .hideaway-discord-btn {
            background: linear-gradient(135deg, #5865f2, #3442b8);
        }

        .navbar .btn-connect:hover,
        .btn-connect-large:hover,
        .discord-gradient:hover,
        .hideaway-discord-btn:hover,
        .copy-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(216, 200, 154, 0.24);
        }

        .main-hero {
            min-height: 78vh;
            padding: 118px 0 42px;
            isolation: isolate;
        }

        .main-hero::before {
            content: '';
            position: absolute;
            inset: 74px clamp(16px, 5vw, 84px) 30px;
            background:
                linear-gradient(rgba(216, 200, 154, 0.34), rgba(216, 200, 154, 0.34)) left top / 128px 1px no-repeat,
                linear-gradient(rgba(216, 200, 154, 0.34), rgba(216, 200, 154, 0.34)) left top / 1px 76px no-repeat,
                linear-gradient(rgba(216, 200, 154, 0.34), rgba(216, 200, 154, 0.34)) right top / 128px 1px no-repeat,
                linear-gradient(rgba(216, 200, 154, 0.34), rgba(216, 200, 154, 0.34)) right top / 1px 76px no-repeat,
                linear-gradient(rgba(216, 200, 154, 0.2), rgba(216, 200, 154, 0.2)) left bottom / 88px 1px no-repeat,
                linear-gradient(rgba(216, 200, 154, 0.2), rgba(216, 200, 154, 0.2)) left bottom / 1px 52px no-repeat,
                linear-gradient(rgba(216, 200, 154, 0.2), rgba(216, 200, 154, 0.2)) right bottom / 88px 1px no-repeat,
                linear-gradient(rgba(216, 200, 154, 0.2), rgba(216, 200, 154, 0.2)) right bottom / 1px 52px no-repeat;
            opacity: 0.72;
            pointer-events: none;
            z-index: -1;
        }

        .hero-shell {
            width: 100%;
            max-width: none;
            margin-left: 0;
            margin-right: 0;
            padding-left: 0;
            padding-right: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-hero-content {
            width: 100%;
            max-width: 1160px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            transform: none;
        }

        .main-title,
        .main-subtitle,
        .vanilla-animation-container,
        .hero-intel-strip {
            margin-left: auto;
            margin-right: auto;
        }

        .vanilla-moving-text {
            font-size: 2.1rem;
            border-radius: 4px;
            padding: 10px 24px;
            color: var(--vanilla-tan);
            background:
                linear-gradient(135deg, rgba(8, 10, 10, 0.9), rgba(21, 27, 20, 0.78)),
                repeating-linear-gradient(90deg, rgba(216, 200, 154, 0.06) 0 1px, transparent 1px 7px);
            border: 1px solid rgba(216, 200, 154, 0.26);
            box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
            text-shadow: 0 8px 24px rgba(0, 0, 0, 0.72);
        }

        .title-line-1 {
            font-size: 4.4rem;
            line-height: 0.98;
        }

        .title-line-2 {
            font-size: 1.6rem;
            color: #e8dcc0;
            text-shadow: none;
        }

        .main-subtitle {
            max-width: 760px;
            color: rgba(244, 241, 232, 0.86);
            font-family: 'Poppins', sans-serif;
            font-size: 1.18rem;
        }

        .hero-intel-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 0 auto 28px;
            max-width: 840px;
        }

        .hero-intel-strip span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 38px;
            padding: 8px 14px;
            border: 1px solid rgba(216, 200, 154, 0.2);
            border-radius: 4px;
            background:
                linear-gradient(180deg, rgba(13, 17, 14, 0.82), rgba(5, 7, 6, 0.72)),
                repeating-linear-gradient(90deg, rgba(216, 200, 154, 0.04) 0 1px, transparent 1px 8px);
            color: rgba(244, 241, 232, 0.9);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            backdrop-filter: blur(12px);
        }

        .hero-intel-strip i {
            color: var(--vanilla-tan);
        }

        .unified-notice,
        .vanilla-banner,
        .stat-box,
        .server-info-box,
        .community-card,
        .live-player-container,
        .connect-box,
        .trailer-container,
        .connect-details {
            border-radius: 8px;
        }

        .unified-notice {
            max-width: 820px;
            margin: 0 auto 44px;
            background: rgba(10, 14, 13, 0.72);
            border-color: rgba(216, 200, 154, 0.18);
            box-shadow: var(--neon-glow);
        }

        .server-info-section,
        .server-stats,
        .trailer-section,
        .connect-section,
        .community-overview-section {
            background:
                linear-gradient(180deg, rgba(7, 9, 8, 0.58), rgba(7, 9, 8, 0.48)),
                rgba(7, 9, 8, 0.34);
        }

        .server-info-section > .container,
        .server-stats > .container,
        .trailer-section > .container,
        .connect-section > .container,
        .community-overview-section > .container,
        .footer > .container {
            position: relative;
            z-index: 2;
        }

        .community-overview-section {
            position: relative;
            z-index: 1;
            padding: 76px 0 92px;
            border-top: 1px solid rgba(216, 200, 154, 0.12);
        }

        .community-overview-section::before,
        .server-info-section::before,
        .server-stats::before,
        .trailer-section::before,
        .connect-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(216, 200, 154, 0.035) 1px, transparent 1px),
                linear-gradient(rgba(216, 200, 154, 0.025) 1px, transparent 1px);
            background-size: 68px 68px;
            mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
            pointer-events: none;
            opacity: 0.34;
        }

        .community-card,
        .server-info-box,
        .stat-box,
        .live-player-container,
        .connect-box,
        .vanilla-banner {
            background: var(--panel-bg);
            border: 1px solid var(--panel-line);
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
            position: relative;
            overflow: hidden;
        }

        .community-card::after,
        .server-info-box::after,
        .stat-box::after,
        .live-player-container::after,
        .connect-box::after,
        .vanilla-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(216, 200, 154, 0.06), transparent 34%, rgba(111, 128, 87, 0.05));
            pointer-events: none;
            opacity: 0.7;
        }

        .community-card:hover,
        .server-info-box:hover,
        .stat-box:hover {
            transform: translateY(-6px);
            border-color: rgba(216, 200, 154, 0.42);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(216, 200, 154, 0.12);
        }

        .community-card::before,
        .server-info-box::before,
        .stat-box::before {
            background: linear-gradient(90deg, transparent, rgba(143, 179, 193, 0.14), transparent);
        }

        .community-icon,
        .stat-icon {
            font-size: 2.8rem;
            margin-bottom: 18px;
        }

        .community-stat {
            margin: 0 14px;
        }

        .community-stat-value,
        .stat-value,
        .player-count-number {
            color: #e0d1a8;
        }

        .section-title h2,
        .trailer-header h2 {
            color: #f4f1e8;
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
        }

        .section-title h2:after,
        .title-line-2::after {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(216, 200, 154, 0.8), transparent);
        }

        .live-player-container {
            max-width: 860px;
            margin: 0 auto;
            background:
                linear-gradient(135deg, rgba(10, 14, 13, 0.94), rgba(31, 47, 42, 0.82)),
                var(--panel-bg-strong);
        }

        .live-player-header {
            border-bottom: 1px solid rgba(216, 200, 154, 0.14);
            padding-bottom: 18px;
            margin-bottom: 28px;
        }

        .player-progress {
            height: 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        .player-progress-bar {
            background: linear-gradient(90deg, #6f8057, #d8c89a, #8fb3c1);
            border-radius: inherit;
        }

        .connect-box {
            border-width: 1px;
            background:
                linear-gradient(135deg, rgba(8, 10, 10, 0.96), rgba(31, 47, 42, 0.74)),
                var(--panel-bg-strong);
        }

        .connect-details {
            display: grid;
            gap: 10px;
            background: rgba(0, 0, 0, 0.24);
            border-color: rgba(216, 200, 154, 0.16);
        }

        .connect-details p {
            margin: 0;
            padding: 10px 0;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
        }

        .trailer-container {
            border-width: 1px;
            box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
        }

        .footer {
            background: rgba(5, 7, 7, 0.96);
            border-top: 1px solid rgba(216, 200, 154, 0.16);
        }

        @media (max-width: 992px) {
            .main-hero-content {
                transform: none;
            }

            .title-line-1 {
                font-size: 3.35rem;
            }

            .title-line-2 {
                font-size: 1.35rem;
            }

            .hero-intel-strip {
                max-width: 620px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 10px 0;
            }

            .main-hero {
                min-height: auto;
                padding-top: 104px;
                padding-bottom: 38px;
            }

            .main-hero-content {
                transform: none;
            }

            .title-line-1 {
                font-size: 2.65rem;
            }

            .title-line-2 {
                font-size: 1.12rem;
            }

            .main-subtitle {
                font-size: 1rem;
                line-height: 1.55;
            }

            .hero-intel-strip {
                gap: 8px;
                margin-bottom: 20px;
            }

            .hero-intel-strip span {
                flex: 1 1 calc(50% - 8px);
                justify-content: center;
                padding: 8px 10px;
                font-size: 0.78rem;
            }

            .section-title h2,
            .trailer-header h2,
            .connect-box h2 {
                font-size: 2rem;
            }

            .server-info-section,
            .server-stats,
            .trailer-section,
            .connect-section,
            .community-overview-section {
                padding: 64px 0;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Gameplay-focused panels */
        .live-metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 28px;
        }

        .live-metric {
            min-height: 74px;
            padding: 14px 16px;
            border: 1px solid rgba(216, 200, 154, 0.16);
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.22);
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
        }

        .live-metric span {
            color: rgba(244, 241, 232, 0.58);
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .live-metric strong {
            color: #f4f1e8;
            font-size: 1.02rem;
            margin-top: 4px;
        }

        .connect-console {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            padding: 18px;
        }

        .connect-row {
            min-height: 74px;
            padding: 14px 16px;
            border: 1px solid rgba(216, 200, 154, 0.14);
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.12));
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
        }

        .connect-row-wide {
            grid-column: 1 / -1;
        }

        .connect-row span {
            color: rgba(244, 241, 232, 0.56);
            font-size: 0.76rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .connect-row strong {
            color: #f4f1e8;
            font-size: 1rem;
            line-height: 1.35;
            overflow-wrap: anywhere;
        }

        .connect-row a {
            color: var(--vanilla-tan);
            text-decoration: none;
        }

        .connect-action-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 12px;
            margin-top: 24px;
        }

        .connect-action-grid .btn-connect-large,
        .connect-action-grid .copy-btn {
            width: 100%;
            min-width: 0;
            margin: 0;
            min-height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 14px;
            font-size: 0.95rem;
        }

        .primary-action {
            background: linear-gradient(135deg, #8aa06c, #d8c89a) !important;
            color: #10130f !important;
        }

        .connect-hint {
            margin-top: 20px;
            color: rgba(244, 241, 232, 0.68);
            font-size: 0.95rem;
        }

        .connect-hint p {
            margin-bottom: 6px;
        }

        .mod-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 16px;
        }

        .mod-card {
            grid-column: span 3;
            min-height: 210px;
            padding: 24px;
            border: 1px solid rgba(216, 200, 154, 0.16);
            border-radius: 8px;
            background:
                linear-gradient(135deg, rgba(10, 14, 13, 0.92), rgba(31, 47, 42, 0.58)),
                rgba(8, 10, 10, 0.86);
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .mod-card:nth-child(3),
        .mod-card:nth-child(4),
        .mod-card:nth-child(5) {
            grid-column: span 2;
        }

        .mod-card:hover {
            transform: translateY(-5px);
            border-color: rgba(216, 200, 154, 0.38);
            box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
        }

        .mod-card-header {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 18px;
        }

        .mod-card-header i {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            background: rgba(216, 200, 154, 0.1);
            border: 1px solid rgba(216, 200, 154, 0.18);
            color: var(--vanilla-tan);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex: 0 0 auto;
        }

        .mod-card-header h3 {
            margin: 0 0 4px;
            color: #f4f1e8;
            font-size: 1.15rem;
            line-height: 1.25;
        }

        .mod-card-header span {
            color: rgba(244, 241, 232, 0.62);
            font-size: 0.88rem;
        }

        .mod-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .mod-tags span {
            display: inline-flex;
            align-items: center;
            min-height: 32px;
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(216, 200, 154, 0.1);
            color: rgba(244, 241, 232, 0.82);
            font-size: 0.82rem;
            font-weight: 600;
        }

        @media (max-width: 992px) {
            .connect-action-grid {
                grid-template-columns: 1fr;
            }

            .mod-card,
            .mod-card:nth-child(3),
            .mod-card:nth-child(4),
            .mod-card:nth-child(5) {
                grid-column: span 6;
            }
        }

        @media (max-width: 768px) {
            .live-metrics-grid,
            .connect-console {
                grid-template-columns: 1fr;
            }

            .live-metric,
            .connect-row {
                min-height: 64px;
                text-align: center;
                align-items: center;
            }

            .mod-grid {
                gap: 12px;
            }

            .mod-card {
                min-height: auto;
                padding: 20px;
            }

            .mod-card-header {
                align-items: center;
            }
        }
