@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --aether-void: #13111c;
    --aether-mist: #1e1b2e;
    --aether-purple: #7c3aed;
    --aether-lavender: #a78bfa;
    --aether-silver: #c4b5fd;
    --aether-white: #ede9fe;
    --aether-glow: #ddd6fe;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--aether-void);
    color: var(--aether-white);
    line-height: 1.8;
}

.ethereal-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(19, 17, 28, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.header-flex {
    max-width: 1800px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aether-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-orb {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, var(--aether-lavender), var(--aether-purple));
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--aether-silver);
    letter-spacing: 3px;
}

.ethereal-nav {
    display: flex;
    gap: 2.5rem;
}

.ethereal-nav a {
    font-family: 'Raleway', sans-serif;
    color: var(--aether-lavender);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s;
}

.ethereal-nav a:hover,
.ethereal-nav a.current {
    color: var(--aether-white);
    text-shadow: 0 0 15px var(--aether-lavender);
}

.mist-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mist-toggle span {
    width: 28px;
    height: 2px;
    background: var(--aether-lavender);
    border-radius: 2px;
    transition: 0.3s;
}

.mist-toggle.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mist-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mist-toggle.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mist-menu {
    display: none;
    background: var(--aether-mist);
    border-bottom: 1px solid var(--aether-purple);
}

.mist-menu.revealed {
    display: block;
}

.mist-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--aether-white);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.mist-menu a:hover {
    background: var(--aether-purple);
}

main {
    padding-top: 85px;
}

.ethereal-landing {
    min-height: 92vh;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(167, 139, 250, 0.1) 0%, transparent 45%),
        var(--aether-void);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
}

.ethereal-landing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.landing-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.landing-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 300;
    color: var(--aether-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.landing-content h1 em {
    color: var(--aether-lavender);
    font-style: normal;
}

.landing-content p {
    font-size: 1.15rem;
    color: var(--aether-silver);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.aether-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--aether-lavender);
    color: var(--aether-white);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    transition: all 0.4s;
}

.aether-btn:hover {
    background: var(--aether-purple);
    border-color: var(--aether-purple);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.mist-notices {
    padding: 5rem 2rem;
    background: var(--aether-mist);
}

.notices-row {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.notice-orb {
    background: var(--aether-void);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: 0.4s;
}

.notice-orb:hover {
    border-color: var(--aether-lavender);
    box-shadow: 0 0 40px rgba(167, 139, 250, 0.1);
}

.orb-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.notice-orb h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--aether-lavender);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.notice-orb p {
    color: var(--aether-silver);
    font-size: 0.95rem;
    font-weight: 300;
}

.game-ether {
    padding: 5rem 2rem;
    background: var(--aether-void);
}

.game-ether h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    color: var(--aether-white);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.game-vessel {
    max-width: 1300px;
    margin: 0 auto;
    border: 2px solid var(--aether-purple);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.2);
}

.game-vessel iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

.ether-aspects {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--aether-mist), var(--aether-void));
}

.aspects-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.aspect-card {
    background: rgba(30, 27, 46, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border-top: 3px solid var(--aether-lavender);
}

.aspect-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--aether-silver);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.aspect-card p {
    color: var(--aether-lavender);
    font-weight: 300;
}

.ether-footer {
    background: var(--aether-mist);
    border-top: 1px solid rgba(167, 139, 250, 0.2);
    padding: 3rem 2rem;
    text-align: center;
}

.ether-footer p {
    color: var(--aether-silver);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.realm-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.realm-links a {
    color: var(--aether-lavender);
    text-decoration: none;
    font-size: 0.9rem;
}

.realm-links a:hover {
    color: var(--aether-white);
}

.footer-whisper {
    color: var(--aether-silver);
    font-size: 0.85rem;
    font-weight: 300;
}

.inner-mist {
    padding: 7rem 2rem 3rem;
    background: var(--aether-mist);
    text-align: center;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.inner-mist h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--aether-white);
    letter-spacing: 3px;
}

.content-realm {
    padding: 4rem 2rem;
    background: var(--aether-void);
}

.realm-text {
    max-width: 880px;
    margin: 0 auto;
}

.realm-text h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--aether-lavender);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.realm-text p {
    color: var(--aether-silver);
    margin-bottom: 1rem;
    font-weight: 300;
}

.realm-text ul {
    list-style: none;
    margin: 1rem 0;
}

.realm-text li {
    color: var(--aether-silver);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 300;
}

.realm-text li::before {
    content: '◇';
    position: absolute;
    left: 0;
    color: var(--aether-lavender);
}

.age-veil {
    position: fixed;
    inset: 0;
    background: rgba(19, 17, 28, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-portal {
    background: var(--aether-mist);
    border: 2px solid var(--aether-purple);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
}

.age-portal h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--aether-silver);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.age-portal p {
    color: var(--aether-lavender);
    margin-bottom: 2rem;
    font-weight: 300;
}

.age-choice {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-choice button {
    padding: 0.9rem 2.5rem;
    border-radius: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.age-choice .pass {
    background: var(--aether-purple);
    border: none;
    color: white;
}

.age-choice .deny {
    background: transparent;
    border: 2px solid var(--aether-lavender);
    color: var(--aether-lavender);
}

.age-choice button:hover {
    transform: scale(1.05);
}

.game-note {
    background: var(--aether-mist);
    border: 1px solid var(--aether-purple);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.game-note h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--aether-silver);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.game-note p {
    color: var(--aether-lavender);
    font-size: 0.95rem;
    font-weight: 300;
}

@media (max-width: 900px) {
    .notices-row {
        grid-template-columns: 1fr;
    }
    
    .aspects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ethereal-nav {
        display: none;
    }
    
    .mist-toggle {
        display: flex;
    }
    
    .game-vessel iframe {
        height: 400px;
    }
    
    .landing-content h1 {
        font-size: 2.2rem;
    }
}
