/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0c10;
    color: #c5c6c7;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Particle Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Main Layout Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90vh;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-height: 150px;
    width: auto;
    filter: drop-shadow(0 0 10px #5e0302);
}

/* Typography */
.content {
    margin-bottom: 40px;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.highlight {
    color: #5e0302; /* Premium Cyan Accent */
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    color: #a9a9a9;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(31, 40, 51, 0.6);
    border: 1px solid rgba(102, 252, 241, 0.2);
    padding: 20px;
    border-radius: 12px;
    min-width: 100px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: #5e0302;
}

.time {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #5e0302;
}

.label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c5c6c7;
}

/* Subscription Form */
.notify-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #1f2833;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notify-form input[type="email"] {
    flex: 1;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.notify-form input[type="email"]::placeholder {
    color: #656565;
}

.notify-form button {
    background: #5e0302;
    color: #0b0c10;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notify-form button:hover {
    background: #45a29e;
}

.form-message {
    margin-top: 15px;
    font-size: 0.95rem;
    height: 20px;
}

.form-message.success { color: #2ecc71; }
.form-message.error { color: #e74c3c; }

/* Footer & Social Media */
.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #c5c6c7;
    font-size: 1.3rem;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #5e0302;
}

.copyright {
    font-size: 0.85rem;
    color: #5e0302;
}

/* Responsive Design */
@media (max-width: 600px) {
    .title { font-size: 2rem; }
    .subtitle { font-size: 1rem; }
    .countdown-item { min-width: 75px; padding: 15px 10px; }
    .time { font-size: 1.8rem; }
    .notify-form { flex-direction: column; background: transparent; border: none; gap: 10px; }
    .notify-form input[type="email"] { background: #1f2833; border-radius: 30px; text-align: center; }
    .notify-form button { border-radius: 30px; }
}