        :root {
            --primary-dark: #0a0e1a;
            --secondary-dark: #1a1f2e;
            --accent-orange: #ff6b35;
            --accent-blue: #4a90e2;
            --text-light: #e8eaed;
            --text-muted: #9aa0a6;
            --gradient-bg: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
            --card-bg: rgba(26, 31, 46, 0.8);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--gradient-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 14, 26, 0.95);
            border-top: 2px solid var(--accent-orange);
            padding: 20px;
            z-index: 1000;
            backdrop-filter: blur(10px);
            display: block;
        }

        .cookie-banner.hidden {
            display: none;
        }

        /* Header & Navigation */
        .navbar {
            background: rgba(10, 14, 26, 0.95) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 107, 53, 0.2);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--accent-orange) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--accent-orange), var(--accent-blue));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: radial-gradient(ellipse at center, #1a1f2e 0%, #0a0e1a 70%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.3) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.2)"/><circle cx="12" cy="8" r="0.3" fill="rgba(255,107,53,0.3)"/><circle cx="6" cy="15" r="0.4" fill="rgba(74,144,226,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
            animation: twinkle 20s ease-in-out infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Orbitron', monospace;
            font-size: 5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c42 30%, var(--accent-blue) 70%, #6bb6ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
            animation: glow 4s ease-in-out infinite alternate;
            line-height: 1.1;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5)); }
            to { filter: drop-shadow(0 0 30px rgba(74, 144, 226, 0.7)); }
        }

        .hero-subtitle {
            font-family: 'Orbitron', monospace;
            font-size: 1.2rem;
            color: var(--accent-blue);
            margin-bottom: 2rem;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 1.4rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            background: linear-gradient(45deg, var(--accent-orange), #ff8c42);
            border: none;
            padding: 18px 45px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::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;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
            color: white;
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid var(--accent-blue);
            color: var(--accent-blue);
            box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
        }

        .cta-secondary:hover {
            background: var(--accent-blue);
            color: white;
            box-shadow: 0 20px 50px rgba(74, 144, 226, 0.4);
        }

        .hero-visual {
            position: absolute;
            right: -10%;
            top: 50%;
            transform: translateY(-50%);
            width: 40%;
            height: 60%;
            opacity: 0.1;
            background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 6s ease-in-out infinite;
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--accent-orange);
        }

        .card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 107, 53, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            p{
                color: whitesmoke;
            }
        }

        .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.5s ease;
        }

        .card:hover::before {
            left: 100%;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--accent-orange);
        }

        .card h3 {
            color: var(--accent-blue);
            margin-bottom: 1rem;
            font-family: 'Orbitron', monospace;
        }

        /* Interactive Rating */
        .rating-interactive {
            text-align: center;
            padding: 3rem 0;
        }

        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 2rem 0;
        }

        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .star:hover,
        .star.active {
            color: var(--accent-orange);
            transform: scale(1.2);
        }

        .rating-display {
            font-size: 1.5rem;
            margin-top: 1rem;
            color: var(--accent-blue);
        }

        /* Game Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 15px;
            border: 1px solid rgba(74, 144, 226, 0.2);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-10px);
            border-color: var(--accent-blue);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--accent-blue);
            margin-bottom: 1rem;
        }

        @keyframes pulse {
            0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.1; }
            50% { transform: translateY(-50%) scale(1.1); opacity: 0.2; }
        }

        /* Sticky Cards Section */
        .sticky-section {
            padding: 150px 0;
            background: var(--primary-dark);
        }

        .blocks__list {
            max-width: 800px;
            width: 100%;
            margin: auto;
            margin-bottom: 100px;
        }

        .block__item {
            border: 1px solid rgba(255, 107, 53, 0.3);
            color: white;
            padding: 50px 40px;
            border-radius: 25px;
            height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .block__item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(74, 144, 226, 0.05));
            z-index: -1;
        }

        .block__item:not(:last-child) {
            margin-bottom: 50px;
        }

        .block__item:hover {
            transform: translateY(-5px);
            border-color: var(--accent-orange);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .block__item:first-child {
            position: sticky;
            top: 20px;
            background: linear-gradient(135deg, #212A37 0%, #2a3441 100%);
            border-color: var(--accent-orange);
        }

        .block__item:nth-child(2) {
            position: sticky;
            top: 40px;
            background: linear-gradient(135deg, #232023 0%, #2d252d 100%);
            border-color: var(--accent-blue);
        }

        .block__item:nth-child(3) {
            position: sticky;
            top: 60px;
            background: linear-gradient(135deg, #11181C 0%, #1a2226 100%);
            border-color: #ff8c42;
        }

        .block__item:nth-child(4) {
            position: sticky;
            top: 80px;
            background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
            border-color: #6bb6ff;
        }

        .block__item:nth-child(5) {
            position: sticky;
            top: 100px;
            background: linear-gradient(135deg, #212427 0%, #2b2e31 100%);
            border-color: var(--accent-orange);
        }

        .block__item:nth-child(6) {
            position: sticky;
            top: 120px;
            background: linear-gradient(135deg, #191919 0%, #232323 100%);
            border-color: var(--accent-blue);
        }

        .block__item h3 {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent-orange);
        }

        .block__item:nth-child(2) h3,
        .block__item:nth-child(4) h3,
        .block__item:nth-child(6) h3 {
            color: var(--accent-blue);
        }

        .block__item p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-light);
        }

        .block__item .icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--accent-orange);
        }

        .block__item:nth-child(2) .icon,
        .block__item:nth-child(4) .icon,
        .block__item:nth-child(6) .icon {
            color: var(--accent-blue);
        }

        /* Progress Section */
        .progress-section {
            background: rgba(26, 31, 46, 0.5);
            padding: 4rem 0;
            margin: 3rem 0;
            border-radius: 20px;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .progress {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-bar {
            background: linear-gradient(45deg, var(--accent-orange), var(--accent-blue));
            transition: width 2s ease-in-out;
            border-radius: 10px;
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            padding: 3rem 0 1rem;
            border-top: 1px solid rgba(255, 107, 53, 0.2);
            text-align: center;
        }

        .footer-brand {
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
            color: var(--accent-orange);
            margin-bottom: 1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-orange);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            .block__item{
                height: fit-content;
            }
            .hero{
                margin-top: 20px;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
         .photo-gallery-section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .photo-gallery-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-title h2 {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--accent-orange), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .gallery-grid {
            position: relative;
            z-index: 2;
        }

        .photo-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .photo-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 107, 53, 0.3),
                0 0 40px rgba(255, 107, 53, 0.2);
        }

        .photo-wrapper {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
            filter: brightness(0.8) contrast(1.1);
        }

        .photo-card:hover img {
            transform: scale(1.1);
            filter: brightness(1) contrast(1.2);
        }

        .photo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                rgba(255, 107, 53, 0.8) 0%,
                rgba(74, 144, 226, 0.8) 100%
            );
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .photo-card:hover .photo-overlay {
            opacity: 1;
        }

        .overlay-icon {
            color: white;
            font-size: 2.5rem;
            transform: scale(0);
            transition: all 0.3s ease 0.1s;
        }

        .photo-card:hover .overlay-icon {
            transform: scale(1);
        }

        .photo-info {
            padding: 25px;
            text-align: center;
        }

        .photo-info h4 {
            color: var(--text-light);
            margin-bottom: 10px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .photo-info p {
            color: var(--text-muted);
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .photo-card.large {
            grid-row: span 2;
        }

        .photo-card.large .photo-wrapper {
            height: 400px;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--accent-orange);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(2) {
            background: var(--accent-blue);
            animation-delay: -2s;
            top: 20%;
            left: 80%;
        }

        .floating-element:nth-child(3) {
            background: var(--accent-orange);
            animation-delay: -4s;
            top: 60%;
            left: 10%;
            width: 4px;
            height: 4px;
        }

        .floating-element:nth-child(4) {
            background: var(--accent-blue);
            animation-delay: -1s;
            top: 80%;
            left: 70%;
            width: 8px;
            height: 8px;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .photo-gallery-section {
                padding: 80px 0;
            }
            
            .photo-wrapper {
                height: 220px;
            }
            
            .photo-card.large .photo-wrapper {
                height: 220px;
            }
        }