/* Obsidian Studio - Coming Soon */

:root {
    --purple: #9333ea;
    --purple-light: #a855f7;
    --purple-bright: #c084fc;
    --purple-dark: #7c3aed;
    --purple-glow: rgba(147, 51, 234, 0.7);
    --bg: #030305;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

/* Background */
.bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 100% 80% at 50% 30%, rgba(147, 51, 234, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        var(--bg);
}

.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    width: 700px;
    height: 700px;
    background: var(--purple-glow);
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.4;
    animation: pulse 6s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.5);
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.55;
        transform: translateX(-50%) scale(1.15);
    }
}

/* Main */
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    gap: 1.75rem;
    max-width: 650px;
}

/* Logo */
.logo-container {
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px var(--purple-glow)) drop-shadow(0 0 80px rgba(147, 51, 234, 0.4));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

/* Tagline */
.tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.tagline span {
    color: var(--purple-bright);
    margin: 0 0.6em;
    text-shadow: 0 0 20px var(--purple-glow);
}

/* Message */
.message {
    padding: 1.75rem 2.25rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 40px rgba(147, 51, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.message p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.9;
}

.message em {
    font-style: normal;
    color: var(--purple-bright);
    text-shadow: 0 0 15px rgba(192, 132, 252, 0.5);
}

.message strong {
    font-weight: 600;
    color: var(--text);
    background: linear-gradient(135deg, #fff, var(--purple-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.75rem 0;
}

.count-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.15) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    min-width: 85px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.15);
}

.count-box:hover {
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.25) 0%, rgba(124, 58, 237, 0.12) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
}

.count-num {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, #fff 0%, var(--purple-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.count-num.tick {
    animation: tick 0.35s ease;
}

@keyframes tick {
    0% {
        transform: scale(1.15);
        filter: brightness(1.5);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.count-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.6rem;
    font-weight: 500;
}

.count-sep {
    font-size: 2.25rem;
    color: var(--purple-bright);
    opacity: 0.7;
    font-weight: 300;
    text-shadow: 0 0 20px var(--purple-glow);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.3;
    }
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow:
        0 5px 30px rgba(147, 51, 234, 0.5),
        0 0 60px rgba(147, 51, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 40px rgba(147, 51, 234, 0.6),
        0 0 80px rgba(147, 51, 234, 0.3);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.35s;
}

.delay-4 {
    animation-delay: 0.5s;
}

.delay-5 {
    animation-delay: 0.65s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .logo {
        width: 170px;
        height: 170px;
    }

    .logo-container::before {
        width: 200px;
        height: 200px;
    }

    .countdown {
        gap: 0.4rem;
    }

    .count-box {
        min-width: 68px;
        padding: 1rem 1.1rem;
    }

    .count-num {
        font-size: 2rem;
    }

    .count-sep {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }

    .message {
        padding: 1.5rem 1.75rem;
    }
}

@media (max-width: 420px) {
    .count-sep {
        display: none;
    }

    .count-box {
        min-width: 60px;
        padding: 0.9rem 1rem;
    }

    .count-num {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }
}

::selection {
    background: var(--purple);
    color: white;
}