:root {
    --bg-color: #fcfcfc;
    --text-main: #111827;
    --text-muted: #6b7280;
    --box-bg: #ffffff;
    --box-border: #e5e7eb;

    /* Typography */
    --font-heading: 'outfit', serif;
    --font-body: 'outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Content */
.main-content {
    text-align: center;
    width: 100%;
    animation: fadeIn 1s ease-out forwards;
}

.logo {
    max-width: 130px;
    height: auto;
    margin-bottom: -1.5rem;
}

/* Typography */
.title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 15px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.time-box {
    background: var(--box-bg);
    border: 1px solid var(--box-border);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
}

.time-value {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--box-bg);
    border: 1px solid var(--box-border);
    color: var(--text-muted);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.social-links a:hover {
    color: var(--text-main);
    border-color: var(--text-main);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */
@media (max-width: 480px) {
    .countdown {
        gap: 0.75rem;
    }

    .time-box {
        min-width: 75px;
        padding: 1rem 0.5rem;
    }

    .time-value {
        font-size: 1.5rem;
    }
}