
    @font-face {
  font-family: "Teachers";
  src: url('/fonts/Teachers-Medium.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Teachers;
            background: #0a0a0a;
            color: white;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(139,69,19,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139,69,19,0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(139,69,19,0.1) 0%, transparent 50%);
            z-index: -1;
        }

        /* Header Styles */
        .header {
            background: rgba(0, 0, 0, 0.9);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #D20C20;
        }

        /* Hero Section */
        .hero {
            padding: 6rem 0;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: bold;
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 500px;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .character-container {
            position: relative;
            width: 450px;
            height: 450px;
        }

        .purple-circle {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #b40cd2, #d20c6c);
            border-radius: 50%;
            position: absolute;
            top: 0;
            left: 0;
        }

.character-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background-image: url('/images/'); 
    background-position: center;
    background-size: contain; 
    background-repeat: no-repeat;
    z-index: 2;

}
        /* Play Button */
        .play-button {
            background: linear-gradient(135deg, #D20C20, #D20C20);
            color: white;
            border: none;
            padding: 1.2rem 4rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .play-button:hover {
            background: linear-gradient(135deg, #9333ea, #6d28d9);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
        }

        /* Games Section */
        .games-section {
            padding: 6rem 0;
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .games-title {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 4rem;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .game-card {
            background: transparent;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .game-card:hover {
            transform: translateY(-8px);
        }

        .game-image {
            width: 100%;
            height: 280px;
            background-size: cover;
            background-position: center;
            border-radius: 16px;
            margin-bottom: 1.5rem;
        }


        .game-info {
            text-align: center;
        }

        .game-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: white;
        }

        .game-play-button {
            width: 100%;
            background: linear-gradient(135deg, #D20C20, #D20C20);
            color: white;
            border: none;
            padding: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .game-play-button:hover {
            background: linear-gradient(135deg, #9333ea, #6d28d9);
        }

        /* Special white button for Wild Wild Vegas */
        .game-card:nth-child(2) .game-play-button {
            background: white;
            color: #333;
        }

        .game-card:nth-child(2) .game-play-button:hover {
            background: #f0f0f0;
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.95);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-disclaimer {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            max-width: 1000px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding-top: 2rem;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }

        .footer-nav {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #D20C20;
        }

        .footer-logos {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: flex-end;
        }

        .footer-logo {
            height: 50px;
            opacity: 0.9;
        }

      .begambleaware-logo {
background: url('/images/link.png') no-repeat;
    background-size: contain;
    width: 180px;
    height: 40px;
}

.age-restriction-logo {
background: url('/images/19+.png') no-repeat;
    background-size: contain;
    width: 120px;
    height: 50px;
}

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .games-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .games-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .character-container {
                width: 300px;
                height: 300px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
            }

            .footer-nav {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

/* About Hero Section - Keep existing */
.about-hero {
    padding: 6rem 0;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-content h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-container {
    position: relative;
    width: 450px;
    height: 450px;
}

.purple-circle {
    width: 100%;
    height: 100%;
            background: linear-gradient(135deg, #b40cd2, #d20c6c);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.character-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
            background: url('{{ "assets/images/2.webp"|theme }}') center/cover;
    background-size: contain;
    background-repeat: no-repeat;
}

.play-button {
    background: linear-gradient(135deg, #D20C20, #D20C20);
    color: white;
    border: none;
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.play-button:hover {
    background: linear-gradient(135deg, #9333ea, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

/* Features Section - With background URL */
.features-section {
    padding: 0;
    margin: 4rem 0;
    background: url('/images/Photo1.png') center/cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(124, 58, 237, 0.6) 50%, rgba(217, 70, 239, 0.4) 100%);
    z-index: 1;
}

.features-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: white;
}

.feature-item {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-item:nth-child(1) {
    margin-bottom: 1rem;
}

.feature-item:nth-child(2) {
    margin-left: 2rem;
}

.feature-item:nth-child(3) {
    text-align: right;
    margin-right: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .features-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
 
    
    .features-text {
        gap: 1.5rem;
    }
    
    .feature-item {
        font-size: 1.2rem;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .about-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .character-container {
        width: 300px;
        height: 300px;
    }
    
    .character-image {
        width: 250px;
        height: 250px;
    }
    
    .features-section {
        height: 400px;
    }
    

    
    .feature-item {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-content h1 {
        font-size: 2.5rem;
    }
    
    .features-section {
        height: 350px;
        margin: 2rem 0;
    }
    
    .features-container {
        padding: 1rem;
    }
}
 /* Play Page Content */
        .play-page {
            padding: 6rem 0;
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .play-title {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 4rem;
            color: white;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 6rem;
        }

        .game-card {
            background: transparent;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .game-card:hover {
            transform: translateY(-8px);
        }

        .game-image {
            width: 100%;
            height: 280px;
            background-size: cover;
            background-position: center;
            border-radius: 16px;
            margin-bottom: 1.5rem;
        }

        .game-card:nth-child(1) .game-image {
            background-image: url('');
            background-position: left top;
            background-size: cover;
        }

        .game-card:nth-child(2) .game-image {
            background-image: url('');
            background-position: center top;
            background-size: cover;
        }

        .game-card:nth-child(3) .game-image {
            background-image: url('');
            background-position: right top;
            background-size: cover;
        }

        .game-info {
            text-align: center;
        }

        .game-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: white;
        }
.game-play-button {
    display: inline-block;     
    width: 100%;
    background: linear-gradient(135deg, #D20C20, #D20C20);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;     
    text-decoration: none;    
    transition: all 0.3s ease;
}

.game-play-button:hover {
    background: linear-gradient(135deg, #9333ea, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}


        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .games-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .play-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .play-title {
                font-size: 2.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
            }

            .footer-nav {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .play-page {
                padding: 3rem 0;
            }

            .play-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .games-grid {
                gap: 1.5rem;
            }
        }

        /* Contact Hero Section */
        .contact-hero {
            padding: 6rem 0;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .contact-content h1 {
            font-size: 4rem;
            font-weight: bold;
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .contact-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 500px;
        }

        .contact-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .character-container {
            position: relative;
            width: 450px;
            height: 450px;
        }

        .purple-circle {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0c1cd2, #0cd2b8);
            border-radius: 50%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .character-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 350px;
            background: url('{{ "assets/images/2.webp"|theme }}') center/cover;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .play-button {
            background: linear-gradient(135deg, #D20C20, #D20C20);
            color: white;
            border: none;
            padding: 1.2rem 4rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .play-button:hover {
            background: linear-gradient(135deg, #9333ea, #6d28d9);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 4rem 0 6rem;
            position: relative;
            overflow: hidden;
        }

        .contact-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/images/form.png')  center/cover;
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0.3;
            z-index: 1;
        }
        .contact-form-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: white;
        }

        .form-input,
        .form-textarea {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 1rem;
            font-size: 1rem;
            color: white;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #D20C20;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-button {
            background: linear-gradient(135deg, #D20C20, #D20C20);
            color: white;
            border: none;
            padding: 1.2rem 2rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-button:hover {
            background: linear-gradient(135deg, #9333ea, #6d28d9);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
        }

        .submit-button:active {
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .contact-hero {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            
            .contact-content h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .contact-content h1 {
                font-size: 2.5rem;
            }

            .character-container {
                width: 300px;
                height: 300px;
            }

            .character-image {
                width: 250px;
                height: 250px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
            }

            .footer-nav {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .contact-hero {
                padding: 3rem 0;
            }

            .contact-content h1 {
                font-size: 2rem;
            }

            .contact-form-section {
                padding: 2rem 0 4rem;
            }
        }
                /* Terms Content */
        .terms-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .terms-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: white;
        }

        .terms-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .terms-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 2rem;
        }

        .terms-section {
            margin-bottom: 2.5rem;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #D20C20;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(168, 85, 247, 0.3);
        }

        .terms-text {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
        }

        .terms-list {
            list-style: none;
            padding-left: 1rem;
            margin: 1rem 0;
        }

        .terms-list li {
            position: relative;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
        }

        .terms-list li::before {
            content: '•';
            color: #D20C20;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .highlight {
            background: linear-gradient(135deg, #D20C20, #D20C20);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .back-button {
            background: linear-gradient(135deg, #D20C20, #D20C20);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 2rem;
        }

        .back-button:hover {
            background: linear-gradient(135deg, #9333ea, #6d28d9);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
        }


        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .terms-title {
                font-size: 2.5rem;
            }

            .terms-content {
                padding: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
            }

            .footer-nav {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .terms-container {
                padding: 2rem 1rem;
            }

            .terms-title {
                font-size: 2rem;
            }

            .terms-content {
                padding: 1.5rem;
            }
        }
        
            .game-hero {
        padding: 4rem 0;
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .game-content h1 {
        font-size: 4rem;
        font-weight: bold;
        line-height: 1.1;
        margin-bottom: 2rem;
        background: linear-gradient(135deg, #D20C20, #D20C20);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .game-content p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 3rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 500px;
    }

    .game-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .character-container {
        position: relative;
        width: 450px;
        height: 450px;
    }

    .purple-circle {
        width: 100%;
        height: 100%;
            background: linear-gradient(135deg, #b40cd2, #d20c6c);
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        animation: pulse 3s ease-in-out infinite;
    }

    .character-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 350px;
        height: 350px;
            background: url('{{ "assets/images/2.webp"|theme }}') center/cover;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .play-button {
        background: linear-gradient(135deg, #D20C20, #D20C20);
        color: white;
        border: none;
        padding: 1.2rem 4rem;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .play-button:hover {
        background: linear-gradient(135deg, #9333ea, #6d28d9);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
    }

    /* Game Interface Section */
    .game-interface {
        padding: 6rem 0;
        position: relative;
        overflow: hidden;
    }

    .game-screen {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }

    .game-frame-container {
        position: relative;
        width: 100%;
        height: 700px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .demo__iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 16px;
        background: #1a1a2e;
    }

    .game-fallback {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
    }

    .fallback-content {
        text-align: center;
        padding: 2rem;
    }

    .fallback-content h3 {
        font-size: 1.5rem;
        color: #D20C20;
        margin-bottom: 1rem;
    }

    .fallback-content p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .retry-button {
        background: linear-gradient(135deg, #D20C20, #D20C20);
        color: white;
        border: none;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .retry-button:hover {
        background: linear-gradient(135deg, #9333ea, #6d28d9);
        transform: translateY(-2px);
    }

    /* Game Features Section */
    .game-features {
        padding: 6rem 0;
        background: rgba(255, 255, 255, 0.02);
    }

    .features-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .features-title {
        text-align: center;
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 4rem;
        background: linear-gradient(135deg, #D20C20, #D20C20);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 2.5rem;
        text-align: center;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
        border-color: rgba(168, 85, 247, 0.3);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, #D20C20, #D20C20);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: bold;
    }

    .feature-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #D20C20;
    }

    .feature-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    @keyframes glow {
        0% { box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4); }
        100% { box-shadow: 0 10px 30px rgba(168, 85, 247, 0.8); }
    }

    /* Mobile Responsiveness */
    @media (max-width: 1024px) {
        .game-hero {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
        }
        
        .game-content h1 {
            font-size: 3rem;
        }

        .game-frame {
            height: 400px;
        }
    }

    @media (max-width: 768px) {
        .header-container {
            flex-direction: column;
            gap: 1rem;
        }

        .nav-menu {
            gap: 1.5rem;
        }

        .game-content h1 {
            font-size: 2.5rem;
        }

        .character-container {
            width: 300px;
            height: 300px;
        }

        .character-image {
            width: 250px;
            height: 250px;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        .footer-nav {
            flex-wrap: wrap;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .game-hero {
            padding: 3rem 0;
        }

        .game-content h1 {
            font-size: 2rem;
        }

        .game-interface {
            padding: 3rem 0;
        }

        .game-frame {
            height: 300px;
        }
    }