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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 50%, #0f0704 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Background texture */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(160, 82, 45, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(101, 67, 33, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
}

/* Coffee Steam Animation */

.steam {
    position: absolute;
    width: 6px;
    height: 80px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    filter: blur(1px);
}

.steam-1 {
    left: -20px;
    animation: steam 3s ease-in-out infinite 1s;
}

.steam-2 {
    left: -12px;
    animation: steam 3s ease-in-out infinite 1.5s;
}

.steam-3 {
    left: -4px;
    animation: steam 3s ease-in-out infinite 2s;
}

@keyframes steam {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    30% {
        opacity: 0.8;
    }
    70% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) rotate(3deg);
    }
}

.content {
    text-align: center;
    z-index: 2;
    max-width: 600px;
}

/* Coffee Cup Logo */
.logo {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.coffee-cup {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
}

/* Coffee Steam Animation - positioned relative to cup */
.coffee-steam {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.cup-body {
    width: 60px;
    height: 70px;
    background: linear-gradient(145deg, #8B4513, #A0522D);
    border-radius: 0 0 30px 30px;
    position: relative;
    z-index: 1;
    box-shadow: 
        inset -2px -2px 5px rgba(0, 0, 0, 0.2),
        2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cup-handle {
    position: absolute;
    right: -15px;
    top: 15px;
    width: 20px;
    height: 25px;
    border: 4px solid #8B4513;
    border-left: none;
    border-radius: 0 10px 10px 0;
    z-index: 1;
}

.coffee-surface {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 8px;
    background: linear-gradient(90deg, #3C1810, #2C1409);
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Typography */
.coming-soon-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #D2691E;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #F5F5DC;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    color: #D2B48C;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.6s both;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Coffee Beans Animation */
.coffee-beans {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.bean {
    position: absolute;
    width: 12px;
    height: 16px;
    background: linear-gradient(145deg, #8B4513, #A0522D);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.1;
}

.bean::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 12px;
    background: #654321;
    border-radius: 1px;
}

.bean-1 {
    top: 15%;
    left: 8%;
    animation: float 6s ease-in-out infinite;
}

.bean-2 {
    top: 25%;
    right: 12%;
    animation: float 8s ease-in-out infinite 1s;
}

.bean-3 {
    bottom: 30%;
    left: 15%;
    animation: float 7s ease-in-out infinite 2s;
}

.bean-4 {
    bottom: 20%;
    right: 8%;
    animation: float 9s ease-in-out infinite 3s;
}

.bean-5 {
    top: 60%;
    left: 6%;
    animation: float 5s ease-in-out infinite 4s;
}

.bean-6 {
    top: 40%;
    right: 20%;
    animation: float 6.5s ease-in-out infinite 5s;
}

.bean-7 {
    bottom: 15%;
    left: 25%;
    animation: float 7.5s ease-in-out infinite 6s;
}

.bean-8 {
    top: 35%;
    right: 6%;
    animation: float 8.5s ease-in-out infinite 7s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Email Input Section */
.notify-section {
    animation: fadeInUp 1s ease-out 0.9s both;
    margin-bottom: 2rem;
}

.input-wrapper {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.input-wrapper:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #F5F5DC;
    font-size: 1rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.email-input::placeholder {
    color: rgba(245, 245, 220, 0.6);
}

.notify-btn {
    background: linear-gradient(135deg, #D2691E, #FF8C00);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #FF8C00, #FF7F50);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

/* Bottom Section */
.bottom-text {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(245, 245, 220, 0.6);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(245, 245, 220, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot:hover {
    background: #D2691E;
    transform: scale(1.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .main-title {
        width: 90%;
        font-size: 40px;
        margin: 0 auto 16px;
    }

    .subtitle {
        width: 80%;
        font-size: 16px;
    }
}