* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #6b46c1;
    --deep-purple: #553c9a;
    --mint: #5eead4;
    --cream: #faf8f3;
    --dark: #2d2d3a;
    --light-purple: #9f7aea;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.8;
    min-height: 100vh;
}

header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(107, 70, 193, 0.08);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 300;
    color: var(--purple);
    letter-spacing: 4px;
    text-transform: lowercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s;
    letter-spacing: 1px;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--purple);
}

nav a:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--purple);
    transition: all 0.3s;
}

main {
    padding: 0;
}

.intro-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.intro-section h1 {
    font-size: 4rem;
    font-weight: 200;
    color: var(--purple);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.intro-section p {
    font-size: 1.3rem;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.spacer {
    height: 5rem;
}

.minimal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 5rem 0;
}

.minimal-card {
    background: white;
    padding: 3rem;
    border-top: 3px solid var(--mint);
    transition: all 0.3s;
}

.minimal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
}

.minimal-card h3 {
    color: var(--purple);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.minimal-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 300;
}

.notice-minimal {
    background: var(--purple);
    color: white;
    padding: 4rem 3rem;
    margin: 5rem 0;
    text-align: center;
}

.notice-minimal h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.notice-minimal ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.notice-minimal li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(94, 234, 212, 0.2);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.notice-minimal li:last-child {
    border-bottom: none;
}

.notice-minimal li:before {
    content: '— ';
    color: var(--mint);
    margin-right: 1rem;
}

.game-display {
    background: white;
    padding: 4rem 3rem;
    margin: 5rem 0;
    border-top: 3px solid var(--purple);
    border-bottom: 3px solid var(--mint);
}

.game-display h2 {
    color: var(--purple);
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.game-display iframe {
    width: 100%;
    height: 700px;
    border: none;
    background: var(--cream);
}

.text-minimal {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.text-minimal h2 {
    color: var(--purple);
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.text-minimal p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 300;
}

footer {
    background: var(--deep-purple);
    color: white;
    padding: 4rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--mint);
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: white;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 70, 193, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: white;
    padding: 4rem;
    max-width: 500px;
    text-align: center;
}

.age-modal-content h2 {
    color: var(--purple);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 300;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    border: 2px solid var(--purple);
    background: var(--purple);
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.age-btn:hover {
    background: var(--deep-purple);
    border-color: var(--deep-purple);
}

.age-btn.no {
    background: white;
    color: var(--purple);
}

.age-btn.no:hover {
    background: var(--cream);
}

.terms-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.terms-content h1 {
    color: var(--purple);
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    border-bottom: 3px solid var(--mint);
    padding-bottom: 1rem;
}

.terms-content h2 {
    color: var(--purple);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.terms-content p {
    margin-bottom: 1.5rem;
    line-height: 2;
    font-size: 1.05rem;
    font-weight: 300;
}

.terms-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.terms-content li {
    margin-bottom: 1rem;
    line-height: 1.9;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        box-shadow: 0 10px 20px rgba(107, 70, 193, 0.1);
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .intro-section h1 {
        font-size: 2.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-display iframe {
        height: 500px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
