* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0b0b; /* Hitam pekat ala viewfinder kamera */
    color: #f3f3f3;
    font-family: 'Space Grotesk', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 1.5rem;
    overflow: hidden;
    position: relative;
}

/* Efek grain tipis ala foto digicam jadul */
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?q=80&w=200&auto=format&fit=crop') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    text-align: center;
    max-width: 600px;
    z-index: 1;
}

/* Container Tulisan & Kursor */
.typing-container {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    line-height: 1.6;
    color: #d1d1d1;
    white-space: pre-line;
    min-height: 4.5em; /* Biar layout gak loncat pas ngetik */
    margin-bottom: 2rem;
}

/* Kursor kedap-kedip */
.cursor {
    display: inline-block;
    width: 8px;
    height: 1.2rem;
    background-color: #e50914; /* Aksen merah ala lampu flash/recording */
    margin-left: 4px;
    animation: blink 0.8s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    50.1%, 100% { opacity: 0; }
}

/* Nama Brand */
.brand-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    letter-spacing: 0.3em;
    font-weight: 700;
    color: #ffffff;
    margin-top: 1rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInBrand 1s ease forwards 4.5s;
}

@keyframes fadeInBrand {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status Coming Soon ala Viewfinder */
.status-tag {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: #777;
    margin-top: 0.5rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInBrand 1s ease forwards 5s;
}

/* Footer */
footer {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #555;
    text-transform: uppercase;
    z-index: 1;
}

/* Hiasan kecil ala UI kamera digital */
.camera-ui-top {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 0.1em;
    font-family: monospace;
}