* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    overflow: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #d4a574 0%, #8b4513 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
    padding: 10px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.3;
}

.container {
    width: 100%;
    max-width: 600px;
    max-height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.content-card {
    background: #fef7f4;
    border-radius: 24px;
    padding: 8px 30px 20px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    max-height: calc(100vh - 80px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 5px;
    flex-shrink: 0;
}

.logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    display: block;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    color: #2c2c2c;
    margin-top: 8px;
    margin-bottom: 8px;
    line-height: 1.2;
    flex-shrink: 0;
}

.headline .highlight {
    font-size: 32px;
    font-weight: 700;
    color: #e91e63;
    display: block;
    margin-top: 4px;
}

.description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #888;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.countdown-box {
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 4px;
}

.countdown-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-form-container {
    margin-top: 8px;
    flex-shrink: 0;
}

.email-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.email-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.email-icon {
    position: absolute;
    left: 16px;
    color: #999;
    z-index: 1;
}

.email-input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s;
}

.email-input-wrapper input:focus {
    outline: none;
    border-color: #e91e63;
}

.email-input-wrapper input::placeholder {
    color: #999;
}

.notify-button {
    padding: 12px 24px;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.notify-button:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

.notify-button:active {
    transform: translateY(0);
}

.disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin-top: 8px;
}

.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.social-icon {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
}

.social-icon:hover {
    color: white;
    transform: translateY(-2px);
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
    body {
        padding: 5px;
    }
    
    .content-card {
        padding: 5px 20px 15px 20px;
    }
    
    .logo-container {
        margin-bottom: 0;
        margin-top: 0;
        padding-top: 3px;
    }
    
    .logo {
        width: 140px;
        height: 140px;
    }
    
    .headline {
        font-size: 22px;
        margin-top: 6px;
        margin-bottom: 6px;
    }
    
    .headline .highlight {
        font-size: 26px;
        margin-top: 3px;
    }
    
    .description {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .countdown-container {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .countdown-box {
        padding: 10px 12px;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
    
    .email-form-container {
        margin-top: 6px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .notify-button {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .footer {
        margin-top: 5px;
    }
}

