
body {
    background: linear-gradient(135deg, #0a0a0a, #2c2c2c);
    color: #f0f0f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}


.main-content-wrapper {
    max-width: 400px; 
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px; 
    box-sizing: border-box;
}

.image-box {
    background: rgba(44, 44, 44, 0.7);
    border-radius: 15px; 
    padding: 8px; 
    margin-bottom: 15px; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    border: 2px solid #25fd42;
    box-shadow: 0 0 15px 4px rgba(37, 253, 66, 0.4); 
}

.image-box:hover {
    transform: translateY(-3px); 
    box-shadow: 0 0 20px 8px rgba(37, 253, 66, 0.7);
}

.image-box img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.logo {
    width: 70%;
    max-width: 120px; 
}

.banner {
    width: 100%;
}


h2 {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    font-weight: 600;
    margin: 8px 0;
    font-size: 1.1em; 
}

h4 {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    font-weight: 400;
    margin: 5px 0;
    font-size: 0.9em; 
}


.timer { 
    width: 90px; 
    height: 90px; 
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 12px 4px rgba(37, 253, 66, 0.5); 
    border-radius: 50%;
    background: rgba(44, 44, 44, 0.6);
    transition: box-shadow 0.3s ease;
}

.timer:hover {
    box-shadow: 0 0 20px 8px rgba(37, 253, 66, 0.8);
}

.timer svg {
    width: 100%;
    height: 100%;
}

.timer circle {
    stroke: #25fd42;
    stroke-width: 6px; 
}

.timer text {
    fill: #FFFFFF !important;
    font-weight: bold;
    font-size: 22px !important; 
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}