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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(124, 58, 237, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7C3AED, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(124, 58, 237, 0.2);
    color: #F59E0B;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #F59E0B;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7C3AED, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.3rem;
    color: #b0b0b0;
    font-weight: 300;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

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

.card h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.game-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.game-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #F59E0B;
}

.game-intro {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.features {
    margin-bottom: 3rem;
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #F59E0B;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #7C3AED;
}

.feature-item h4 {
    color: #F59E0B;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.responsible-gaming {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(245, 158, 11, 0.15));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    margin-bottom: 3rem;
}

.responsible-gaming h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #F59E0B;
    font-size: 2rem;
}

.responsible-gaming > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #b0b0b0;
}

.commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.commitment {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #F59E0B;
}

.commitment strong {
    color: #7C3AED;
    display: block;
    margin-bottom: 0.5rem;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #7C3AED;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.5);
}

.age-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #F59E0B;
}

.age-content p {
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-accept,
.btn-decline {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    color: white;
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.5);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.btn-decline:hover {
    background: rgba(255, 0, 0, 0.2);
}

footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgba(124, 58, 237, 0.3);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    color: #888;
}

.play-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 20px;
    margin-bottom: 2rem;
}

.play-header h1 {
    font-size: 2.5rem;
    color: #F59E0B;
    margin-bottom: 0.5rem;
}

.game-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #7C3AED;
}

.info-box h3 {
    color: #F59E0B;
    margin-bottom: 0.8rem;
}

.play-notice {
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.play-notice h2 {
    text-align: center;
    color: #F59E0B;
    margin-bottom: 1.5rem;
}

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

.notice-card {
    background: rgba(124, 58, 237, 0.1);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.notice-card strong {
    color: #F59E0B;
    display: block;
    margin-bottom: 0.5rem;
}

.legal-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.legal-content h1 {
    color: #F59E0B;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.updated {
    text-align: center;
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.terms-section h2 {
    color: #7C3AED;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.terms-section p {
    color: #b0b0b0;
    margin-bottom: 0.8rem;
}

.disclaimer-highlight {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(245, 158, 11, 0.15));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #F59E0B;
    margin-bottom: 2rem;
}

.disclaimer-highlight h2 {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.disclaimer-highlight p {
    color: #e0e0e0;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
        border-bottom: 2px solid rgba(124, 58, 237, 0.3);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .game-frame {
        height: 400px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .age-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
