:root {
    /* THE PALETTE: Navy & Cream */
    --bg: #0A1F44;         /* Deep Navy */
    --text-main: #FAF7F2;  /* Warm Cream */
    
    /* SHADES */
    --text-dim: rgba(250, 247, 242, 0.4);   /* Sönük mətnlər */
    --accent: rgba(250, 247, 242, 0.15);    /* İncə xətlər */
    --highlight: rgba(250, 247, 242, 0.06); /* Aktiv blokun arxa fonu */
    --block-bg: rgba(250, 247, 242, 0.03);  /* Manifesto blokları üçün fon */
    
    --font-stack: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
}

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

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- NAVIGATION --- */
nav {
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(250, 247, 242, 0.2);
}

/* --- MAIN LAYOUT --- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
}

/* Manifesto Container */
.manifesto-container article {
    max-width: 620px;
    width: 100%;
}

/* Timer Container */
.timer-container {
    justify-content: center;
    width: 100%;
}

/* --- TYPOGRAPHY (General) --- */
h1 {
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    text-align: center;
    color: var(--text-main);
}

p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(250, 247, 242, 0.95);
}

.intro {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--text-main);
}

hr {
    border: 0;
    height: 1px;
    background: var(--accent);
    margin: 3.5rem 0;
}

/* --- MANIFESTO SPECIFIC STYLES --- */
.highlight-block {
    border-left: 2px solid var(--text-main);
    background: linear-gradient(90deg, var(--block-bg) 0%, transparent 100%);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.schedule {
    background: var(--block-bg);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border: 1px solid var(--accent);
}

.schedule h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1rem;
}

.schedule ul { list-style: none; }

.schedule li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-family: var(--font-stack);
    font-size: 0.95rem;
    color: var(--text-main);
}

.caption {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 2rem;
    margin-bottom: 0;
    font-style: italic;
}

.signature {
    margin-top: 5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* --- TIMER PAGE STYLES --- */

.timer-box {
    text-align: center;
    margin-bottom: 3rem;
    transition: opacity 0.5s ease;
}

.timer-display {
    font-family: var(--font-stack);
    font-size: 15vw; /* Responsive Huge Text */
    line-height: 1;
    margin: 1rem 0 0.5rem 0;
    font-feature-settings: "tnum"; /* Tabular numbers */
    color: var(--text-main);
    text-shadow: 0 0 30px rgba(10, 31, 68, 0.5);
}

.status-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.next-info {
    font-family: var(--font-stack);
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 1rem;
}

/* --- LIVE SCHEDULE LIST (NEW DESIGN) --- */
.schedule-wrapper {
    width: 100%;
    max-width: 500px;
    margin-top: 2rem;
    border-top: 1px solid var(--accent);
    padding-top: 2rem;
}

.schedule-list {
    list-style: none; /* NO BULLETS */
    padding: 0;
    margin: 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    margin-bottom: 4px;
    font-family: var(--font-stack);
    font-size: 0.95rem;
    color: var(--text-main);
    
    /* Default State: Dimmed */
    opacity: 0.3; 
    border-left: 3px solid transparent;
    transition: all 0.4s ease;
}

.schedule-item .slot-time {
    font-weight: 400;
    letter-spacing: 0.05em;
}

.schedule-item .slot-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ACTIVE STATE (Highlight) */
.schedule-item.active {
    opacity: 1;
    background-color: var(--highlight); /* Subtle Cream Background */
    border-left: 3px solid var(--text-main); /* Solid Line on Left */
    padding-left: 2rem; /* Indent slightly */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 0 4px 4px 0;
}

.schedule-item.active .slot-time {
    font-weight: 700;
}

.schedule-item.active .slot-label {
    color: var(--text-main);
    font-weight: 600;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 3rem;
    color: var(--text-dim);
    font-size: 0.8rem;
    opacity: 0.5;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 600px) {
    .timer-display {
        font-size: 18vw;
    }
    h1 {
        font-size: 1.8rem;
    }
    nav {
        gap: 1rem;
        padding: 1.5rem;
    }
    .schedule-item {
        padding: 1rem;
    }
    .schedule-item.active {
        padding-left: 1.5rem;
    }
}