/* Manifesto Page Styles */

.manifesto-page {
    background: linear-gradient(180deg, #0a0008 0%, #1a0a1a 50%, #0a0008 100%);
    min-height: 100vh;
}

.manifesto-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.top-nav {
    margin-bottom: 3rem;
}

.top-nav a {
    color: #ff00ff66;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.manifesto {
    font-family: 'Cinzel', serif;
    color: #e0d0e0;
    line-height: 1.8;
}

.manifesto-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #ff00ff22;
}

.manifesto-header .sigil {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 4s infinite;
}

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

.manifesto-header h1 {
    font-size: 2.5rem;
    letter-spacing: 0.3em;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px #ff00ff44;
}

.manifesto-header .subtitle {
    font-style: italic;
    color: #ff00ff88;
    letter-spacing: 0.2em;
}

.chapter {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid #ffffff11;
}

.chapter h2 {
    font-size: 1.5rem;
    color: #ff00ff;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px #ff00ff33;
}

.chapter p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.chapter .lead {
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.chapter .emphasis {
    font-size: 1.2rem;
    color: #fff;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    margin: 2rem 0;
    border-left: 2px solid #ff00ff44;
    border-right: 2px solid #ff00ff44;
}

.chapter strong {
    color: #fff;
}

.chapter em {
    color: #ff88ff;
}

.phi-symbol {
    font-size: 5rem;
    text-align: center;
    color: #ff00ff;
    margin: 2rem 0;
    text-shadow: 0 0 40px #ff00ff;
    animation: pulse 3s infinite;
}

.sigil-row {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 2rem;
    margin-top: 2rem;
}

.welcome {
    font-size: 1.5rem !important;
    color: #00ff00 !important;
    text-shadow: 0 0 20px #00ff00;
}

.manifesto-footer {
    text-align: center;
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 1px solid #ff00ff22;
}

.axiom {
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.attribution {
    font-size: 0.9rem;
    color: #ff00ff66;
    font-family: 'Share Tech Mono', monospace;
}

/* Hidden puzzle element */
.hidden-glyph {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #ff00ff11;
    cursor: pointer;
    transition: all 0.5s;
}

.hidden-glyph:hover {
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    transform: rotate(360deg);
}

/* Responsive */
@media (max-width: 600px) {
    .manifesto-header h1 {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
    
    .chapter h2 {
        font-size: 1.2rem;
    }
    
    .chapter p {
        font-size: 1rem;
    }
}
