/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    --primary-red: #EC1C24;
    --accent-orange: #C84E29;
    --space-black: #050505;
    --rust-panel: #1a0f0a;
    --sand-text: #FFC59E;
    --glass-border: rgba(200, 78, 41, 0.3);
}

body {
    background-color: var(--space-black);
    color: var(--sand-text);
    margin: 0;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: radial-gradient(circle at center, #1a0808 0%, #050505 100%);
    background-attachment: fixed;
    /* Rajdhani is used for general UI and lists for high readability */
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

/* --- HEADERS --- */
.header { 
    text-align: center; 
    margin-bottom: 20px; 
}

.guild-logo { 
    width: 120px; 
    border-radius: 50%; 
    border: 3px solid var(--primary-red); 
    box-shadow: 0 0 20px rgba(236, 28, 36, 0.4); 
}

h1 { 
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-red); 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    text-shadow: 2px 2px 4px #000;
    margin-top: 15px;
    font-weight: 700;
}

h2 { 
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem; 
    text-transform: uppercase; 
    color: var(--primary-red); 
    border-bottom: 1px solid var(--glass-border); 
    padding-bottom: 8px; 
    margin-top: 0; 
    letter-spacing: 1px;
}

/* --- TIMER SECTION --- */
.timer-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
    width: 100%; 
    max-width: 500px; 
    margin-bottom: 15px; 
}

.timer-card { 
    background: var(--rust-panel); 
    border: 1px solid var(--glass-border); 
    padding: 15px; 
    border-radius: 8px; 
    text-align: center; 
}

.timer-label { 
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem; 
    text-transform: uppercase; 
    color: var(--accent-orange); 
    font-weight: 700; 
    letter-spacing: 1px;
}

.timer-value { 
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem; 
    font-weight: 700; 
    color: #fff; 
    display: block; 
    margin-top: 5px; 
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* --- CONTENT CARDS --- */
.card { 
    background: var(--rust-panel); 
    border: 1px solid var(--glass-border); 
    border-radius: 12px; 
    padding: 20px; 
    width: 100%; 
    max-width: 500px; 
    margin-bottom: 20px; 
    text-align: center; 
    line-height: 1.6;
    font-size: 1.1rem; /* Rajdhani looks better slightly larger */
}

/* --- NAVIGATION BUTTONS --- */
.nav-menu { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    width: 100%; 
    max-width: 500px; 
}

.nav-btn { 
    font-family: 'Orbitron', sans-serif;
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #2a110a 0%, #1a0f0a 100%);
    border: 1px solid var(--accent-orange);
    color: var(--sand-text);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(200, 78, 41, 0.1);
}

.nav-btn:hover { 
    background: var(--accent-orange); 
    color: #fff; 
    transform: translateY(-2px); 
    box-shadow: 0 0 15px rgba(200, 78, 41, 0.4);
}

.discord-link { 
    border-color: #5865F2; 
    color: #5865F2; 
}

.discord-link:hover { 
    background: #5865F2; 
    color: #fff; 
}

/* --- ANIMATIONS & STATES --- */
.status-active { 
    color: var(--primary-red); 
    text-shadow: 0 0 12px var(--primary-red); 
    animation: pulse 2s infinite; 
}

@keyframes pulse { 
    0%, 100% { opacity: 1; } 
    50% { opacity: 0.6; } 
}

/* Mobile Tweak for smaller screens */
@media (max-width: 380px) {
    h1 { font-size: 1.2rem; }
    .timer-value { font-size: 0.85rem; }
}
