:root {
    --dark-bg: #1A1A1D; /* Deep Charcoal - Matches App Background */
    --accent-cyan: #00FFFF; /* Electric Cyan - Your App Accent Color */
    --light-text: #F5F5F5;
    --grey-text: #A9A9A9;
}

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 40px;
    background: #242429; /* Slightly lighter inner panel */
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.1); /* Subtle glowing effect */
}

/* Logo and Branding */
.logo-area {
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 8px var(--accent-cyan));
}

h1 {
    color: var(--accent-cyan);
    font-size: 2.2em;
    font-weight: 700;
    margin: 10px 0 5px 0;
}

.tagline {
    color: var(--grey-text);
    font-size: 1.1em;
    font-weight: 300;
}

/* Announcement */
.announcement h2 {
    font-size: 1.8em;
    margin: 20px 0;
    color: var(--light-text);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-timer div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-timer .value {
    font-size: 3em;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.countdown-timer .label {
    font-size: 0.8em;
    color: var(--grey-text);
    margin-top: 5px;
    text-transform: uppercase;
}

/* Features Section */
.features-section {
    text-align: left;
    margin-top: 40px;
}

.section-title {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.features-section ul {
    list-style: none;
    padding: 0;
}

.features-section li {
    background: #33333A; /* Feature background */
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    color: var(--light-text);
    border-left: 3px solid var(--accent-cyan);
    font-weight: 300;
}

/* Footer / Contact */
.footer {
    margin-top: 40px;
}

.footer p {
    color: var(--grey-text);
    margin-bottom: 15px;
}

.footer input[type="email"] {
    padding: 10px;
    width: 60%;
    max-width: 300px;
    border: 1px solid #444;
    border-radius: 4px 0 0 4px;
    background-color: #1A1A1D;
    color: var(--light-text);
}

.footer button {
    padding: 10px 20px;
    background-color: var(--accent-cyan);
    color: var(--dark-bg);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer button:hover {
    background-color: #00E6E6;
}