/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0e14; /* Deep premium trading app background */
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90vh;
    position: relative;
    z-index: 2;
}

/* Header & Logo */
header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.logo strong {
    color: #00e676; /* Financial green accent color */
}

.ticker-icon {
    color: #00e676;
}

/* Content Area */
.content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.badge {
    background-color: rgba(0, 230, 118, 0.1);
    color: #00e676;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 span {
    color: #00e676;
}

p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.time-block {
    background: #151a24;
    border: 1px solid #222c3c;
    border-radius: 12px;
    min-width: 90px;
    padding: 1rem;
    text-align: center;
}

.time-block span {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.time-block p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subscription Form */
.subscription-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
    background: #151a24;
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid #222c3c;
}

.subscription-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    padding: 0 1.5rem;
    font-size: 1rem;
}

.subscription-form input::placeholder {
    color: #64748b;
}

.btn {
    background-color: #00e676;
    color: #0b0e14;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
    background-color: #00b359;
}

.btn:active {
    transform: scale(0.98);
}

/* Background Stock Chart Graphic */
.chart-graphic {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* Footer */
footer {
    text-align: center;
    color: #475569;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }
    .countdown-timer {
        gap: 0.5rem;
    }
    .time-block {
        min-width: 70px;
        padding: 0.7rem;
    }
    .time-block span {
        font-size: 1.6rem;
    }
    .subscription-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 1rem;
    }
    .subscription-form input[type="email"] {
        background: #151a24;
        border: 1px solid #222c3c;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        text-align: center;
    }
}
