:root {
    --primary-color: #D2935F;
    --primary-light: #E8A374;
    --secondary-color: #D79162;
    --text-primary: #ffffff;
    --text-secondary: #d0d0d0;
    --bg-dark: #0e0e0e;
    --bg-darker: #1c1c1c;
}

body, html {
    color: var(--text-primary);
    font-family: 'Burbank Big Rg Bk', 'BurbankSmall', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
}

.main {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 40px 20px;
    box-sizing: border-box;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 700px;
    width: 100%;
    gap: 40px;
}

.season-title {
    font-size: 48px;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(210, 147, 95, 0.3);
    animation: fadeInDown 0.8s ease-in-out;
}

.progress-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.progressBorder {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(210, 147, 95, 0.3);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.8s ease-in-out 0.2s both;
}

.progressBar {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    height: 100%;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(210, 147, 95, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.progressBar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-stats {
    font-size: 16px;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.progress-percentage {
    font-size: 28px;
    color: #ffffff;
    font-weight: 800;
    display: block;
    animation: fadeIn 0.8s ease-in-out 0.3s both;
}

.countdown-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.8s ease-in-out 0.4s both;
}

.countdown-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(232, 163, 116, 0.3);
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-in-out 0.6s both;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(210, 147, 95, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-link:hover {
    background: rgba(210, 147, 95, 0.1);
    border-color: rgba(210, 147, 95, 0.5);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(210, 147, 95, 0.2);
}

.social-link.home {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: rgba(210, 147, 95, 0.3);
}

.social-link.home:hover {
    background: linear-gradient(135deg, rgba(210, 147, 95, 0.15), rgba(210, 147, 95, 0.08));
    border-color: rgba(210, 147, 95, 0.6);
    color: var(--primary-color);
}

.social-icon {
    font-size: 18px;
}

.social-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: var(--primary-light);
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .season-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .countdown-text {
        font-size: 24px;
    }

    .wrapper {
        gap: 30px;
        padding: 20px;
    }

    .progressBorder {
        height: 12px;
        width: 90%;
    }

    .progress-percentage {
        font-size: 24px;
    }

    .countdown-label {
        font-size: 11px;
    }

    .social-link {
        padding: 10px 18px;
        font-size: 13px;
        gap: 8px;
    }

    .social-icon {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .season-title {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .countdown-text {
        font-size: 20px;
    }

    .progress-percentage {
        font-size: 20px;
    }

    .wrapper {
        gap: 25px;
        padding: 15px;
    }

    .countdown-display {
        gap: 10px;
    }

    .countdown-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .progressBorder {
        width: 92%;
    }

    .social-links {
        gap: 12px;
        flex-wrap: wrap;
    }

    .social-link {
        padding: 9px 14px;
        font-size: 12px;
        min-width: 80px;
    }

    .social-icon {
        font-size: 14px;
    }

    .social-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .season-title {
        font-size: 24px;
        letter-spacing: 0px;
    }

    .countdown-text {
        font-size: 18px;
        letter-spacing: 0px;
    }

    .progress-percentage {
        font-size: 18px;
    }

    .wrapper {
        gap: 20px;
        padding: 12px;
    }

    .progress-container {
        gap: 10px;
    }

    .progressBorder {
        height: 10px;
        width: 95%;
        border-radius: 8px;
    }

    .countdown-display {
        gap: 8px;
        padding: 0;
    }

    .countdown-label {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .social-links {
        gap: 10px;
        flex-direction: column;
        width: 90%;
    }

    .social-link {
        padding: 8px 12px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
    }

    .social-icon {
        font-size: 13px;
    }
}

/* Backward compatibility for animate.css classes */
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animated {
    animation-fill-mode: both;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

footer,header {
    position: fixed;
    text-align: center;
    margin-left: -40px;
    margin-right: 0;
    margin-bottom: 0;
    background-color: var(--main-color);
    height: 18%;
    width: 200%;
    transform: rotate(1.5deg);
    transition: .3s;
    outline: transparent solid 1px;
    background-color: #000
}

header {
    margin-top: -6vh
}

footer {
    margin-top: -5.5vh
}

@media only screen and (max-width: 800px) {
    .progressBorder {
        width:80%
    }
}

#title {
    font-size: 40px
}

#subtitle {
    font-size: 30px;
    display: none
}

#progressBar {
    width: 0%
}

#countdown {
    font-size: 25px
}

.socials {
    padding: .2em
}

@media (max-width: 620px) {
    #progressBorder {
        width:92.5%
    }
}

@media (max-width: 500px) {
    #title {
        font-size:28px
    }

    #progressBar {
        height: 60px;
        line-height: 60px
    }
}

@media (min-width: 1600px) {
    .main {
        zoom:150%
    }
}

:root {
    --main-color: #0C0713;
    --main-color-hover: #2f1f43
}
