/* ============================================
   SERP.WS - COMING SOON
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #0a0a12;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Google Sans Flex', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
}

/* Background */
.background-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(120, 119, 198, 0.25), transparent),
        radial-gradient(ellipse 50% 50% at 90% 50%, rgba(139, 92, 246, 0.15), transparent),
        radial-gradient(ellipse 50% 50% at 10% 50%, rgba(59, 130, 246, 0.1), transparent),
        radial-gradient(ellipse 60% 40% at 50% 110%, rgba(236, 72, 153, 0.2), transparent);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.5);
    top: -100px;
    right: -50px;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(59, 130, 246, 0.4);
    bottom: -100px;
    left: -50px;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(236, 72, 153, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.grid-overlay {
    display: none;
}

/* Main Layout */
.main-container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 25px;
    max-height: 100vh;
}

/* Logo */
.logo-container {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 34px;
    font-weight: 600;
}

.logo-icon {
    font-size: 44px;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(167, 139, 250, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 25px rgba(167, 139, 250, 0.6));
    }

    50% {
        transform: translateY(-3px) rotate(5deg);
        filter: drop-shadow(0 0 35px rgba(236, 72, 153, 0.8));
    }
}

.logo-text {
    display: flex;
    align-items: baseline;
}

.logo-serp {
    background: linear-gradient(180deg, #ffffff 0%, #c4c4cc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.logo-dot {
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 0.9em;
}

/* Hero - SMALL */
.hero {
    text-align: center;
    flex-shrink: 0;
}

.hero-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.title-line {
    display: inline;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* Countdown - BIG */
.countdown-section {
    flex-shrink: 0;
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 50px 90px;
    box-shadow:
        0 0 100px rgba(139, 92, 246, 0.25),
        0 0 200px rgba(236, 72, 153, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
}

.countdown-value {
    font-size: 84px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #f97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
    text-shadow: 0 0 60px rgba(167, 139, 250, 0.3);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.countdown-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 14px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 60px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.12);
    margin-top: -25px;
}

/* Signup */
.signup-section {
    width: 100%;
    max-width: 450px;
    flex-shrink: 0;
}

.input-wrapper {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 5px;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-main);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.signup-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    margin-top: 8px;
}

/* Social */
.social-section {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gradient-main);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    z-index: 1;
}

/* Responsive */
@media (max-height: 700px) {
    .main-container {
        gap: 15px;
        padding: 15px;
    }

    .countdown-container {
        padding: 20px 35px;
    }

    .countdown-value {
        font-size: 42px;
    }

    .countdown-item {
        min-width: 60px;
    }

    .hero-subtitle {
        display: none;
    }
}

@media (max-height: 600px) {
    .countdown-value {
        font-size: 36px;
    }

    .countdown-container {
        padding: 15px 25px;
        gap: 10px;
    }

    .signup-section {
        display: none;
    }
}

@media (max-width: 600px) {
    .countdown-container {
        padding: 20px 25px;
        gap: 8px;
    }

    .countdown-value {
        font-size: 36px;
    }

    .countdown-item {
        min-width: 55px;
    }

    .countdown-separator {
        font-size: 28px;
    }

    .input-wrapper {
        flex-direction: column;
        border-radius: 16px;
        padding: 10px;
    }

    .input-wrapper input {
        text-align: center;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}