@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
    --soft-pink: #F8BBD9;
    --lavender: #E1BEE7;
    --deep-plum: #7B1FA2;
    --light-violet: #F3E5F5;
    --cream: #FFFDF9;
    --dark-text: #2D2A32;
    --soft-text: #5C5764;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--dark-text);
    line-height: 1.75;
}

h1, h2, h3 {
    font-family: 'Libre Baskerville', serif;
}

.header-bar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--cream);
    box-shadow: 0 2px 20px rgba(123, 31, 162, 0.08);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-circle {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    color: var(--deep-plum);
    font-weight: 700;
}

.logo-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    color: var(--deep-plum);
}

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

.desk-nav a {
    color: var(--soft-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.desk-nav a:hover {
    color: var(--deep-plum);
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon span {
    width: 26px;
    height: 3px;
    background: var(--deep-plum);
    border-radius: 3px;
    transition: 0.3s;
}

.menu-icon.open span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-icon.open span:nth-child(2) {
    opacity: 0;
}

.menu-icon.open span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mob-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: var(--light-violet);
    padding: 5rem 2rem;
    z-index: 999;
    transition: right 0.4s;
}

.mob-nav.show {
    right: 0;
}

.mob-nav a {
    display: block;
    color: var(--deep-plum);
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(123, 31, 162, 0.15);
}

.intro-area {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, var(--light-violet) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
}

.intro-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.intro-copy h1 {
    font-size: 3rem;
    line-height: 1.25;
    color: var(--deep-plum);
    margin-bottom: 1.5rem;
}

.intro-copy > p {
    font-size: 1.1rem;
    color: var(--soft-text);
    margin-bottom: 2rem;
    max-width: 460px;
}

.btn-set {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-soft {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.btn-soft-fill {
    background: linear-gradient(135deg, var(--deep-plum), #9C27B0);
    color: white;
    box-shadow: 0 8px 25px rgba(123, 31, 162, 0.3);
}

.btn-soft-fill:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(123, 31, 162, 0.4);
}

.btn-soft-line {
    border: 2px solid var(--deep-plum);
    color: var(--deep-plum);
    background: transparent;
}

.btn-soft-line:hover {
    background: var(--deep-plum);
    color: white;
}

.perks-row {
    display: flex;
    gap: 2rem;
}

.perk {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--soft-text);
}

.perk-icon {
    font-size: 1.2rem;
}

.game-box {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(123, 31, 162, 0.15);
}

.game-box iframe {
    width: 100%;
    height: 460px;
    border: none;
    display: block;
}

.block-section {
    padding: 5rem 2rem;
}

.block-section.tinted {
    background: var(--light-violet);
}

.block-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.block-head {
    text-align: center;
    margin-bottom: 3rem;
}

.block-head h2 {
    font-size: 2.3rem;
    color: var(--deep-plum);
    margin-bottom: 0.75rem;
}

.block-head p {
    color: var(--soft-text);
    max-width: 500px;
    margin: 0 auto;
}

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

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(123, 31, 162, 0.08);
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--deep-plum);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--soft-text);
}

.notice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.notice-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--deep-plum);
}

.notice-box h3 {
    font-size: 1.15rem;
    color: var(--deep-plum);
    margin-bottom: 0.5rem;
}

.notice-box p {
    font-size: 0.95rem;
    color: var(--soft-text);
}

.foot-area {
    background: var(--deep-plum);
    color: white;
    padding: 3rem 2rem;
}

.foot-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

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

.foot-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.foot-links a:hover {
    color: var(--soft-pink);
}

.help-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 1.5rem;
}

.help-row a {
    color: var(--soft-pink);
    text-decoration: none;
    font-size: 0.85rem;
}

.help-row a:hover {
    text-decoration: underline;
}

.foot-note {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* Age Modal */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(45, 42, 50, 0.95);
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.age-modal.off {
    display: none;
}

.modal-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
}

.modal-card h2 {
    font-size: 1.7rem;
    color: var(--deep-plum);
    margin-bottom: 1rem;
}

.modal-card p {
    color: var(--soft-text);
    margin-bottom: 2rem;
}

.modal-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.modal-yes {
    background: linear-gradient(135deg, var(--deep-plum), #9C27B0);
    color: white;
}

.modal-no {
    background: var(--light-violet);
    color: var(--deep-plum);
}

.modal-btn:hover {
    transform: scale(1.05);
}

.denied-text {
    display: none;
    color: var(--deep-plum);
}

/* Inner Pages */
.pg-header {
    padding: 10rem 2rem 4rem;
    background: var(--light-violet);
    text-align: center;
}

.pg-header h1 {
    font-size: 2.6rem;
    color: var(--deep-plum);
    margin-bottom: 0.75rem;
}

.pg-header p {
    color: var(--soft-text);
    max-width: 480px;
    margin: 0 auto;
}

.pg-content {
    padding: 4rem 2rem;
}

.content-text {
    max-width: 820px;
    margin: 0 auto;
}

.content-text h2 {
    font-size: 1.6rem;
    color: var(--deep-plum);
    margin: 2rem 0 1rem;
}

.content-text h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.content-text p {
    color: var(--soft-text);
    margin-bottom: 1rem;
}

.content-text ul {
    color: var(--soft-text);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.game-area {
    max-width: 960px;
    margin: 0 auto;
}

.game-frame {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(123, 31, 162, 0.12);
}

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

.game-tips {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
}

.game-tips h3 {
    font-size: 1.1rem;
    color: var(--deep-plum);
    margin-bottom: 0.5rem;
}

.game-tips p {
    font-size: 0.95rem;
    color: var(--dark-text);
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .intro-copy > p {
        margin: 0 auto 2rem;
    }
    
    .btn-set {
        justify-content: center;
    }
    
    .perks-row {
        justify-content: center;
    }
    
    .feature-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notice-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desk-nav {
        display: none;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .mob-nav {
        display: block;
    }
    
    .intro-copy h1 {
        font-size: 2.3rem;
    }
    
    .feature-items {
        grid-template-columns: 1fr;
    }
    
    .game-box iframe {
        height: 380px;
    }
    
    .perks-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pg-header h1 {
        font-size: 2.2rem;
    }
    
    .game-frame iframe {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .header-flex {
        padding: 1rem;
    }
    
    .logo-label {
        font-size: 1.2rem;
    }
    
    .intro-area {
        padding: 7rem 1rem 3rem;
    }
    
    .block-section {
        padding: 3rem 1rem;
    }
    
    .modal-card {
        padding: 2rem 1.5rem;
    }
    
    .modal-btns {
        flex-direction: column;
    }
}
