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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #8B5CF6;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #8B5CF6, #A855F7, #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #A855F7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #A855F7;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 12rem 0 6rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #A855F7, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
    font-weight: 300;
}

.hero-description {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    border-color: #A855F7;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Games Grid */
.games {
    background: rgba(15, 15, 35, 0.3);
}

.games-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.games-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #A855F7;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-content {
    padding: 1.5rem;
    text-align: center;
}

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

.game-description {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.play-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.about-main p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-item {
    background: rgba(26, 26, 46, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-item:hover {
    border-color: #A855F7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.about-item h3 {
    color: #A855F7;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Features Grid */
.features-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.features-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

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

.feature-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: #A855F7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.feature-description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer {
    background: rgba(15, 15, 35, 0.5);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-main {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.disclaimer-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fbbf24;
}

.disclaimer-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.disclaimer-item {
    background: rgba(251, 191, 36, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-5px);
}

.disclaimer-item h3 {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.disclaimer-item p {
    color: #fde68a;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-page {
    padding-top: 8rem;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section,
.contact-info-section {
    background: rgba(26, 26, 46, 0.6);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #A855F7;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #A855F7;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #A855F7;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.5);
}

/* Contact Info */
.contact-info {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(15, 15, 35, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: #A855F7;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.9rem;
}

.contact-disclaimer {
    padding: 2rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.contact-disclaimer h3 {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-disclaimer p {
    color: #fde68a;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.9);
    padding: 3rem 0;
    border-top: 2px solid #8B5CF6;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #A855F7;
}

.footer-text {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Game Page Styles */
.game-page {
    min-height: 100vh;
    padding: 2rem 0;
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-page-description {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: 3px solid #8B5CF6;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    background: #000;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content {
    background: rgba(26, 26, 46, 0.6);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.legal-content h2 {
    color: #A855F7;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-details {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-points {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .hero-description,
    .games-description,
    .features-description,
    .contact-intro {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}