/* Reset & Global */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* 
   Body background color removed or set to transparent 
   to allow background-image (inline) to show through.
*/
body { 
    font-family: 'Helvetica Neue', Arial, sans-serif; 
    background-color: transparent; 
    color: #fff; 
    min-height: 100vh; 
}

/* Overlay System */
.kounter-overlay {
    min-height: 100vh;
    width: 100%;
    /* Ensure the overlay is semi-transparent so the body image is visible */
    background: rgba(0, 0, 0, 0.7) !important; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.kounter-wrapper { text-align: center; width: 100%; max-width: 800px; z-index: 10; }

/* Logo & Text */
.kounter-logo { max-width: 200px; height: auto; margin: 0 auto 30px auto; display: block; }
.logo { font-size: 24px; font-weight: bold; letter-spacing: 2px; margin-bottom: 40px; }
.logo span { color: #3498db; }
h1 { font-size: 48px; margin-bottom: 20px; font-weight: 300; text-transform: uppercase; letter-spacing: 4px; line-height: 1.2; }
p { font-size: 18px; margin-bottom: 40px; opacity: 0.8; }

/* Countdown */
.countdown-container { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; flex-wrap: wrap; }
.box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); padding: 25px; border-radius: 10px; min-width: 120px; backdrop-filter: blur(5px); }
.box span { display: block; font-size: 42px; font-weight: bold; color: #3498db; }
.box label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; }

/* Subscription Form */
.subscription-form { position: relative; max-width: 500px; margin: 0 auto; width: 100%; }
.subscription-form input { width: 100%; padding: 18px 25px; border-radius: 40px; border: 1px solid rgba(255,255,255,0.3); background: rgba(0,0,0,0.3); color: #fff; font-size: 16px; outline: none; }
.subscription-form button { position: absolute; right: 6px; top: 6px; padding: 12px 25px; border-radius: 35px; border: none; background: #3498db; color: #fff; font-weight: bold; cursor: pointer; transition: 0.3s; }

/* Social Icons */
.kounter-social-icons { display: flex; justify-content: center; gap: 25px; margin-top: 40px; }
.kounter-social-icons a { color: #fff; opacity: 0.7; transition: 0.3s; display: inline-block; }
.kounter-social-icons a:hover { opacity: 1; transform: translateY(-3px); color: #3498db; }
.kounter-social-icons svg { width: 24px; height: 24px; fill: currentColor; }

/* Light Theme Overrides */
.kounter-light-theme { color: #2f3640; }
.kounter-light-theme .kounter-overlay { 
    background: rgba(255, 255, 255, 0.85) !important; 
}
.kounter-light-theme h1, .kounter-light-theme .logo { color: #2f3640; }
.kounter-light-theme p { color: #57606f; }
.kounter-light-theme .box { background: #fff; border: 1px solid #dcdde1; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.kounter-light-theme .box span { color: #9c88ff; }
.kounter-light-theme .subscription-form input { border: 1px solid #dcdde1; color: #2f3640; background: #fff; }
.kounter-light-theme .subscription-form button { background: #9c88ff; }
.kounter-light-theme .kounter-social-icons a { color: #2f3640; }
.kounter-light-theme .kounter-social-icons a:hover { color: #9c88ff; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 30px; letter-spacing: 2px; }
    .box { min-width: 80px; padding: 15px; }
    .box span { font-size: 26px; }
}