@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ether-dark: #1a1423;
    --ether-mid: #2d1f3d;
    --ether-pink: #ff6b9d;
    --ether-coral: #ff8a5c;
    --ether-peach: #ffc3a0;
    --ether-light: #fff5f0;
    --text-bright: #ffffff;
    --text-muted: #c4b8cf;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--ether-dark);
    color: var(--text-bright);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Gradient Background */
.ether-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--ether-dark) 0%, var(--ether-mid) 50%, #3d2a54 100%);
    z-index: -2;
}

.ether-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 157, 0.12) 0%, transparent 50%);
    z-index: -1;
}

/* Header */
.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background: rgba(26, 20, 35, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.site-logo svg {
    width: 38px;
    height: 38px;
}

.site-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ether-pink), var(--ether-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 26px;
    height: 3px;
    background: var(--ether-pink);
    border-radius: 3px;
    transition: 0.3s;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--ether-pink);
}

/* Main */
main {
    padding-top: 75px;
}

/* Welcome Section */
.welcome-section {
    min-height: calc(100vh - 75px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.welcome-content {
    max-width: 850px;
    margin: 0 auto;
}

.welcome-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-content h1 .highlight {
    background: linear-gradient(135deg, var(--ether-pink), var(--ether-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.play-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--ether-pink), var(--ether-coral));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 25px rgba(255, 107, 157, 0.3);
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 157, 0.4);
}

/* Info Bubbles */
.info-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.bubble {
    background: rgba(45, 31, 61, 0.7);
    border-radius: 20px;
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    text-align: center;
    border: 1px solid rgba(255, 107, 157, 0.15);
    transition: all 0.3s;
}

.bubble:hover {
    border-color: rgba(255, 107, 157, 0.4);
    transform: translateY(-5px);
}

.bubble-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bubble h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--ether-peach), var(--ether-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bubble p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Game Display */
.game-display {
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.display-header {
    text-align: center;
    margin-bottom: 2rem;
}

.display-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--ether-peach), var(--ether-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-wrapper {
    background: rgba(45, 31, 61, 0.5);
    border-radius: 25px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.game-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
}

/* Features Row */
.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ether-coral);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Page Container */
.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-container h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--ether-pink), var(--ether-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-container h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ether-peach);
    margin: 2rem 0 1rem;
}

.page-container p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.page-container ul {
    color: var(--text-muted);
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-container li {
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background: rgba(26, 20, 35, 0.95);
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--ether-pink);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--ether-peach);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Age Modal */
.age-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 35, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal-overlay.hidden {
    display: none;
}

.age-modal-box {
    background: var(--ether-mid);
    border-radius: 25px;
    padding: 3rem;
    max-width: 450px;
    margin: 1rem;
    text-align: center;
    border: 2px solid var(--ether-pink);
}

.age-modal-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--ether-pink), var(--ether-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-modal-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.age-modal-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-modal-btns button {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.age-modal-btns .yes-btn {
    background: linear-gradient(135deg, var(--ether-pink), var(--ether-coral));
    border: none;
    color: white;
}

.age-modal-btns .yes-btn:hover {
    box-shadow: 0 5px 25px rgba(255, 107, 157, 0.4);
}

.age-modal-btns .no-btn {
    background: transparent;
    border: 2px solid var(--ether-pink);
    color: var(--ether-pink);
}

.age-modal-btns .no-btn:hover {
    background: rgba(255, 107, 157, 0.1);
}

/* Mobile Nav */
.mobile-nav-panel {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 20, 35, 0.98);
    padding: 2rem;
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 999;
}

.mobile-nav-panel.show {
    transform: translateY(0);
}

.mobile-nav-panel ul {
    list-style: none;
    text-align: center;
}

.mobile-nav-panel li {
    margin: 1.2rem 0;
}

.mobile-nav-panel a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.mobile-nav-panel a:hover {
    color: var(--ether-pink);
}

/* Responsive */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .info-bubbles {
        flex-direction: column;
        align-items: center;
    }

    .bubble {
        max-width: 100%;
    }

    .game-wrapper iframe {
        height: 420px;
    }

    .header-bar {
        padding: 1rem;
    }

    .site-logo span {
        font-size: 1.1rem;
    }
}
