* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a0e0a 0%, #2c1810 30%, #3e2217 60%, #1a0e0a 100%);
    color: #f5e6d3;
    overflow: hidden;
    position: relative;
}

/* Floating particles */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(198, 154, 104, 0.15);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 650px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-area {
    margin-bottom: 1.5rem;
}

.coffee-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    animation: steam 3s ease-in-out infinite;
}

@keyframes steam {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #c69a68;
    text-shadow: 0 2px 20px rgba(198, 154, 104, 0.3);
}

/* Divider */
.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c69a68, transparent);
    margin: 1.5rem auto;
}

/* Title & subtitle */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e8d5c0;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #b8a090;
    margin-bottom: 2.5rem;
}

/* Notify */
.notify-section {
    margin-bottom: 2rem;
}

.notify-text {
    font-size: 0.9rem;
    color: #8a7565;
    margin-bottom: 1rem;
}

.notify-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.notify-form input {
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(198, 154, 104, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #f5e6d3;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    width: 260px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.notify-form input::placeholder {
    color: #6a5a4a;
}

.notify-form input:focus {
    border-color: #c69a68;
    box-shadow: 0 0 0 3px rgba(198, 154, 104, 0.1);
}

.notify-form button {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #c69a68, #a37844);
    color: #1a0e0a;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 154, 104, 0.3);
}

.notify-form button:active {
    transform: translateY(0);
}

.success-msg {
    display: none;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #c69a68;
    animation: fadeInUp 0.5s ease-out;
}

.success-msg.show {
    display: block;
}


/* Footer */
.footer-text {
    font-size: 0.75rem;
    color: #5a4a3a;
}

/* Responsive */
@media (max-width: 500px) {
    .brand {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }

    .title {
        font-size: 1.2rem;
    }

    .notify-form input {
        width: 100%;
    }

    .notify-form button {
        width: 100%;
    }
}
