:root {
    --primary: #000000;
    --accent: #6366f1;
    --text-main: #1d1d1f;
    --text-secondary: #86868b;
    --bg-main: #ffffff;
    --bg-alt: #f5f5f7;
    --border: rgba(0, 0, 0, 0.08);
    --card-bg: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Sophisticated Background */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at top right, #f8fafc, transparent),
                radial-gradient(circle at bottom left, #f1f5f9, transparent);
    background-color: var(--bg-main);
}

/* Remove cartoonish blobs, keep very subtle texture if any */
.blob {
    display: none;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 80px 40px;
    margin: auto 0;
    animation: reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Logo Section */
.logo-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 48px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(-5px);
}

.logo-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.1;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 80px;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 40px 0;
    width: 100%;
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
    margin-top: auto;
}

.enxora-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.enxora-brand:hover {
    color: var(--text-main);
}

.footer-logo-wrapper {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    padding: 4px;
}

.logo-footer {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 60px 24px;
    }

    h1 {
        font-size: 2.75rem;
        letter-spacing: -0.02em;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 48px;
    }

    .countdown {
        gap: 16px;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-value {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .countdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}


