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

html {
    background-color: #df3961;
}

body {
    background-color: #df3961;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ── Floating particles ── */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particles span {
    position: absolute;
    display: block;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float linear infinite;
}

.particles span:nth-child(1)  { width: 8px;  height: 8px;  left: 10%; animation-duration: 18s; animation-delay: -3s; }
.particles span:nth-child(2)  { width: 14px; height: 14px; left: 20%; animation-duration: 22s; animation-delay: -8s; }
.particles span:nth-child(3)  { width: 6px;  height: 6px;  left: 30%; animation-duration: 16s; animation-delay: -12s; }
.particles span:nth-child(4)  { width: 10px; height: 10px; left: 40%; animation-duration: 20s; animation-delay: -5s; }
.particles span:nth-child(5)  { width: 18px; height: 18px; left: 50%; animation-duration: 24s; animation-delay: -16s; }
.particles span:nth-child(6)  { width: 7px;  height: 7px;  left: 60%; animation-duration: 17s; animation-delay: -10s; }
.particles span:nth-child(7)  { width: 12px; height: 12px; left: 70%; animation-duration: 21s; animation-delay: -18s; }
.particles span:nth-child(8)  { width: 5px;  height: 5px;  left: 80%; animation-duration: 15s; animation-delay: -7s; }
.particles span:nth-child(9)  { width: 16px; height: 16px; left: 15%; animation-duration: 23s; animation-delay: -20s; }
.particles span:nth-child(10) { width: 9px;  height: 9px;  left: 90%; animation-duration: 19s; animation-delay: -14s; }
.particles span:nth-child(11) { width: 11px; height: 11px; left: 5%;  animation-duration: 20s; animation-delay: -9s; }
.particles span:nth-child(12) { width: 6px;  height: 6px;  left: 45%; animation-duration: 16s; animation-delay: -2s; }
.particles span:nth-child(13) { width: 13px; height: 13px; left: 75%; animation-duration: 22s; animation-delay: -15s; }
.particles span:nth-child(14) { width: 8px;  height: 8px;  left: 35%; animation-duration: 18s; animation-delay: -11s; }
.particles span:nth-child(15) { width: 10px; height: 10px; left: 85%; animation-duration: 25s; animation-delay: -6s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ── Main content ── */
main {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

/* ── Brand group (logo + tagline together) ── */
.brand-group {
    animation: fadeSlideDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.logo {
    width: 230px;
    height: auto;
    margin-bottom: 0.4rem;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0;
}

/* ── Divider ── */
.divider {
    width: 50px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.35);
    margin: 2.5rem auto;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

/* ── Coming soon ── */
.coming-soon {
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
    line-height: 1.3;
}

.cs-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
}

.cs-main {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* ── Instagram section ── */
.instagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
    opacity: 0;
}

.follow-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    opacity: 0.65;
}

.qr-code {
    width: 130px;
    height: 130px;
    border-radius: 12px;
    border: none;
    transition: transform 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
}

.insta-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.4rem;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.insta-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.insta-icon {
    width: 18px;
    height: 18px;
}

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

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

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

/* ── Mobile ── */
@media (max-width: 480px) {
    .logo {
        width: 220px;
        height: auto;
    }

    .cs-main {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }

    .cs-label {
        font-size: 0.95rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .qr-code {
        width: 110px;
        height: 110px;
    }
}
