/* ===== BASE RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8B5CF6;
    --primary-lavender: #C4B5FD;
    --accent-pink: #FF6B9D;
    --accent-magenta: #E879F9;
    --accent-cyan: #A78BFA;
    --accent-rose: #FDA4AF;
    --deep-purple: #1a0a2e;
    --holy-white: #FFFEF0;
    --chrome-purple: #7C3AED;
    --soft-pink: #F9A8D4;
    --violet: #A855F7;
}

/* ===== BODY & BACKGROUND ===== */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 50%, #0d001a 100%);
    font-family: 'VT323', monospace;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ===== STARFIELD ===== */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ===== FLOATING ELEMENTS ===== */
.floating-cross, .floating-dove {
    position: fixed;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.cross-1 { top: 10%; left: 5%; animation-delay: 0s; color: var(--primary-lavender); }
.cross-2 { top: 60%; left: 90%; animation-delay: 2s; color: var(--accent-magenta); }
.cross-3 { top: 80%; left: 15%; animation-delay: 4s; color: var(--accent-pink); }
.dove-1 { top: 20%; left: 85%; animation-delay: 1s; }
.dove-2 { top: 70%; left: 8%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    75% { transform: translateY(20px) rotate(-5deg); }
}

/* ===== SPLASH CONTAINER ===== */
.splash-container {
    position: relative;
    z-index: 10;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

/* ===== WINDOW STYLING ===== */
.window {
    background: linear-gradient(180deg, #c5ff4a 0%, #a8e834 100%);
    border: 4px solid #00BFFF;
    border-radius: 15px;
    box-shadow: 
        0 0 0 4px #1a0a2e,
        0 0 30px rgba(0, 191, 255, 0.5),
        0 0 60px rgba(255, 107, 157, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 90vw;
    overflow: hidden;
    animation: windowPulse 4s ease-in-out infinite;
}

@keyframes windowPulse {
    0%, 100% { box-shadow: 0 0 0 4px #1a0a2e, 0 0 30px rgba(0, 191, 255, 0.5), 0 0 60px rgba(255, 107, 157, 0.3); }
    50% { box-shadow: 0 0 0 4px #1a0a2e, 0 0 50px rgba(0, 191, 255, 0.7), 0 0 80px rgba(255, 107, 157, 0.5); }
}

.window-header {
    background: linear-gradient(90deg, #A78BFA, #FF6B9D, #E879F9);
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 3px solid #1a0a2e;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.3);
}

.dot-green { background: #C4B5FD; }
.dot-yellow { background: #E879F9; }
.dot-red { background: #FF6B9D; }

.window-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: #1a0a2e;
    text-shadow: 1px 1px 0 white;
}

.window-content {
    padding: 2rem;
    text-align: center;
}

/* ===== BANNER TAPE ===== */
.banner-tape {
    background: linear-gradient(90deg, 
        #C4B5FD 0%, #FF6B9D 25%, 
        #E879F9 50%, #A78BFA 75%, 
        #C4B5FD 100%);
    background-size: 200% 100%;
    animation: rainbowShift 3s linear infinite;
    padding: 10px 20px;
    margin: -2rem -2rem 1.5rem -2rem;
    transform: rotate(-3deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.banner-text {
    font-family: 'Superbolt', sans-serif;
    font-size: 1.8rem;
    color: #1a0a2e;
    text-shadow: 2px 2px 0 white;
    letter-spacing: 3px;
}

/* ===== SITE TITLE ===== */
.site-title {
    margin: 1.5rem 0;
}

.title-main {
    display: block;
    font-family: 'Press Start 2P', cursive;
    font-size: 4rem;
    background: linear-gradient(180deg, #C4B5FD 0%, #FF6B9D 50%, #E879F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(3px 3px 0 #1a0a2e) drop-shadow(-1px -1px 0 #FF6B9D);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(3px 3px 0 #1a0a2e) drop-shadow(0 0 10px #C4B5FD); }
    100% { filter: drop-shadow(3px 3px 0 #1a0a2e) drop-shadow(0 0 30px #E879F9); }
}

.title-sub {
    display: block;
    font-family: 'Cyrivendell', serif;
    font-size: 2.5rem;
    color: #1a0a2e;
    letter-spacing: 8px;
    margin-top: -10px;
    text-shadow: 2px 2px 0 var(--primary-lavender);
}

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 1rem 0;
}

.divider-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1a0a2e, transparent);
}

.divider-cross {
    font-size: 1.5rem;
    color: var(--primary-lavender);
    text-shadow: 0 0 10px var(--accent-magenta);
    animation: crossPulse 1.5s ease-in-out infinite;
}

@keyframes crossPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* ===== TAGLINE ===== */
.tagline {
    font-family: 'Boldness Race', sans-serif;
    font-size: 1.2rem;
    color: #1a0a2e;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 1px 1px 0 var(--accent-cyan);
}

/* ===== WARNING ICONS ===== */
.warning-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.warning-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B9D, #00FFFF);
    border: 3px solid #1a0a2e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 4px 4px 0 #1a0a2e;
    transition: transform 0.3s, box-shadow 0.3s;
}

.icon-box:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #1a0a2e;
}

.warning-item span {
    font-family: 'Boldness Race', sans-serif;
    font-size: 1rem;
    color: #1a0a2e;
    text-transform: lowercase;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    font-size: 1rem;
    color: #1a0a2e;
    line-height: 1.8;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    border: 2px dashed #FF6B9D;
}

.highlight {
    color: var(--primary-purple);
    font-weight: bold;
    text-shadow: 0 0 5px var(--accent-cyan);
}

/* ===== ENTER BUTTON ===== */
.enter-btn {
    display: inline-block;
    position: relative;
    padding: 20px 50px;
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: #1a0a2e;
    background: linear-gradient(180deg, #C4B5FD 0%, #A78BFA 100%);
    border: 4px solid #1a0a2e;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 
        6px 6px 0 #1a0a2e,
        0 0 20px rgba(196, 181, 253, 0.5);
    transition: all 0.2s;
    overflow: hidden;
    cursor: pointer;
    animation: buttonBounce 2s ease-in-out infinite;
}

@keyframes buttonBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.enter-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        9px 9px 0 #1a0a2e,
        0 0 40px rgba(232, 121, 249, 0.8);
    background: linear-gradient(180deg, #E879F9 0%, #FF6B9D 100%);
}

.enter-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 #1a0a2e;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 60%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* ===== UNDER CONSTRUCTION ===== */
.under-construction {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    color: #1a0a2e;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0.5; }
}

.under-construction img {
    height: 30px;
}

/* ===== CORNER DECORATIONS ===== */
.corner-decoration {
    position: fixed;
    font-size: 3rem;
    color: var(--primary-lavender);
    animation: spinStar 10s linear infinite;
    pointer-events: none;
    z-index: 5;
}

.top-left { top: 20px; left: 20px; }
.top-right { top: 20px; right: 20px; animation-direction: reverse; }
.bottom-left { bottom: 60px; left: 20px; animation-direction: reverse; }
.bottom-right { bottom: 60px; right: 20px; }

@keyframes spinStar {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* ===== SCRIPTURE MARQUEE ===== */
.scripture-marquee {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #1a0a2e, #7C3AED, #1a0a2e);
    padding: 10px 0;
    border-top: 3px solid var(--primary-lavender);
    z-index: 100;
}

.scripture-marquee marquee {
    font-family: 'Cyrivendell', serif;
    font-size: 1.1rem;
    color: var(--primary-lavender);
    text-shadow: 0 0 10px var(--accent-magenta);
}

/* ===== AUDIO TOGGLE ===== */
.audio-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-lavender);
    border: 3px solid #1a0a2e;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 3px 3px 0 #1a0a2e;
    transition: all 0.2s;
}

.audio-toggle:hover {
    transform: scale(1.1);
    background: var(--accent-magenta);
}

.audio-toggle.muted {
    opacity: 0.5;
}

/* ===== SPLASH PAGE DECORATIVE IMAGES ===== */
.splash-deco {
    position: fixed;
    pointer-events: none;
    z-index: 5;
    opacity: 0.9;
    filter: drop-shadow(0 0 15px rgba(232, 121, 249, 0.6));
}

.splash-logo {
    bottom: 30px;
    right: 30px;
    max-width: 180px;
    animation: floatSplash 6s ease-in-out infinite;
}

.splash-angel-left {
    top: 15%;
    left: 30px;
    max-width: 120px;
    animation: floatSplash 8s ease-in-out infinite reverse;
}

.splash-cross-right {
    top: 20%;
    right: 40px;
    max-width: 100px;
    animation: floatSplash 7s ease-in-out infinite;
}

@keyframes floatSplash {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .banner-text {
        font-size: 1.2rem;
    }
    
    .enter-btn {
        padding: 15px 30px;
        font-size: 0.8rem;
    }
    
    .window-content {
        padding: 1rem;
    }
    
    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .floating-cross, .floating-dove {
        font-size: 2rem;
    }
    
    .splash-deco {
        display: none;
