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

body {
    font-family: 'Inter', sans-serif;
    background: #182e3a;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e384b;
    line-height: 1.6;
    position: relative;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: rgba(24, 46, 58, 0.7);
    transform: skewX(-15deg);
    transform-origin: top right;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 46, 58, 0.6) 0%, rgba(64, 94, 86, 0.3) 100%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    justify-content: space-between;
    max-height: 90vh;
}

.countdown-card::before {
    display: none;
}

.logo-section {
    text-align: center;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.coming-soon {
    font-size: 3rem;
    font-weight: 600;
    color: #CABEAA;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
    font-style: italic;
}

.countdown-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.header {
    text-align: center;
    margin-bottom: 1rem;
}

.title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-style: italic;
}

.subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    opacity: 0.8;
    font-style: italic;
}

.platform-description {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #CABEAA;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    font-style: italic;
}

.platform-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
    font-style: italic;
}

.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.time-unit {
    text-align: center;
    min-width: 80px;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    background: transparent;
    border-radius: 0;
    padding: 0.5rem 0;
    margin-bottom: 0.25rem;
    box-shadow: none;
    border: none;
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

.time-value::before {
    display: none;
}

.time-unit:hover .time-value::before {
    display: none;
}

.time-unit:hover .time-value {
    transform: translateY(-1px);
    color: #CABEAA;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    font-style: italic;
}

.time-separator {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -0.5rem;
    opacity: 0.5;
}

.target-date {
    text-align: center;
    padding: 0.5rem;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.target-date p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

.target-date span {
    color: #CABEAA;
    font-weight: 500;
}

.subscription-form {
    margin-top: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-height: 285px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    font-style: italic;
}

.form-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.form {
    display: flex;
    flex-direction: column;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group select {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #CABEAA;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(202, 190, 170, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.form-group input.success,
.form-group select.success {
    border-color: #51cf66;
    background: rgba(81, 207, 102, 0.1);
}

.error-message {
    font-size: 0.75rem;
    color: #ff6b6b;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, #CABEAA, #B09E80);
    color: #152737;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(202, 190, 170, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading {
    pointer-events: none;
}

.form-message {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    min-height: 1rem;
}

.form-message.success {
    background: rgba(81, 207, 102, 0.1);
    color: #51cf66;
    border: 1px solid rgba(81, 207, 102, 0.3);
}

.form-message.error {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .countdown-card {
        padding: 0;
        gap: 0.5rem;
        max-height: 95vh;
        justify-content: space-between;
    }
    
    .title {
        font-size: 1.75rem;
    }
    
    .platform-description {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .platform-title {
        font-size: 1.25rem;
    }
    
    .platform-text {
        font-size: 0.8rem;
    }
    
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: block;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .coming-soon {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 0.75rem;
    }
    
    .time-unit {
        min-width: 70px;
    }
    
    .time-value {
        font-size: 2rem;
        padding: 0.25rem 0;
    }
    
    .time-separator {
        font-size: 1.5rem;
        margin-top: -0.25rem;
    }
    
    .subscription-form {
        padding: 1.25rem;
        margin-top: 0;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
    
    .form {
        gap: 1.25rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 0.8rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .time-value {
        font-size: 1.75rem;
        padding: 0.25rem 0;
    }
    
    .time-label {
        font-size: 0.625rem;
    }
    
    .time-separator {
        font-size: 1.25rem;
        margin-top: -0.25rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.75rem;
    }
    
    .platform-description {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .platform-title {
        font-size: 1.125rem;
    }
    
    .platform-text {
        font-size: 0.75rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .coming-soon {
        font-size: 0.875rem;
    }
    
    .subscription-form {
        padding: 1rem;
        margin-top: 0;
    }
    
    .form-title {
        font-size: 1.125rem;
    }
    
    .form-subtitle {
        font-size: 0.8rem;
    }
    
    .form {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.75rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

.time-value.updated {
    animation: pulse 0.4s ease-in-out;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid #51cf66;
    background: linear-gradient(135deg, rgba(81, 207, 102, 0.1), rgba(81, 207, 102, 0.05));
}

.toast.error {
    border-left: 4px solid #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
}

.toast.info {
    border-left: 4px solid #CABEAA;
    background: linear-gradient(135deg, rgba(202, 190, 170, 0.1), rgba(202, 190, 170, 0.05));
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.toast-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: #ffffff;
}

.toast-message {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(30, 56, 75, 0.1);
    transition: width linear;
}

.toast.success .toast-progress {
    background: #51cf66;
}

.toast.error .toast-progress {
    background: #ff6b6b;
}

.toast.info .toast-progress {
    background: #CABEAA;
}

@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
} 