* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6b46c1;
    --light-purple: #9f7aea;
    --dark-purple: #553c9a;
    --ultra-light-purple: #e9d8fd;
    --bg-gradient-start: #2d1b4e;
    --bg-gradient-end: #0f0520;
    --text-light: #ffffff;
    --text-muted: #d8b4fe;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 5rem 2rem;
}

/* Background decorations */
.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Floating particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--light-purple);
    border-radius: 50%;
    opacity: 0.6;
    animation: rise 15s infinite ease-in;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
}

@keyframes rise {
    0% {
        bottom: -10%;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 110%;
        opacity: 0;
    }
}

/* Floating flowers */
.flowers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.flower {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
    animation: floatFlower 20s infinite ease-in-out;
}

.flower svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(159, 122, 234, 0.4));
}

.flower-1 {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.flower-2 {
    left: 20%;
    animation-delay: 5s;
    animation-duration: 22s;
}

.flower-3 {
    left: 40%;
    animation-delay: 10s;
    animation-duration: 28s;
}

.flower-4 {
    left: 60%;
    animation-delay: 3s;
    animation-duration: 24s;
}

.flower-5 {
    left: 80%;
    animation-delay: 8s;
    animation-duration: 26s;
}

.flower-6 {
    left: 95%;
    animation-delay: 12s;
    animation-duration: 23s;
}

@keyframes floatFlower {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) rotate(0deg) scale(0.8);
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translateX(30px) rotate(180deg) scale(1);
    }
    90% {
        opacity: 0.7;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-20px) rotate(360deg) scale(0.8);
    }
}

/* Content */
.content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Logo section */
.logo-section {
    margin-bottom: 3rem;
}

.logo-container {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 100px;
    height: 100px;
    color: var(--light-purple);
    filter: drop-shadow(0 0 20px rgba(159, 122, 234, 0.5));
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ultra-light-purple) 0%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.location svg {
    color: var(--light-purple);
    filter: drop-shadow(0 0 10px rgba(159, 122, 234, 0.5));
}

.city-name {
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--ultra-light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Main text */
.main-text {
    margin-bottom: 3rem;
}

.coming-soon {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
    font-style: italic;
}

/* Notify section */
.notify-section {
    margin-bottom: 3rem;
}

.notify-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(159, 122, 234, 0.3);
    background: rgba(107, 70, 193, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(216, 180, 254, 0.5);
}

.email-input:focus {
    border-color: var(--light-purple);
    background: rgba(107, 70, 193, 0.2);
}

.notify-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    border: none;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.6);
}

.notify-btn:active {
    transform: translateY(0);
}

/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(107, 70, 193, 0.2);
    border: 1px solid rgba(159, 122, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-purple);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-purple);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.5);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(15, 5, 32, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(159, 122, 234, 0.2);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
}

.footer .developer-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer .developer-credit a {
    color: var(--light-purple);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer .developer-credit a:hover {
    color: var(--ultra-light-purple);
    text-decoration: underline;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 1s ease-out 0.3s both;
}

.slide-up-delay {
    animation: slideUp 1s ease-out 0.6s both;
}

.fade-in-late {
    animation: fadeIn 1s ease-out 0.9s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .coming-soon {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .email-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2rem;
    }

    .coming-soon {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .logo-icon {
        width: 70px;
        height: 70px;
    }
}

