@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #8b5cf6;
    --pink: #ec4899;
    --dark-purple: #5b21b6;
    --light-purple: #a78bfa;
    --yellow: #fbbf24;
    --dark: #1f2937;
    --light: #f9fafb;
    --white: #ffffff;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: var(--light);
    overflow-x: hidden;
}

/* Header with Asymmetric Design */
.header-wrapper {
    background: linear-gradient(120deg, var(--dark-purple), var(--purple), var(--pink));
    padding: 2rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    position: relative;
    z-index: 100;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-icon {
    width: 65px;
    height: 65px;
    background: var(--yellow);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-purple);
}

.brand-area h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 1.6rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--yellow);
    color: var(--dark-purple);
    transform: translateY(-3px);
}

.nav-toggle {
    display: none;
    background: var(--yellow);
    border: none;
    padding: 0.7rem;
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark-purple);
    margin: 5px 0;
}

/* Asymmetric Content Layout */
.content-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section with Diagonal Cut */
.hero-block {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    padding: 4rem 3rem;
    margin: 2rem 0;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    text-align: center;
}

.hero-block h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-block p {
    font-size: 1.25rem;
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto 1rem;
}

/* Skewed Notice Box */
.notice-block {
    background: linear-gradient(135deg, var(--yellow), #f59e0b);
    padding: 2.5rem 3rem;
    margin: 2rem 0;
    transform: skewY(-2deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notice-inner {
    transform: skewY(2deg);
}

.notice-block h3 {
    color: var(--dark-purple);
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.notice-block ul {
    list-style: none;
}

.notice-block li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.notice-block li:before {
    content: "★";
    position: absolute;
    left: 0;
    font-size: 2rem;
    color: var(--purple);
}

/* Game Container with Offset */
.game-container {
    background: var(--dark);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.4);
    position: relative;
}

.game-container::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: 30px;
    z-index: -1;
}

.game-container h3 {
    font-size: 2.8rem;
    color: var(--yellow);
    margin-bottom: 2rem;
    font-weight: 800;
}

.game-container iframe {
    width: 100%;
    max-width: 850px;
    height: 650px;
    border: none;
    border-radius: 20px;
}

/* Asymmetric Feature Boxes */
.features-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: linear-gradient(135deg, var(--dark-purple), var(--purple));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.feature-item:nth-child(odd) {
    transform: translateY(20px);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.feature-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-item h3 {
    color: var(--yellow);
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Content Sections */
.text-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    margin: 2rem 0;
    border-left: 6px solid var(--pink);
    border-radius: 15px;
}

.text-section h2 {
    color: var(--yellow);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.text-section h3 {
    color: var(--light-purple);
    font-size: 2rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.text-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

.text-section ul,
.text-section ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.text-section li {
    margin: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer */
.footer-area {
    background: linear-gradient(135deg, var(--dark-purple), var(--dark));
    padding: 3rem 2rem;
    margin-top: 4rem;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    text-align: center;
}

.footer-area h3 {
    color: var(--yellow);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

/* Age Verification Popup */
.age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 41, 55, 0.98);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-popup.show {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    padding: 4rem;
    border-radius: 30px;
    max-width: 600px;
    margin: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.age-box h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 800;
}

.age-box p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.age-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-actions button {
    padding: 1.3rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    transition: all 0.3s ease;
}

.btn-proceed {
    background: var(--yellow);
    color: var(--dark-purple);
}

.btn-proceed:hover {
    background: #fcd34d;
    transform: scale(1.1);
}

.btn-leave {
    background: var(--dark);
    color: var(--white);
}

.btn-leave:hover {
    background: #111827;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: var(--dark-purple);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        gap: 0;
    }

    .nav-menu.open {
        right: 0;
    }

    .hero-block h2 {
        font-size: 2.2rem;
    }

    .hero-block p {
        font-size: 1.1rem;
    }

    .game-container iframe {
        height: 450px;
    }

    .feature-item:nth-child(odd) {
        transform: translateY(0);
    }

    .age-actions {
        flex-direction: column;
    }
}
