/* Tema 444: preto, dourado, vermelho — Bootstrap 5 overlay */

:root {
    --bg: #000000;
    --gold: #ffd700;
    --red: #ff0000;
    --card: #0d0d0d;
    --muted: #a8a8a8;
}

.site-body {
    min-height: 100vh;
    background: var(--bg);
    color: #f5f5f5;
    font-family: "Montserrat", system-ui, -apple-system, sans-serif;
}

.site-nav {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.12);
}

.brand-444 {
    font-size: 1.75rem;
    letter-spacing: 0.06em;
    color: var(--gold) !important;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
}

.site-nav .nav-link {
    font-weight: 700;
    color: #eee !important;
}

.site-nav .nav-link:hover {
    color: var(--gold) !important;
}

.btn-gold {
    background: linear-gradient(180deg, #ffe066 0%, var(--gold) 100%);
    color: #111 !important;
    font-weight: 800;
    border: none;
}

.btn-gold:hover {
    filter: brightness(1.08);
    color: #000 !important;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    font-weight: 700;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000 !important;
}

.hero-strip {
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 12px;
    background: radial-gradient(ellipse at top, #1a1200 0%, #0a0a0a 55%, #000 100%);
    padding: 1.5rem;
}

.section-title {
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.game-card {
    background: var(--card);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
}

.game-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    background: #111;
}

.game-card-body {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.game-title {
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

.badge-40 {
    background: var(--red);
    color: #fff;
    font-weight: 800;
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    white-space: nowrap;
}

.panel-dark {
    background: #0a0a0a;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 14px;
    padding: 1.25rem;
}

.form-control,
.form-select {
    background: #111;
    border-color: #333;
    color: #fff;
}

.form-control:focus,
.form-select:focus {
    background: #141414;
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.15);
}

.table-dark {
    --bs-table-bg: #0a0a0a;
    --bs-table-border-color: rgba(255, 215, 0, 0.2);
}

.site-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--muted);
}

/* Slot */
.slot-wrap {
    border: 2px solid rgba(255, 215, 0, 0.35);
    border-radius: 16px;
    padding: 1rem;
    background: radial-gradient(ellipse at center, #1a1000 0%, #050505 70%);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

@media (max-width: 576px) {
    .slot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slot-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    background: linear-gradient(180deg, #222 0%, #0c0c0c 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
}

.slot-cell.spinning {
    animation: pulseSlot 0.12s infinite;
}

@keyframes pulseSlot {
    50% {
        filter: brightness(1.35);
    }
}

.win-banner {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 800;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    text-align: center;
    background: rgba(255, 215, 0, 0.06);
}

.lose-banner {
    border: 2px solid rgba(255, 0, 0, 0.5);
    color: #ff6b6b;
}

/* ========== Landing / vitrine (estilo 444) ========== */
.btn-platform-enter {
    background: linear-gradient(180deg, #fff176 0%, var(--gold) 45%, #b8860b 100%);
    color: #1a0a00 !important;
    font-weight: 900;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 999px;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.45), 0 12px 40px rgba(255, 0, 0, 0.25);
    animation: btnGlow 2.4s ease-in-out infinite;
}

.btn-platform-enter:hover {
    filter: brightness(1.12);
    color: #000 !important;
    transform: translateY(-1px);
}

@keyframes btnGlow {
    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.45), 0 12px 40px rgba(255, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.65), 0 16px 48px rgba(255, 215, 0, 0.25);
    }
}

.landing-hero {
    position: relative;
    padding: 2rem 1.25rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.35);
}

.landing-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 80, 0, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 60%, rgba(255, 215, 0, 0.12) 0%, transparent 45%), #050505;
    pointer-events: none;
}

.landing-hero > .row {
    position: relative;
    z-index: 1;
}

.landing-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
}

.landing-brand {
    color: #fff;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
}

.landing-lead {
    max-width: 36rem;
}

.landing-mega-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.75rem;
}

.landing-mega-label {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--muted);
}

.landing-mega-pct {
    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--gold);
    text-shadow: 0 0 24px rgba(255, 215, 0, 0.5);
}

.landing-mega-sym {
    font-size: 0.45em;
    font-weight: 800;
    vertical-align: super;
    margin-left: 0.05em;
}

.landing-mega-sub {
    width: 100%;
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 600;
}

.pct-shimmer {
    background: linear-gradient(90deg, var(--muted), var(--gold), var(--muted));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.landing-chips .landing-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 900;
    border: 1px solid rgba(255, 215, 0, 0.45);
    background: rgba(255, 215, 0, 0.08);
    color: var(--gold);
}

.landing-chips .landing-chip-red {
    border-color: rgba(255, 0, 0, 0.55);
    background: rgba(255, 0, 0, 0.12);
    color: #ff6b6b;
}

.pct-pulse {
    animation: pctPulse 2s ease-in-out infinite;
}

.pct-pulse-delay {
    animation: pctPulse 2s ease-in-out 0.4s infinite;
}

.pct-pulse-delay2 {
    animation: pctPulse 2s ease-in-out 0.8s infinite;
}

.pct-pulse-soft {
    animation: pctPulseSoft 2.8s ease-in-out infinite;
}

@keyframes pctPulse {
    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.04);
        filter: brightness(1.15);
    }
}

@keyframes pctPulseSoft {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.35);
    }
    50% {
        box-shadow: 0 0 16px 2px rgba(255, 215, 0, 0.35);
    }
}

.landing-side-card .landing-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 215, 0, 0.35);
    border-top-color: var(--gold);
    border-right-color: var(--red);
}

.pct-spin-slow {
    animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

.game-card-landing .game-card-thumb {
    position: relative;
    overflow: hidden;
}

.game-card-landing img {
    height: 160px;
    transition: transform 0.35s ease;
}

.game-card-landing:hover img {
    transform: scale(1.06);
}

.game-pct-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--red) 0%, #990000 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.game-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 40%,
        rgba(255, 215, 0, 0.12) 48%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 215, 0, 0.12) 52%,
        transparent 60%
    );
    transform: translateX(-100%);
    animation: cardShine 4.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardShine {
    0%,
    35% {
        transform: translateX(-100%);
    }
    50%,
    100% {
        transform: translateX(100%);
    }
}

.pct-mini-breathe {
    animation: miniBreathe 1.8s ease-in-out infinite;
}

@keyframes miniBreathe {
    50% {
        transform: scale(1.08);
    }
}

