/* Optimized Design to match reference image */

:root {
    --site-primary: #0A3D62; /* Default Header Blue */
    --site-accent: #B33939;  /* Default CTA Red */
    --site-secondary: #0D4E7B; /* Default Gradient Blue */
    
    --primary-blue: var(--site-primary);
    --primary-red: var(--site-accent);
    --primary-yellow: #FFB142; /* Hero Yellow */
    --accent-green: #218C74; /* Success Green */
    --bg-night: #020617;
}

body {
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Glass & Glow */
.glass {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* Specific Section Themes */
.hero-yellow {
    background: #ffc107;
    background-image: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 60%),
                      url('https://www.transparenttextures.com/patterns/cubes.png');
}

.banner-dark {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1498931299472-f7a63a5a1cfa?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.banner-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(179, 57, 57, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* Table Design */
.discount-table {
    border-collapse: collapse;
    width: 100%;
}

.discount-table th, .discount-table td {
    border: 1px solid #fff;
    padding: 12px;
    text-align: center;
    font-weight: 800;
}

.discount-table th {
    background: #0A3D62;
    color: white;
}

.discount-table td {
    background: rgba(10, 61, 98, 0.8);
    color: white;
}

/* Countdown Boxes Refined */
.countdown-box {
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    min-width: 100px;
    background: none;
    box-shadow: none;
}

.countdown-box .val-unit {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.countdown-label {
    background: rgba(0,0,0,0.4);
    color: rgba(255,255,255,0.7);
    font-size: 10px;
    padding: 8px 0;
    display: block;
    letter-spacing: 0.2em;
    font-weight: 700;
}

/* Floating Elements */
.float-wa {
    position: fixed;
    bottom: 300px;
    left: 20px;
    z-index: 100;
}

.float-pricelist {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 100;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: right center;
}

/* Scrolling Text Override */
.scrolling-text-container {
    background: transparent;
    color: white;
}

.mask-fade-sides {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scrolling-text {
    animation: scroll 35s linear infinite;
    display: flex;
    width: fit-content;
}

.scrolling-text:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer structure */
footer {
    background: #0A3D62;
    color: white;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

footer h4 {
    border-bottom: 2px solid white;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.bottom-red {
    background: #B33939;
}
