:root {
    /* Default Dark Theme Variables */
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --accent-primary: #e91e63;
    /* Pinkish Red */
    --accent-secondary: #ff9800;
    /* Orange */
    --text-gradient: linear-gradient(90deg, #e91e63, #ff9800);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --bg-gradient: radial-gradient(circle at 20% 20%, #2a0a12 0%, #000000 70%);
    --shape-opacity: 0.15;

    --font-main: 'Outfit', sans-serif;
}

/* Light Theme Variables */
body.light-mode {
    --bg-color: #f4f6f8;
    --text-color: #333333;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(0, 0, 0, 0.1);
    --bg-gradient: radial-gradient(circle at 50% 50%, #ffffff 0%, #e0e0e0 100%);
    --shape-opacity: 0.10;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Theme Toggle Button */
.theme-toggle {
    position: absolute;
    top: 20px;
    right: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    transform: rotate(15deg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: color 0.5s ease;
}

/* Background Animation Layer */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-gradient);
    transition: background 0.5s ease;
}

.shape {
    position: absolute;
    filter: blur(60px);
    opacity: var(--shape-opacity);
    animation: float 25s infinite ease-in-out;
    z-index: -1;
    transition: opacity 0.5s ease;
}

/* Shape 1: Top Left Pinkish */
.shape:nth-child(1) {
    top: -15%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: linear-gradient(135deg, #ff0055, #6a0025);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    animation-delay: 0s;
}

/* Shape 2: Bottom Right Orange/Red */
.shape:nth-child(2) {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: linear-gradient(135deg, #ff5e00, #ff0040);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    animation-delay: -5s;
    opacity: var(--shape-opacity);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(2deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-2deg);
    }
}

/* Main Container */
.container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    z-index: 10;
}

/* Top Branding */
.branding {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.branding img {
    height: 135px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    letter-spacing: -1px;
}

.highlight-text {
    font-size: 3.5rem;
    font-weight: 300;
    font-style: italic;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 3rem;
}

/* Countdown Box */
.countdown-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: background 0.5s ease, border 0.5s ease;
}

.time-unit {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-color);
    opacity: 0.7;
    letter-spacing: 2px;
}

.separator {
    font-size: 2rem;
    color: var(--text-color);
    opacity: 0.3;
    margin-top: -1.5rem;
    font-weight: 300;
}

.seconds-color {
    color: var(--accent-primary);
}

/* Quote */
.quote {
    font-style: italic;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Section */
.social-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.6;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    group: hover;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-name {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-color);
    opacity: 0.6;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.social-item:hover .icon-circle {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

.social-item:hover .social-name {
    color: var(--text-color);
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    h1,
    .highlight-text {
        font-size: 2.5rem;
    }

    .countdown-box {
        flex-wrap: wrap;
        gap: 1rem;
        border-radius: 30px;
        padding: 1.5rem;
    }

    .time-unit {
        min-width: 60px;
    }

    .number {
        font-size: 2rem;
    }

    .separator {
        display: none;
    }

    .theme-toggle {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}