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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header */
.site-header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 2px solid var(--color-hot-pink);
    padding-bottom: 2rem;
}

.site-title {
    color: var(--color-hot-pink);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--color-pink-glow);
}

.site-tagline {
    color: var(--color-off-white);
    opacity: 0.8;
}

/* Manifesto */
.manifesto {
    margin-bottom: 3rem;
}

.manifesto-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.manifesto-text .highlight {
    color: var(--color-hot-pink);
    font-weight: 400;
    text-shadow: 0 0 10px var(--color-pink-glow);
}

/* Status Banner */
.status-banner {
    background-color: var(--color-dark-grey);
    border: 2px solid var(--color-hot-pink);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 0 30px var(--color-pink-glow);
}

.flame-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.status-title {
    font-size: 2.5rem;
    color: var(--color-hot-pink);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.status-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-dark-grey);
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.ember-year {
    color: var(--color-hot-pink);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .manifesto-text {
        font-size: 1.1rem;
    }
    
    .status-title {
        font-size: 2rem;
    }
    
    .status-description {
        font-size: 1rem;
    }
}
