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

html, body {
    height: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.coming-soon {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(30, 15, 8, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(20, 10, 5, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(25, 12, 6, 0.4) 0%, transparent 45%),
        #0a0a0a;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -55%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.12) 0%, rgba(139, 0, 0, 0.04) 40%, transparent 70%);
    animation: orbPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(-50%, -55%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -55%) scale(1.15);
        opacity: 1;
    }
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 1;
}

.logo {
    width: clamp(180px, 40vw, 400px);
    height: auto;
    filter: drop-shadow(0 0 30px rgba(139, 0, 0, 0.2));
    animation: logoEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) both,
               logoFloat 6s ease-in-out 1.2s infinite;
}

@keyframes logoEnter {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
        filter: drop-shadow(0 0 0px rgba(139, 0, 0, 0));
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 30px rgba(139, 0, 0, 0.2));
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 1.5rem 0;
    animation: dividerEnter 0.8s ease 1s both;
}

@keyframes dividerEnter {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

.title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(1rem, 3vw, 1.6rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: clamp(6px, 1.5vw, 14px);
    text-indent: clamp(6px, 1.5vw, 14px);
    animation: titleEnter 1s ease 1.3s both;
}

.footer {
    position: absolute;
    bottom: clamp(16px, 3vh, 32px);
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    animation: footerEnter 1s ease 1.8s both;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.8rem;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease, transform 0.3s ease;
}

.socials a svg {
    width: 18px;
    height: 18px;
}

.socials a:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.footer p {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
    line-height: 1.8;
}

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

@keyframes titleEnter {
    from {
        opacity: 0;
        letter-spacing: clamp(12px, 3vw, 28px);
        text-indent: clamp(12px, 3vw, 28px);
    }
    to {
        opacity: 1;
        letter-spacing: clamp(6px, 1.5vw, 14px);
        text-indent: clamp(6px, 1.5vw, 14px);
    }
}
