@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;900&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
    --bg-color: #0c0c0c;
    --text-primary: #ffffff;
    --text-accent: #666666;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vw;
    overflow: hidden;
}

/* Background elements hidden */
.bg-blobs {
    display: none;
}

/* Main Container - removed glassmorphism */
.glass-container {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    width: 100%;
    max-width: 1200px;
    text-align: left;
    box-shadow: none;
    animation: none;
    position: relative;
    z-index: 10;
}

/* Typography Elements */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h1 i {
    font-weight: 400;
    font-style: italic;
    color: var(--text-accent);
}

.info-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    color: var(--text-accent);
    margin-bottom: 4rem;
    max-width: 500px;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.url-display {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 0.2em;
    transition: color 0.4s, border-color 0.4s;
    cursor: pointer;
    word-break: break-all;
    background: none;
    margin-bottom: 0;
}

.url-display:hover {
    color: var(--text-accent);
    border-color: var(--text-accent);
    transform: none;
    box-shadow: none;
    background: none;
}

.url-display::after {
    display: none;
}

/* Massive Background Countdown */
.timer-container {
    position: absolute;
    top: 50%;
    right: -5vw;
    transform: translateY(-50%);
    z-index: -1;
    pointer-events: none;
}

.countdown {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15rem, 40vw, 50rem);
    font-weight: 900;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.05em;
    margin: 0;
    text-shadow: none;
    animation: none;
}

.progress-bar-bg {
    display: none;
}

/* Animations */
.stagger-1 { animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(50px); }
.stagger-2 { animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards; opacity: 0; transform: translateY(50px); }
.stagger-3 { animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; opacity: 0; transform: translateY(50px); }

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

/* Error State */
.error-icon {
    display: none;
}

.error-title {
    color: var(--text-primary);
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: var(--text-primary);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-home:hover {
    transform: scale(1.05);
    opacity: 1;
}

.hidden {
    display: none !important;
}
