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

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(-45deg, #f0f8ff, #e6f2ff, #d9edff, #cce5ff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    padding-top: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
}

.header {
    margin-bottom: 15px;
    margin-top: 0;
    animation: pulse 2s infinite;
}

.logo {
    max-width: 200px;
    margin-bottom: 8px;
    margin-top: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.2rem;
    color: #0056b3;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.3rem;
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.countdown-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.15);
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

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

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

.time-block span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056b3;
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 15px 10px;
    width: 80px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.time-block span:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #0056b3, transparent);
    animation: pulse 2s infinite;
}

.time-label {
    font-size: 0.9rem;
    margin-top: 5px;
    color: #666;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.15);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

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

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item p {
    font-size: 1rem;
}

.contact-item a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #003d7a;
    text-decoration: underline;
}

.contact-item i {
    color: #0056b3;
    font-size: 1.2rem;
    margin-right: 10px;
    width: 24px;
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #003d7a;
    transform: translateY(-5px);
}

.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.location-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230056b3'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230056b3'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.email-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230056b3'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

@keyframes timeChange {
    0% { transform: scale(1.1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.time-changed {
    animation: timeChange 0.5s ease;
}

.time-block-hover {
    transform: scale(1.1);
}

.completion-message {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #0056b3;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@media (max-width: 600px) {
    .countdown {
        flex-wrap: wrap;
    }
    
    .time-block {
        min-width: 70px;
    }
    
    .time-block span:first-child {
        font-size: 2rem;
        width: 70px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    .social-media {
        flex-wrap: wrap;
    }
}
