:root {
    --color-primary: #ff7b00;
    --color-secondary: #333333;
    --color-light: #f5f5f5;
    --color-dark: #222222;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-light);
    color: var(--color-dark);
    background-image: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 40, 40, 0.85);
    z-index: -1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

h1 {
    color: var(--color-primary);
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
}

.countdown {
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 15px;
    padding: 35px 25px;
    margin: 35px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.countdown-display {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.countdown-item {
    margin: 10px;
    min-width: 120px;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.countdown-label {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.weather-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.weather {
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

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

.weather-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.weather-info {
    font-size: 1.1rem;
    line-height: 1.6;
}

.weather-city {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.weather-details {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.weather-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weather-detail i {
    margin-bottom: 5px;
    color: var(--color-primary);
}

.toggle-weather {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.toggle-weather:hover {
    background-color: #ff8c1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
}

.toggle-weather i {
    font-size: 1.1rem;
}

.social-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none !important;
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 123, 0, 0.3);
    text-decoration: none !important;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .countdown-display {
        gap: 5px;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        border-radius: 10px;
    }
}