        /* TEMEL STİLLER */
        :root {
            --primary: #0a0a0a;
            --secondary: #1a1a1a;
            --accent: #ff6b35;
            --accent-light: #ff8e53;
            --accent-dark: #e55a2b;
            --text: #ffffff;
            --text-secondary: #b0b0b0;
            --card-bg: rgba(26, 26, 26, 0.95);
            --glass-bg: rgba(255, 107, 53, 0.15);
            --glass-border: rgba(255, 107, 53, 0.4);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            --shadow-hover: 0 25px 50px rgba(255, 107, 53, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            cursor: none;
        }

        /* VİDEO PLAYER STİLLERİ */
        .video-player-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        #gameTrailer {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-cover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: opacity 0.3s ease;
        }

        .video-cover.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .play-button-overlay {
            width: 100px;
            height: 100px;
            background: rgba(255, 107, 53, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            transition: all 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .video-cover:hover .play-button-overlay {
            transform: scale(1.1);
            background: rgba(255, 107, 53, 0.5);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        }

        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 3;
            opacity: 0;
            transform: translateY(100%);
            transition: all 0.3s ease;
        }

        .video-controls.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
        }

        .progress {
            height: 100%;
            background: var(--accent);
            width: 0%;
            transition: width 0.1s linear;
        }

        .control-buttons {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .left-controls, .right-controls {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .control-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
        }

        .control-btn:hover {
            background: rgba(255, 107, 53, 0.2);
            transform: scale(1.1);
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            width: 120px;
        }

        .volume-slider {
            width: 80px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }

        .volume-level {
            position: absolute;
            height: 100%;
            background: var(--accent);
            width: 100%;
            border-radius: 2px;
        }

        .time-display {
            font-size: 0.9rem;
            color: white;
            font-weight: 500;
            min-width: 100px;
            text-align: center;
        }

        /* OYUN MEDIA GÜNCELLEMESİ */
        .game-media {
            position: relative;
            width: 100%;
            height: 500px;
            background: #000;
            overflow: hidden;
            border-radius: 15px 15px 0 0;
        }

        .game-cover {
            display: none; /* Eski içeriği gizle */
        }

        /* RESPONSIVE VİDEO */
        @media (max-width: 1200px) {
            .game-media {
                height: 400px;
            }
            
            .play-button-overlay {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .game-media {
                height: 300px;
            }
            
            .play-button-overlay {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .video-controls {
                padding: 1rem;
            }
            
            .control-btn {
                font-size: 1rem;
                width: 35px;
                height: 35px;
            }
            
            .volume-control {
                width: 100px;
            }
            
            .time-display {
                min-width: 80px;
                font-size: 0.8rem;
            }
        }

        /* DİĞER STİLLER AYNI KALIYOR */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
            border-radius: 6px;
            border: 2px solid var(--secondary);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.4s ease;
            padding: 1rem 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            letter-spacing: -0.5px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            z-index: 1;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }

        .logo:hover::before {
            left: 100%;
        }

        .logo span {
            color: var(--accent);
            transition: all 0.4s ease;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.5rem 0;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--accent);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.3rem;
            color: var(--accent);
            background: none;
            border: none;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            transform: rotate(90deg);
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--primary);
            border: none;
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent-light), var(--accent));
        }

        .btn-secondary:hover {
            background: rgba(255, 107, 53, 0.1);
            border-color: var(--accent);
        }

        .btn .icon {
            transition: transform 0.3s ease;
        }

        .btn:hover .icon {
            transform: translateX(5px);
        }

        .games-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
        }

        .space-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
            pointer-events: none;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle 4s infinite alternate;
            will-change: transform, opacity;
        }

        .light-beam {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
            animation: pulseBeam 8s infinite alternate;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        @keyframes pulseBeam {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.1); }
        }

        .games-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            width: 100%;
            position: relative;
        }

        .games-badge {
            display: inline-block;
            background: var(--glass-bg);
            color: var(--accent);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            text-transform: uppercase;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 0.5s forwards;
        }

        .games-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -2px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 0.8s forwards;
        }

        .games-title span {
            color: var(--accent);
            display: block;
            position: relative;
            overflow: hidden;
            background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 3s infinite linear;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .games-subtitle {
            font-size: clamp(1rem, 3vw, 1.4rem);
            font-weight: 400;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 1.1s forwards;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 1.4s forwards;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .featured-game {
            padding: 8rem 5%;
            background: var(--primary);
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .featured-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .featured-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: start;
        }

        .game-showcase {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .game-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            padding: 2rem;
            background: var(--card-bg);
            border-top: 1px solid var(--glass-border);
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .game-info {
            padding: 3rem;
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .game-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.7s ease;
        }

        .game-info:hover::before {
            left: 100%;
        }

        .game-header {
            margin-bottom: 2rem;
        }

        .game-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1rem;
            font-family: 'Space Grotesk', sans-serif;
        }

        .game-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .game-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .game-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 107, 53, 0.05);
            border-radius: 10px;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255, 107, 53, 0.1);
            transform: translateX(5px);
        }

        .feature-icon {
            color: var(--accent);
            font-size: 1.2rem;
        }

        .system-requirements {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--glass-border);
        }

        .requirements-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .requirements-list {
            display: grid;
            gap: 0.5rem;
        }

        .requirement-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        }

        .requirement-label {
            color: var(--text-secondary);
        }

        .requirement-value {
            color: var(--text);
            font-weight: 600;
        }

        .game-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .action-btn {
            flex: 1;
            padding: 1.2rem 2rem;
            border-radius: 15px;
            text-decoration: none;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
            background: var(--accent);
            color: var(--primary);
        }

        .action-btn.secondary {
            background: transparent;
            color: var(--accent);
        }

        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .other-games {
            padding: 6rem 5%;
            background: var(--secondary);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .game-card {
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            will-change: transform;
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.7s ease;
            z-index: 1;
        }

        .game-card:hover::before {
            left: 100%;
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        .card-header {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
            will-change: transform;
        }

        .game-card:hover .card-image {
            transform: scale(1.1);
        }

        .card-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--accent);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .card-content {
            padding: 2rem;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1rem;
            font-family: 'Space Grotesk', sans-serif;
        }

        .card-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .card-features {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: rgba(255, 107, 53, 0.1);
            color: var(--accent);
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--glass-border);
        }

        .card-platforms {
            display: flex;
            gap: 0.5rem;
        }

        .platform-icon {
            width: 28px;
            height: 28px;
            background: var(--glass-bg);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: var(--accent);
            transition: all 0.3s ease;
        }

        .platform-icon:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .card-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
            font-weight: 600;
        }

        .rating-stars {
            color: #ffd700;
        }

        .games-stats {
            padding: 6rem 5%;
            background: var(--primary);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            background: var(--card-bg);
            padding: 3rem 2rem;
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent, var(--accent), transparent 30%);
            animation: rotate 4s linear infinite;
        }

        .stat-card::after {
            content: '';
            position: absolute;
            inset: 4px;
            background: var(--card-bg);
            border-radius: 16px;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
        }

        .stat-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-family: 'Space Grotesk', sans-serif;
            position: relative;
            z-index: 2;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }

        footer {
            background: var(--primary);
            padding: 6rem 5% 3rem;
            border-top: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-tagline {
            color: var(--text-secondary);
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--card-bg);
            color: var(--accent);
            text-decoration: none;
            transition: all 0.4s ease;
            border: 1px solid var(--glass-border);
            font-size: 1.3rem;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
            border-color: var(--accent);
        }

        .footer-divider {
            height: 1px;
            background: var(--glass-border);
            margin: 3rem 0;
            width: 100%;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .cursor {
            position: fixed;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--accent);
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease, width 0.15s ease, height 0.15s ease;
            mix-blend-mode: difference;
            will-change: transform, left, top;
            transform: translate3d(-50%, -50%, 0);
            display: none;
        }

        .cursor.hover {
            width: 40px;
            height: 40px;
            background: rgba(255, 107, 53, 0.3);
            border: 2px solid var(--accent);
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-badge.fade-in.visible,
        .section-title.fade-in.visible,
        .section-subtitle.fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            background: var(--glass-bg);
            color: var(--accent);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            border: 1px solid var(--glass-border);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--accent);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.4s;
        }

        @media (max-width: 1200px) {
            .featured-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                flex-direction: column;
                background: var(--primary);
                width: 80%;
                height: 100vh;
                padding: 8rem 2rem 2rem;
                transition: 0.5s ease;
                border-left: 1px solid var(--glass-border);
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .game-features {
                grid-template-columns: 1fr;
            }
            
            .game-actions {
                flex-direction: column;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
            }

            .cursor {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .footer-logo {
                font-size: 2.5rem;
            }
            
            .social-links {
                gap: 1rem;
            }
            
            .social-link {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 1024px) {
            .cursor {
                display: none !important;
            }
        }

        @media (min-width: 1025px) {
            .cursor {
                display: block;
            }
        }

        /* Çok Yakında Bölümleri */
        .coming-soon-showcase {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(10, 10, 10, 0.95));
            border-radius: 16px;
            overflow: hidden;
        }

        .coming-soon-glow {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent 70%);
            border-radius: 50%;
            animation: pulse-glow 3s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.3); opacity: 1; }
        }

        .coming-soon-main-icon {
            font-size: 4rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            z-index: 1;
        }

        .coming-soon-title {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            z-index: 1;
        }

        .coming-soon-text {
            color: var(--text-secondary);
            max-width: 500px;
            line-height: 1.7;
            z-index: 1;
        }

        .card-coming-soon-bg {
            width: 100%;
            height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(26, 26, 26, 0.95));
        }

        .card-coming-soon-bg i {
            font-size: 3rem;
            color: var(--accent);
            opacity: 0.7;
        }

        .card-coming-soon-label {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--primary);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }