/* ----- CSS Variables ----- */
:root {
    --bg-dark: #07070a;
    --bg-card: rgba(20, 20, 25, 0.6);
    --primary-neon: #FF007F;
    --primary-neon-glow: rgba(255, 0, 127, 0.5);
    --secondary-neon: #00F0FF;
    --secondary-neon-glow: rgba(0, 240, 255, 0.5);
    --text-main: #e2e2e8;
    --text-muted: #9595a0;
    --font-family: 'Outfit', sans-serif;
    --border-glass: rgba(255, 255, 255, 0.05);
}

/* ----- Reset & Global ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ----- Typography ----- */
h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-neon) 0%, var(--secondary-neon) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

p {
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.mt-2 { margin-top: 2rem; }

/* ----- Background Effects ----- */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -2;
    opacity: 0.5;
}

.spot-1 {
    top: -100px;
    left: -200px;
    background: var(--primary-neon-glow);
}

.spot-2 {
    top: 50vh;
    right: -200px;
    background: var(--secondary-neon-glow);
}

.bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

/* ----- Layout ----- */
.section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-neon), #c00060);
    color: #fff;
    border: none;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.7);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-neon);
    border: 1px solid var(--secondary-neon);
    padding: 0.5rem 1.5rem;
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.massive-btn {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    margin-top: 2rem;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ----- Navigation ----- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(7, 7, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px var(--primary-neon);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-neon);
}

/* ----- Hero Section ----- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.cta-note {
    font-size: 0.8rem;
    margin-top: 1rem;
}

.hero-image-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    margin-left: 4rem;
}

/* ----- Image Placeholders ----- */
.placeholder-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px dashed rgba(255, 0, 127, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
    min-height: 200px; /* fallback */
}

/* ----- Cards Grid ----- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.3);
}

.card-image-placeholder {
    width: 100%;
    height: 350px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

/* ----- Lore / Events Section ----- */
.dark-panel {
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0));
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    position: relative;
}

.two-column {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.column-text {
    flex: 1;
}

.column-image {
    flex: 1;
}

.large-placeholder {
    height: 500px;
    border-color: var(--secondary-neon);
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '►';
    color: var(--secondary-neon);
    margin-right: 1rem;
    font-size: 0.8rem;
}

/* ----- FAQ Section ----- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s;
}

.faq-question:hover h3 {
    color: var(--secondary-neon);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-neon);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* arbitrary height larger than content */
    padding-bottom: 1.5rem;
}

.bottom-cta {
    text-align: center;
    margin-top: 5rem;
}

.bottom-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ----- Footer ----- */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 3rem 5%;
    text-align: center;
    background: rgba(0,0,0,0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ----- Animations & Responsiveness ----- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 3rem;
    }

    .hero-image-placeholder {
        margin-left: 0;
        margin-top: 3rem;
        height: 400px;
        width: 100%;
    }

    .nav-links a {
        display: none; /* simple mobile fallback, only show CTA */
    }
    .nav-links .btn-outline {
        display: inline-block;
    }

    .two-column {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-links a {
        margin: 0 1rem;
    }
}
