    :root {
            --primary-color: #6c5ce7;
            --secondary-color: #a29bfe;
            --dark-color: #2d3436;
            --light-color: #ddd6fe;
            --text-light: #636e72;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-nav .nav-link {
            color: var(--dark-color);
            font-weight: 500;
            margin: 0 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

        .hero-slider {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            background-repeat: no-repeat;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Portfolio Section */
        .portfolio-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .portfolio-item {
            margin-bottom: 150px;
            min-height: 60vh;
        }

        .portfolio-number {
            font-size: 8rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 0.8;
            margin-bottom: 20px;
            opacity: 0.7;
        }

        .portfolio-text {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 300px;
        }

        .portfolio-image {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .portfolio-image:hover {
            transform: translateY(-10px);
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-image:hover img {
            transform: scale(1.05);
        }

        /* Characters Section */
        .characters-section {
            padding: 100px 0;
            background: var(--dark-color);
            color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .character-card {
            text-align: center;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }

        .character-card:hover {
            transform: translateY(-15px);
        }

        .character-image {
            width: 250px;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            margin: 0 auto 20px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .character-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .character-image:hover img {
            transform: scale(1.1);
        }

        .character-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--light-color);
        }

        .view-all-btn {
            background: var(--gradient-primary);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
        }

        .view-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
            color: white;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.5s ease;
            border: 1px solid rgba(108, 92, 231, 0.2);
        }

        .cookie-banner.show {
            transform: translateY(0);
            opacity: 1;
        }

        .cookie-banner p {
            margin: 0 0 15px 0;
            color: var(--dark-color);
            font-size: 0.95rem;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 8px 20px;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: var(--gradient-primary);
            color: white;
        }

        .cookie-decline {
            background: transparent;
            color: var(--text-light);
            border: 1px solid var(--text-light);
        }

        .cookie-btn:hover {
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .portfolio-number {
                font-size: 5rem;
            }

            .portfolio-image {
                height: 300px;
                margin-top: 30px;
            }

            .character-image {
                width: 200px;
                height: 280px;
            }

            .cookie-banner {
                left: 10px;
                right: 10px;
                bottom: 10px;
            }
        }
        .footer {
            background-color: var(--secondary-black);
            padding: 50px 0;
            text-align: center;
            border-top: 2px solid var(--primary-yellow);
        }

        .footer-company {
            font-size: 2rem;
            color: var(--primary-yellow);
            font-weight: bold;
            margin-bottom: 20px;
            animation: glow 3s ease-in-out infinite alternate;
        }

        .footer-text {
            color: var(--text-gray);
            font-size: 1rem;
        }
        footer a {
            color: rgb(43, 43, 43);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        footer a:hover {
            font-weight: 900;
        }
           .contact-form {
        padding: 100px 0;
        background: var(--dark-color);
        color: white;
      }

      .form-container {
        max-width: 600px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.1);
        padding: 50px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
      }

      .form-container h3 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2.5rem;
      }

      .form-group {
        margin-bottom: 25px;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
      }

      .form-group input {
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--dark-color);
        font-size: 1rem;
      }

      .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin: 30px 0;
      }

      .checkbox-group input[type="checkbox"] {
        width: auto;
        margin-top: 3px;
      }

      .checkbox-group label {
        flex: 1;
        margin-bottom: 0;
        font-size: 0.9rem;
      }

      .checkbox-group a {
        color: #fff;
        text-decoration: underline;
      }

      .submit-btn {
        width: 100%;
        padding: 15px;
        background: var(--gradient-primary);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease;
      }

      .submit-btn:hover {
        transform: translateY(-2px);
      }

      .submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
      }.thank-you-container {
            background: white;
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 100%;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 2rem;
        }

        .thank-you-container h1 {
            color: var(--dark-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .thank-you-container p {
            color: #64748b;
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .back-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .back-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            color: white;
        }

        @media (max-width: 768px) {
            .thank-you-container {
                padding: 40px 30px;
            }

            .thank-you-container h1 {
                font-size: 2rem;
            }
        }
         .games-showcase {
            padding: 60px 0;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .showcase-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .showcase-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .game-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .game-showcase-card {
            position: relative;
            height: 350px;
            border-radius: 25px;
            overflow: hidden;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .game-showcase-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(0, 0, 0, 0.8) 100%);
            z-index: 2;
            transition: all 0.4s ease;
        }

        .game-showcase-card:hover::before {
            background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
        }

        .game-showcase-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
        }

        .game-poster {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .game-showcase-card:hover .game-poster {
            transform: scale(1.1);
        }

        .game-info-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            z-index: 3;
            color: white;
        }

        .game-title-display {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transform: translateY(10px);
            transition: transform 0.4s ease;
        }

        .game-showcase-card:hover .game-title-display {
            transform: translateY(0);
        }

        .game-meta {
            font-size: 0.9rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            margin-top: 8px;
            color: rgba(255, 255, 255, 0.8);
        }

        .game-showcase-card:hover .game-meta {
            opacity: 1;
            transform: translateY(0);
        }

        .play-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 4;
        }

        .game-showcase-card:hover .play-indicator {
            transform: translate(-50%, -50%) scale(1);
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 16px solid white;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            margin-left: 4px;
        }

        .genre-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 3;
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .game-showcase-card:hover .genre-badge {
            transform: translateY(0);
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .game-gallery {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }

            .game-showcase-card {
                height: 280px;
                min-width: auto;
            }

            .showcase-title {
                font-size: 2.5rem;
            }

            .game-title-display {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .game-gallery {
                grid-template-columns: 1fr;
            }
            
            .game-showcase-card {
                height: 250px;
            }
        }