/*
Theme Name: Segada Online Under Construction
Theme URI: https://se-gada.Online
Author: Ara
Description: Tema Under Construction Khusus untuk segada Media dengan Dashboard Customizer.
Version: 1.0
*/

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    background-image: radial-gradient(circle at 50% 50%, #1f1f1f 0%, #000000 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* Scanline Effect */
.scanline {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
    background-size: 100% 4px;
    pointer-events: none; z-index: 2;
}

.container { text-align: center; z-index: 10; padding: 2rem; width: 100%; max-width: 800px; }

/* Logo */
.logo-placeholder img { max-width: 220px; height: auto; }

/* Typography */
h1 {
    font-family: 'Oswald', sans-serif; /* Perlu import font di index.php nanti */
    font-size: 4rem; font-weight: 700; color: #e50914;
    text-transform: uppercase; letter-spacing: 4px; margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}
p { color: #a0a0a0; font-size: 1rem; margin-bottom: 3rem; line-height: 1.5; max-width: 550px; margin-left: auto; margin-right: auto; }

/* Countdown */
.countdown-wrapper { display: flex; justify-content: center; gap: 15px; margin-top: 1rem; }
.time-box {
    background: #111; border: 1px solid #333; padding: 20px 10px;
    min-width: 90px; text-align: center; position: relative;
}
.time-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: #e50914;
}
.time-box span { display: block; font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: bold; color: #fff; }
.time-box label { font-size: 0.75rem; color: #777; text-transform: uppercase; margin-top: 5px; display: block; }

/* Footer */
.footer { position: absolute; bottom: 40px; width: 100%; text-align: center; font-size: 0.85rem; color: #555; z-index: 10; }

/* Mobile */
@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .countdown-wrapper { gap: 8px; }
    .time-box { min-width: 65px; padding: 15px 5px; }
    .time-box span { font-size: 1.6rem; }
}