       @import url('https://fonts.googleapis.com/css2?family=Barriecito&display=swap');
       
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF5722;
            --primary-dark: #E64A19;
            --secondary: #4CAF50;
            --accent: #FFC107;
            --dark: #1A1A2E;
            --darker: #0F1419;
            --light: #F5F5F5;
            --text: #333333;
            --text-light: #777777;
        }

        body {
            font-family: 'Hind', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        a{
            text-decoration: none;
        }

        /* Header & Navigation */
        .hero-section {
            /* min-height: 100vh; */
            position: relative;
            padding: 0 2rem;
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                        url('../images/slot-demo2.webp');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            position: relative;
            z-index: 10;
        }

        .nav-brand h1 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            letter-spacing: 1px;
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
        }

        .nav-brand h1 span {
            color: var(--primary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1rem;
        }

        .nav-menu a:hover {
            color: var(--accent);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 100;
        }

        /* Hero Content */
        .hero-content {
            text-align: center;
            padding: 6rem 0;
            position: relative;
            z-index: 5;
        }

        .hero-title {
             font-family: "Barriecito", system-ui;
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
            line-height: 1.2;
            text-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
        }

        .hero-title span {
            color: var(--accent);
            display: block;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            letter-spacing: 1px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 87, 34, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid var(--accent);
        }

        .btn-secondary:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }

        /* Slot Cards */
        .slot-cards-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            perspective: 1000px;
        }

        .slot-card {
            width: 180px;
            height: 250px;
            border-radius: 15px;
            background: linear-gradient(145deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.8));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(108, 122, 137, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .slot-card.featured {
            width: 250px;
            height: 320px;
            transform: scale(1.05);
            border: 2px solid var(--accent);
            box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
            background: linear-gradient(145deg, rgba(255, 193, 7, 0.2), rgba(108, 122, 137, 0.8));
        }

        .slot-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .slot-card.featured:hover {
            transform: translateY(-15px) rotateX(5deg) scale(1.08);
        }

        .card-image {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
            border-radius: 10px;
        }

        .slot-card:hover .card-image img {
            transform: scale(1.05);
        }

        .side-img {
            height: 180px;
        }

        /* Background Effects */
        /* .background-effects {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .aurora-effect {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 87, 34, 0.05) 0%,
                transparent 30%,
                rgba(76, 175, 80, 0.1) 60%,
                transparent 90%
            );
            animation: aurora 8s ease-in-out infinite;
        }

        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(108, 122, 137, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(108, 122, 137, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        } */

        /* About Section */
        .about-section {
            background: var(--darker);
            padding: 6rem 2rem;
            position: relative;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .about-header {
            margin-bottom: 3rem;
        }

        .section-title {
             font-family: "Barriecito", system-ui;
            font-size: clamp(2rem, 6vw, 3.2rem);
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.6;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: linear-gradient(145deg, rgba(44, 62, 80, 0.3), rgba(52, 73, 94, 0.2));
            border: 1px solid rgba(108, 122, 137, 0.2);
            border-radius: 12px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 87, 34, 0.3);
            box-shadow: 0 15px 30px rgba(255, 87, 34, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .feature-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Company Values */
        .company-values {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .value-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            text-align: left;
            padding: 1.5rem;
            background: linear-gradient(145deg, rgba(44, 62, 80, 0.2), rgba(52, 73, 94, 0.1));
            border-radius: 10px;
            border: 1px solid rgba(108, 122, 137, 0.1);
            transition: all 0.3s ease;
        }

        .value-item:hover {
            border-color: rgba(255, 87, 34, 0.3);
            transform: translateX(10px);
        }

        .value-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
            color: var(--accent);
        }

        .value-content h4 {
            font-family: 'Poppins', sans-serif;
            color: white;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .value-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.5;
        }

        .cta-button-container {
            margin-top: 2rem;
        }

        .view-collections-btn {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
            padding: 15px 30px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            border-radius: 50px;
        }

        .view-collections-btn:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
        }

        .arrow {
            transition: transform 0.3s ease;
        }

        .view-collections-btn:hover .arrow {
            transform: translateX(5px);
        }

        /* Exclusive Games Section */
        .exclusive-games-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .exclusive-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .exclusive-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .header-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .decoration-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .decoration-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            position: relative;
        }

        .decoration-dot::before,
        .decoration-dot::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }
            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        .exclusive-games-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 2rem;
            padding: 1rem;
        }

        .exclusive-game-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(44, 62, 80, 0.3), rgba(52, 73, 94, 0.2));
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 280px;
        }

        .exclusive-game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
        }

        .game-wrapper {
            position: relative;
            padding-top: 140%; /* Aspect ratio */
        }

        .game-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .game-thumbnail img {
            width: 100%;
            height: 278px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .exclusive-game-card:hover .game-thumbnail img {
            transform: scale(1.1);
        }

        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, 
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.7) 30%,
                rgba(0, 0, 0, 0.4) 60%,
                rgba(0, 0, 0, 0.1) 100%
            );
            display: flex;
            align-items: center;
            padding: 2rem;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .exclusive-game-card:hover .game-overlay {
            opacity: 1;
        }

        .game-info {
            color: white;
            text-align: center;
            width: 100%;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .exclusive-game-card:hover .game-info {
            transform: translateY(0);
        }

        .game-info h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .game-info p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }

        .play-now-btn {
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .play-now-btn i {
            font-size: 1.1rem;
        }

        .play-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 87, 34, 0.4);
        }

        .game-link {
            text-decoration: none;
            color: inherit;
        }

        /* Featured Game Card */
        .exclusive-game-card.featured {
            grid-column: span 2;
            grid-row: span 2;
        }

        .featured .game-info h3 {
            font-size: 2rem;
        }

        .featured .game-info p {
            font-size: 1.2rem;
        }

        .featured .play-now-btn {
            padding: 15px 40px;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .exclusive-game-card.featured {
                grid-column: auto;
                grid-row: auto;
            }
            
            .featured .game-info h3 {
                font-size: 1.5rem;
            }
            
            .featured .game-info p {
                font-size: 1rem;
            }
            
            .featured .play-now-btn {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .exclusive-games-section {
                padding: 4rem 1rem;
            }
            
            .exclusive-games-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }
            
            .game-overlay {
                opacity: 1;
                background: linear-gradient(to top, 
                    rgba(0, 0, 0, 0.95) 0%,
                    rgba(0, 0, 0, 0.8) 30%,
                    rgba(0, 0, 0, 0.6) 60%,
                    rgba(0, 0, 0, 0.3) 100%
                );
            }
            
            .game-info {
                transform: translateY(0);
            }
        }

        @media (max-width: 480px) {
            .exclusive-games-grid {
                grid-template-columns: 1fr;
            }
            
            .game-info h3 {
                font-size: 1.3rem;
            }
            
            .game-info p {
                font-size: 0.9rem;
            }
        }

        /* Why Choose Us Section */
        .why-choose-us-section {
            background: var(--darker);
            padding: 6rem 2rem;
            position: relative;
        }

        .why-choose-us-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .why-choose-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .why-choose-us-card {
            background: linear-gradient(145deg, rgba(44, 62, 80, 0.5), rgba(52, 73, 94, 0.3));
            border: 1px solid rgba(108, 122, 137, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .why-choose-us-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
        }

        .why-choose-us-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
        }

        .why-choose-us-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            color: var(--accent);
        }

        .why-choose-us-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .why-choose-us-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Footer */
        .site-footer {
            background: var(--darker);
            padding: 4rem 2rem;
            border-top: 1px solid rgba(108, 122, 137, 0.2);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-disclaimer {
            margin-bottom: 2rem;
        }

        .footer-disclaimer h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .footer-disclaimer p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-nav {
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1rem;
        }

        .footer-nav a:hover {
            color: var(--accent);
        }

        .footer-responsible-gaming {
            margin-bottom: 2rem;
            color: var(--text-light);
            font-size: 0.95rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-responsible-gaming a {
            color: var(--accent);
            text-decoration: none;
        }

        .footer-logos {
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logos img {
            width: auto;
            height: 50px;
            max-width: 100%;
        }

        .footer-copyright {
            border-top: 1px solid rgba(108, 122, 137, 0.2);
            padding-top: 2rem;
            color: var(--text-light);
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .footer-copyright a{
            color: var(--accent);
            text-decoration: none;
        }
        .footer-copyright a:hover{
            color: #ffffff;
        }

        /* Animations */
        @keyframes glow {
            0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
            100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 87, 34, 0.3); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes aurora {
            0%, 100% { opacity: 0.3; transform: translateY(0px); }
            50% { opacity: 0.8; transform: translateY(-20px); }
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .slot-card {
                width: 160px;
                height: 230px;
            }

            .slot-card.featured {
                width: 220px;
                height: 290px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: rgba(15, 20, 25, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                transition: right 0.3s ease;
                z-index: 90;
            }

            .nav-menu.active {
                right: 0;
            }

            .hero-content {
                padding: 4rem 0 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .slot-cards-container {
                gap: 0.8rem;
            }

            .slot-card {
                width: 140px;
                height: 200px;
            }

            .slot-card.featured {
                width: 180px;
                height: 250px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .company-values {
                gap: 1.5rem;
            }

            .value-item {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .value-item:hover {
                transform: translateY(-5px);
            }

            .game-card {
                aspect-ratio: 1/1.2;
            }

            .game-overlay {
                opacity: 1;
                background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
            }
            .game-bg img {
                height: 280px;
            }
            .exclusive-game-card {
                height: 300px;
            }
            .game-thumbnail img {
                height: 295px;
            }
        }

        @media (max-width: 480px) {
            .hero-content, .about-section, .games-section, .why-choose-us-section {
                padding: 3rem 1rem;
            }
            .hero-section {
                padding: 0;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .slot-cards-container {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }

            .slot-card, .slot-card.featured {
                width: 45%;
                height: 180px;
            }

            .slot-card.featured {
                order: -1;
                width: 90%;
                height: 220px;
            }

            .section-title {
                font-size: 2rem;
            }

            .view-collections-btn, .game-btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .footer-nav {
                gap: 1rem;
            }

            .footer-logos {
                gap: 1rem;
            }

            .footer-logos img {
                height: 40px;
            }
        }

        @media (max-width: 360px) {
            .slot-card, .slot-card.featured {
                width: 100%;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }
        }


        /* Contact Section */

        .contact-section {
            padding: 2rem 1rem;
            background: linear-gradient(180deg, rgba(15,20,25,0.6), rgba(10,12,16,0.85));
            border-top: 1px solid rgba(255,255,255,0.03);
            margin: 3rem 0;
        }

        .contact-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }

        .contact-info {
            padding: 2.5rem;
        }

        .contact-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .contact-subtitle {
            color: rgba(255,255,255,0.85);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .info-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .info-card {
            display: flex;
            gap: 1rem;
            align-items: center;
            background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.03);
        }

        .info-icon {
            font-size: 1.6rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        .info-card h4 {
            margin: 0;
            color: var(--accent);
            font-size: 0.95rem;
        }

        .info-card p {
            margin: 0;
            color: rgba(255,255,255,0.85);
            font-size: 0.95rem;
        }

        .contact-note {
            margin-top: 1.5rem;
            color: rgba(255,255,255,0.75);
            font-size: 0.95rem;
        }

        /* Form styles */
        .contact-form-wrap {
            padding: 2.5rem;
            background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.03);
        }

        .contact-form .form-row {
            display: flex;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex: 1;
        }

        .contact-form label {
            color: rgba(255,255,255,0.85);
            font-size: 0.9rem;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 12px 14px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.06);
            background: rgba(0,0,0,0.45);
            color: #fff;
            outline: none;
            transition: box-shadow 0.2s ease, transform 0.15s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 10px rgba(255,87,34,0.12);
            transform: translateY(-2px);
            border-color: var(--primary);
        }

        .form-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-top: 0.5rem;
        }

        .submit-btn {
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 12px 26px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            box-shadow: 0 8px 24px rgba(255,87,34,0.18);
        }

        .reset-btn {
            background: transparent;
            color: var(--accent);
            padding: 10px 18px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.06);
            cursor: pointer;
        }

        /* Success message overlay (inline) */
        .contact-success {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, rgba(10,12,16,0.8), rgba(10,12,16,0.85));
            padding: 2rem;
            backdrop-filter: blur(6px);
            display: none;
        }

        .success-inner {
            text-align: center;
            color: white;
            max-width: 520px;
            background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.04);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .success-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .close-success {
            margin-top: 1rem;
            background: transparent;
            color: var(--accent);
            border: 1px solid rgba(255,255,255,0.06);
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
        }

        /* Responsive adjustments */
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .contact-title { font-size: 1.6rem; }
            .contact-form .form-row { flex-direction: column; }
        }

        /* game page */

         .game-page-section {
            padding: 4rem 2rem;
            text-align: center;
        }

        .game-page-section .game-title {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 900;
            color: white;
            margin-bottom: 2rem;
           font-family: "Barriecito", system-ui;
            text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
        }

        .game-iframe-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid #ff6b9d;
            box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
        }

        .game-iframe-container::before {
            content: '';
            display: block;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
        }

        .game-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        @media (max-width: 768px) {
            .game-page-section {
                padding: 3rem 1rem;
            }
        }


          /* policy page */
        .policy-content{
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
             box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        color:#f4f4f4 ;
        }

          .policy-content h3 {
        color: #e6dede;
      
        padding-bottom: 0.5rem;
        margin-top: 1.5rem;
      }
      .policy-content p {
        margin-bottom: 1rem;
        text-align: justify;
      }
      .policy-content ul {
        list-style: disc;
        margin-left: 2rem;
        margin-bottom: 1rem;
      }
      .policy-content ul li {
        margin-bottom: 0.5rem;
      }
