/* ============================================
   CONFIGURATION - Update these colors/values
   ============================================ */
:root {
    --accent-color: #ff5722;
    --text-dark: #121317;
    --text-medium: #2f323b;
    --text-light: #4a5565;
    --text-lighter: #6a7282;
    --text-lightest: #364153;
    --border-color: #e5e7eb;
    --button-bg: #030213;
    --button-hover: #1a1828;
    --progress-bg: rgba(3, 2, 19, 0.2);
    --progress-fill: #030213;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(144.583deg, rgb(239, 246, 255) 0%, rgb(255, 255, 255) 50%, rgb(250, 245, 255) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

.body-container {
    width: 100%;
    max-width: 672px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* ============================================
   MEGAPHONE ICON
   ============================================ */
.icon-container {
    width: 96px;
    height: 96px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.megaphone-icon {
    width: 48px;
    height: 48px;
}

/* ============================================
   ANNOUNCEMENT BADGE
   ============================================ */
.announcement-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 24px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.01em;
    position: relative;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: relative;
}

.badge-dot::before {
    content: '';
    position: absolute;
    width: 12.3px;
    height: 12.3px;
    background-color: rgba(250, 250, 250, 0.35);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================
   MAIN HEADING
   ============================================ */
.main-heading {
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
}

/* ============================================
   COMPANY NAME CHANGE SECTION
   ============================================ */
.company-change {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.company-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.old-name {
    font-size: 24px;
    line-height: 32px;
    color: var(--text-medium);
    text-decoration: line-through;
    text-align: center;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.new-name {
    font-size: 24px;
    line-height: 32px;
    color: var(--accent-color);
    font-weight: 400;
    text-align: center;
}

.announcement-text {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-light);
    text-align: center;
    letter-spacing: -0.01em;
    max-width: 534px;
    margin: 0 auto;
}

/* ============================================
   COUNTDOWN CARD
   ============================================ */
.countdown-card {
    width: 100%;
    background-color: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    padding: 33px;
    margin-top: 32px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.redirect-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-lightest);
    text-align: center;
    letter-spacing: -0.01em;
}

.countdown-display {
    text-align: center;
}

.countdown-number {
    font-size: 60px;
    line-height: 60px;
    color: #1f2937;
    font-weight: 400;
}

.seconds-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-lighter);
    text-align: center;
    letter-spacing: -0.01em;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-container {
    width: 100%;
    height: 8px;
    background-color: var(--progress-bg);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--progress-fill);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 9999px;
}

/* ============================================
   REDIRECT BUTTON
   ============================================ */
.redirect-button {
    width: 100%;
    height: 40px;
    background-color: var(--button-bg);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.redirect-button:hover:not(:disabled) {
    background-color: var(--button-hover);
}

.redirect-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-arrow {
    width: 16px;
    height: 16px;
}

.redirect-button:disabled .button-arrow {
    display: none;
}

/* ============================================
   FOOTER TEXT
   ============================================ */
.footer-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-lighter);
    text-align: center;
    letter-spacing: -0.01em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .body-container {
        max-width: 100%;
        gap: 24px;
    }

    .main-heading {
        font-size: 36px;
        line-height: 40px;
    }

    .company-names {
        flex-direction: column;
        gap: 12px;
    }

    .old-name,
    .new-name {
        font-size: 20px;
        line-height: 28px;
    }

    .announcement-text {
        font-size: 16px;
        line-height: 24px;
    }

    .countdown-number {
        font-size: 48px;
        line-height: 48px;
    }

    .countdown-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
        line-height: 32px;
    }

    .countdown-number {
        font-size: 40px;
        line-height: 40px;
    }

    .icon-container {
        width: 80px;
        height: 80px;
    }

    .megaphone-icon {
        width: 40px;
        height: 40px;
    }
}
