﻿/*.time-counter-container {
    background: linear-gradient(3600deg, #1c277c 0%, #1d67bd 100%);
    padding: 1em 1em 0em;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    text-align:center;
}*/

.time-counter-container {
    background: linear-gradient(3600deg, #053658 0%, #091f48 100%);
    padding: 1em 1em 0em;
    border-radius:20px;
    padding:1.5em;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    position: absolute;
    left:50%;
    top:2.5%;
    transform: translate(-50%, -50%);
    z-index:1;
    text-align:center;
    border:1px solid #fff;
}
        
.time-counter-title {
    font-family:'merriweatheritalic';
    font-size: 1.5rem;
    margin-bottom:1em;
    color: #fff;
    position: relative;
    z-index: 1;
}
        
.time-counter {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    background:none;
}
        
.time-counter-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 10px;
    min-width: 80px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
        
.time-counter-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}
        
.time-counter-value {
    font-size: 2rem;
    font-family:'merriweatherbold';
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 126, 95, 0.5);
    line-height: 1;
    margin-bottom: 8px;
}
        
.time-counter-label {
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
        
.event-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
        
.time-counter-container .event-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #feb47b;
}
        
.time-counter-container .event-info p {
    font-size: 1.2rem;
    color: #b8c2d8;
    line-height: 1.7;
    margin-bottom: 20px;
}
        
.time-counter-container .event-date {
    display: inline-block;
    background: rgba(255, 126, 95, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff7e5f;
    margin-top: 10px;
    border: 1px solid rgba(255, 126, 95, 0.3);
}
.time-counter-container .reg-btn{
    position:relative;
    overflow:hidden;
    padding: 10px 15px;
    border-radius: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(200deg, #512da8 0%, #9c27b0 100%);
    font-family: 'source_sans_proregular';
    color:#fff;
    display:inline-block;
    margin:10px}
    
.time-counter-container a:hover, .time-counter-container a:active, .time-counter-container a:visited  {text-decoration:none;color:#fff}
        
.time-counter-container .reg-btn::before {
position: absolute;
top: 0;
left: -60%;
display: block;
content: '';
width: 50%;
height: 100%;
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
transform: skewX(-25deg);
z-index: 2;
}

.time-counter-container .reg-btn:hover::before {
-webkit-animation: shine 1.3s;
animation: shine 1.3s;
}

@-webkit-keyframes shine {
100% {
left: 125%;
}
}
@keyframes shine {
100% {
left: 125%;
}
}
        
/* Responsive design */
@media (max-width: 768px) {
            
    .time-counter-box {
        min-width: 120px;
        padding: 20px 10px;
    }
            
    .time-counter-value {
        font-size: 3.5rem;
    }
            
    .time-counter-label {
        font-size: 1rem;
    }
            
    .time-counter-container, .event-info {
        padding: 25px;
    }
}
        
@media (max-width: 480px) {
            
    .time-counter {
        gap: 15px;
    }
            
    .time-counter-box {
        min-width: 100px;
        padding: 15px 5px;
    }
            
    .time-counter-value {
        font-size: 2.8rem;
    }
}
