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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #F5EFE7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(139,90,43,0.05)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(139, 90, 43, 0.15);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(139, 90, 43, 0.2));
}

.brand-name {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: #8B5A2B;
    margin-top: 15px;
    font-weight: 400;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B5A2B;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.2rem;
    color: #A0826D;
    margin-bottom: 40px;
    font-weight: 400;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #8B5A2B;
    padding: 20px 25px;
    border-radius: 15px;
    min-width: 100px;
    box-shadow: 0 10px 25px rgba(139, 90, 43, 0.3);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.notify-section {
    margin-bottom: 40px;
}

.notify-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

.email-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: #8B5A2B;
    box-shadow: 0 0 0 4px rgba(139, 90, 43, 0.1);
}

.notify-btn {
    padding: 15px 35px;
    background: #8B5A2B;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 90, 43, 0.4);
    background: #A0826D;
}

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

.success-message {
    display: none;
    color: #4caf50;
    font-weight: 500;
    margin-top: 15px;
    font-size: 1rem;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8B5A2B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(139, 90, 43, 0.4);
    background: #A0826D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px 20px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

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

    .email-input {
        min-width: 100%;
    }

    .notify-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 12px 15px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }
}

