/* ================================================
   GMOOCA Maintenance Placeholder – Tasteful Casino Theme
   Enhanced Progress Bar: Faster shine, pulsing glow, moving highlight
   Clean, professional, responsive, accessible
   ================================================ */

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

header {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 1rem;
}

.banner {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.18); /* Slightly stronger glow as you like */
}

main {
    max-width: 900px;
    padding: 1.5rem;
    flex: 1;
}

h1 {
    font-size: 2.8rem;
    color: #D4AF37;
    margin: 1.5rem 0 1rem;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3); /* Matches banner glow feel */
}

.subtitle {
    font-size: 1.3rem;
    color: #bbb;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.timer {
    font-size: 1.8rem;
    color: #D4AF37;
    margin: 1rem 0;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.25);
}

/* Enhanced Progress Bar – More Dynamic */
.progress-container {
    width: 80%;
    max-width: 600px;
    background: #111;
    border: 2px solid #D4AF37; /* Stronger border for presence */
    height: 32px;               /* Slightly taller */
    margin: 1.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15); /* Subtle container glow */
}

.progress-bar {
    height: 100%;
    width: 0%;                  /* JS controls real width */
    background: linear-gradient(90deg, #b8860b 0%, #ffcc33 35%, #ffd700 50%, #ffcc33 65%, #b8860b 100%);
    background-size: 300% 100%; /* Wider for smoother movement */
    animation: shine 4s linear infinite; /* Faster cycle */
    transition: width 1s ease-out;
    position: relative;
    box-shadow: inset 0 0 12px rgba(255, 215, 0, 0.4); /* Inner glow */
}

/* Faster, more noticeable shine gradient */
@keyframes shine {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Moving highlight chase (like light stripe) */
.progress-bar::before {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 220, 0.7), transparent);
    animation: chase 5s linear infinite;
    opacity: 0.8;
}

@keyframes chase {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* Pulsing outer glow on container */
.progress-container::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.25), transparent 70%);
    animation: pulse-glow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%      { opacity: 0.8; transform: scale(1.02); }
}

/* FAQ */
.faq {
    max-width: 700px;
    margin: 2.5rem auto 3rem;
}

.faq h2 {
    font-size: 1.9rem;
    color: #D4AF37;
    margin-bottom: 1.2rem;
}

.faq-item {
    margin-bottom: 1rem;
    text-align: left;
}

.faq-question {
    background: #1a1a1a;
    padding: 1rem 1.2rem;
    cursor: pointer;
    border: 1px solid #444;
    border-radius: 6px;
    transition: all 0.3s;
    user-select: none;
}

.faq-question:hover,
.faq-question:focus {
    background: #282828;
    border-color: #D4AF37;
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.faq-answer {
    display: none;
    padding: 1.2rem;
    background: #0f0f0f;
    border: 1px solid #444;
    border-top: none;
    border-radius: 0 0 6px 6px;
    line-height: 1.6;
}

/* Contact */
.contact {
    margin: 2rem 0;
    font-size: 1.1rem;
}

.contact a {
    color: #D4AF37;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.contact a:hover,
.contact a:focus {
    color: #fff;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Footer */
footer {
    width: 100%;
    padding: 2rem 1rem;
    background: #000;
    border-top: 1px solid #D4AF37;
    margin-top: auto;
}

.logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.logo {
    height: 60px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s, filter 0.3s;
}

.logo:hover,
.logo:focus {
    opacity: 1;
    transform: scale(1.08);
    filter: brightness(1.15) drop-shadow(0 0 8px #D4AF37);
}

/* Responsive */
@media (max-width: 768px) {
    h1       { font-size: 2.2rem; }
    .timer   { font-size: 1.4rem; }
    .progress-container { width: 90%; height: 28px; }
}