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

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    background: linear-gradient(180deg, #3dbdb5 0%, #5bc4be 20%, #8ecfc5 35%, #d4a89a 55%, #e8a699 70%, #3dbdb5 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 90vh;
    max-height: 650px;
    background: linear-gradient(180deg, #3dbdb5 0%, #5bc4be 15%, #8ecfc5 30%, #c9a99d 50%, #e8a699 65%, #4ab8b0 85%, #3dbdb5 100%);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Info Icon */
.info-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s ease;
}

.info-icon:hover {
    color: white;
}

/* Header Text */
.header-text {
    margin-top: 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: white;
    text-transform: uppercase;
}

/* Sun Element */
.sun {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(180deg, #a8d8d8 0%, #c5b8c5 30%, #e8a699 60%, #f0b8a8 100%);
    top: 50%;
    left: 55%;
    transform: translate(-50%, -60%);
    box-shadow: 0 0 60px rgba(232, 166, 153, 0.3);
}

/* Brand Name */
.brand-name {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 8px;
    color: white;
    text-transform: uppercase;
    z-index: 10;
}

/* Main Heading */
.main-heading {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.coming {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 15px;
    color: white;
}

.soon {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 15px;
    color: transparent;
    -webkit-text-stroke: 1.5px white;
    text-stroke: 1.5px white;
}

/* Hills */
.hills {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
}

.hill {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 50% 50% 0 0;
}

.hill-back {
    height: 140px;
    background: #2a7a75;
    transform: translateY(30px);
}

.hill-front {
    height: 100px;
    background: #1f5f5a;
    transform: translateY(20px) translateX(100px);
    width: 120%;
}

/* Notify Section */
.notify-section {
    position: absolute;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 20;
}

.notify-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: white;
}

.notify-form {
    display: flex;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.notify-form input {
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: white;
    width: 200px;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.notify-form button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #3dbdb5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: white;
    transform: scale(1.02);
}

/* Social Icons */
.social-icons {
    position: absolute;
    bottom: 25px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.social-icons a {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 20px;
        letter-spacing: 5px;
        top: 36%;
    }

    .coming,
    .soon {
        font-size: 32px;
        letter-spacing: 8px;
    }

    .main-heading {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .sun {
        width: 150px;
        height: 150px;
    }

    .notify-form input {
        width: 150px;
    }

    .header-text {
        font-size: 10px;
        letter-spacing: 2px;
        text-align: center;
        padding: 0 20px;
    }
}