/* ============================================
   SISTEMA RTP v2.0 - CUSTOM THEMING
   100% Mobile-First | Portuguese | Square Images
   ============================================ */

:root {
    /* Color Palette baseada no seu site (geral.css & plataformas.css) */
    --bg-primary: #181818;       /* Fundo principal (geral.css) */
    --bg-secondary: #1f2937;     /* Fundo de filtros/elementos (plataformas.css) */
    --bg-tertiary: #101010;      /* Fundo escuro secundário (geral.css) */
    --bg-card: #f5f5f5;          /* Fundo claro para cards (plataformas.css) */
    --bg-console: #101010;       /* Fundo escuro profundo */
    
    /* Neon Accent Colors adaptadas da sua marca */
    --accent-cyan: #d71920;      /* Cor principal de destaque - Vermelho Marca (#d71920) */
    --accent-green: #2ca24f;     /* Sucesso/Ativo - Verde Status (#2ca24f) */
    --accent-blue: #2563eb;      /* Azul Status (#2563eb) */
    --accent-purple: #9333ea;    /* Roxo Status (#9333ea) */
    --accent-red: #d71920;       /* Vermelho Lançamento/Erro (#d71920) */
    --accent-yellow: #ffd700;    /* Amarelo/Dourado (#ffd700) */
    --accent-orange: #ff5a00;    /* Laranja Hot (#ff5a00) */
    
    /* Text Colors */
    --text-primary: #ffffff;     /* Texto claro em fundos escuros */
    --text-secondary: #9ca3af;   /* Texto cinza (plataformas.css) */
    --text-muted: #7c8ca5;       /* Rótulos/Textos suaves (plataformas.css) */
    --text-highlight: #ffd700;   /* Destaque em Amarelo/Dourado */
    
    /* Effects & Borders da sua marca */
    --border-color: #374151;     /* Borda padrão (#374151) */
    --glow-cyan: 0 0 12px rgba(215, 25, 32, 0.35);  /* Brilho vermelho marca */
    --glow-green: 0 0 12px rgba(44, 162, 79, 0.35);
    --glow-red: 0 0 12px rgba(215, 25, 32, 0.35);
    
    /* Fonts da sua marca (geral.css) */
    --font-primary: Arial, Helvetica, sans-serif;
    --font-mono: Arial, Helvetica, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* ============================================
   HIDE SCROLLBARS - ALL BROWSERS
   ============================================ */

*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

* {
    scrollbar-width: none !important;
}

html, body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    overflow: auto !important;

    background-color: #121212 !important; /* Substitua pelo hex do seu fundo escuro */
    color: #ffffff;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(180deg, #181818 0%, #101010 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ============================================
   SIMPLE MODE - CLEAN WHITE DESIGN
   ============================================ */

body.simple-mode {
    background: #121212;
}

body.simple-mode .terminal-bg,
body.simple-mode .grid-overlay,
body.simple-mode .scan-line,
body.simple-mode .data-stream {
    display: none !important;
}

/* Sticky Header - White Theme */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #d8dce2;
    backdrop-filter: blur(10px);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-mono);
    font-size: 12px;
}

.header-bar-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    flex-wrap: wrap;
}

.header-left-group,
.header-center-group,
.header-right-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-label {
    color: #7c8ca5;
}

.header-value-green {
    color: #2ca24f;
    font-weight: 700;
}

.header-value-cyan {
    color: #2563eb;
    font-weight: 700;
}

.status-dot-green {
    color: #2ca24f;
    font-size: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.header-separator {
    color: #cccccc;
    margin: 0 5px;
}

.header-dropdown {
    color: #2563eb;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s;
}

.header-dropdown:hover {
    transform: scale(1.2);
}

/* Provider Dropdown */
.provider-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: #ffffff;
    border: 1px solid #d8dce2;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1001;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.provider-dropdown.active {
    display: block;
}

.provider-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #162746;
    font-family: var(--font-mono);
    font-size: 11px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.provider-option:hover {
    background: #f5f5f5;
}

.provider-option.active {
    background: #e3f2fd;
    color: #2563eb;
}

/* Sticky Progress Bar */
.sticky-progress {
    position: sticky;
    top: 45px;
    z-index: 999;
    height: 4px;
    background: #1f2937;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #d71920, #2ca24f);
    width: 0%;
    transition: width 0.1s linear;
}

/* Main Content Simple */
.main-content-simple {
    padding: 20px 0;
    background: transparent;
}

.container-wide {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.banner-section-simple {
    margin-bottom: 20px;
}

.carousel-container-simple {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 21/9;
}

.carousel-container-simple .carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-container-simple .carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-container-simple .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.6);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-container-simple .carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-container-simple .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-container-simple .dot.active {
    background: #d71920;
    width: 30px;
    border-radius: 999px;
}

/* Games Grid - 10 per row */
.games-grid-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 1600px) { .games-grid-10 { grid-template-columns: repeat(8, 1fr); max-width: 1300px; } }
@media (max-width: 1200px) { .games-grid-10 { grid-template-columns: repeat(6, 1fr); max-width: 1000px; } }
@media (max-width: 900px) { .games-grid-10 { grid-template-columns: repeat(4, 1fr); max-width: 700px; } }
@media (max-width: 600px) { .games-grid-10 { grid-template-columns: repeat(3, 1fr); max-width: 100%; } }

/* Simple Game Card */
.game-card-simple {
    background: #f5f5f5;
    border: 1px solid #d8dce2;
    border-radius: 20px;
    overflow: hidden;
    cursor: default;
    pointer-events: none;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
}

.game-card-simple:hover {
    border-color: #ffd700;
}

.game-card-simple .game-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.game-card-simple .game-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-simple .game-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
    font-family: var(--font-mono);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.game-card-simple .badge-fortune {
    color: #ffffff;
    background: linear-gradient(135deg, #ffd700, #ca8a04);
}

.game-card-simple .badge-popular {
    color: #ffffff;
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.game-card-simple .badge-destaque {
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.game-card-simple .game-info-simple {
    padding: 8px;
    background: #f5f5f5;
}

.game-card-simple .rtp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.game-card-simple .rtp-label {
    font-size: 9px;
    color: #7c8ca5;
    font-family: var(--font-mono);
}

.game-card-simple .rtp-value {
    font-size: 14px;
    font-weight: 900;
    font-family: var(--font-mono);
}

.game-card-simple .rtp-high { color: #2ca24f; }
.game-card-simple .rtp-medium { color: #ca8a04; }
.game-card-simple .rtp-low { color: #d71920; }

.game-card-simple .rtp-bar {
    height: 2px;
    background: #d8dce2;
    border-radius: 2px;
    overflow: hidden;
}

.game-card-simple .rtp-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.5s;
}

.game-card-simple .rtp-bar-high { background: #2ca24f; }
.game-card-simple .rtp-bar-medium { background: #ca8a04; }
.game-card-simple .rtp-bar-low { background: #d71920; }

/* Load More Button Simple */
.load-more-btn-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    padding: 10px 18px;
    background: linear-gradient(180deg, #31363c, #262b30);
    border: 1px solid #7b838d;
    border-radius: 999px;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.25s;
}

.load-more-btn-simple:hover {
    border-color: #ffd700;
    opacity: 0.9;
}

.games-section-simple {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================
   TERMINAL BACKGROUND
   ============================================ */

.terminal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(215, 25, 32, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 25, 32, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.scan-line {
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    box-shadow: 0 0 15px var(--accent-cyan);
    animation: scanLine 5s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.data-stream {
    position: absolute;
    top: -45%;
    left: 0;
    width: 100%;
    height: 200%;
    opacity: 0.03;
    font-family: var(--font-mono);
    font-size: 20px;
    color: var(--accent-green);
    overflow: hidden;
    animation: dataStream 20s linear infinite;
}

@keyframes dataStream {
    0% { transform: translateY(0); }
    100% { transform: translateY(10%); }
}

/* ============================================
   SYSTEM STATUS BAR
   ============================================ */

.system-status-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: #1f2937;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 1000;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1px;
}

.status-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (min-width: 1024px) {
    .system-status-bar {
        justify-content: center;
        gap: 40px;
    }
}

.status-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-icon {
    color: var(--accent-green);
    font-size: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-label {
    color: var(--text-secondary);
    text-transform: uppercase;
}

.status-value {
    color: var(--accent-yellow);
    font-weight: 700;
}

.status-online {
    color: var(--accent-green);
}

/* ============================================
   MAIN HEADER
   ============================================ */

.main-header {
    position: sticky;
    top: 36px;
    background: rgba(24, 24, 24, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--accent-cyan);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    z-index: 999;
    padding: 5px 0;
    margin-top: 36px;
}

.terminal-prompt {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-secondary);
    padding: 4px 0;
    text-align: center;
    background: var(--bg-console);
    border-bottom: 1px solid var(--border-color);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 15px;
    padding-right: 15px;
}

.prompt-symbol {
    color: var(--accent-cyan);
}

.prompt-command {
    color: var(--accent-yellow);
    margin-left: 10px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px;
    padding: 6px 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 900;
    font-size: 16px;
}

.logo-bracket {
    color: var(--accent-cyan);
    font-size: 18px;
}

.logo-text {
    color: #ffffff;
    letter-spacing: 1px;
}

.version-tag {
    background: var(--bg-secondary);
    border: 1px solid var(--accent-cyan);
    color: var(--text-primary);
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-family: var(--font-mono);
    font-weight: 700;
    margin-right: -49px;
    margin-left: 71px;
    position: relative;
}

.header-center {
    flex: 1;
    text-align: center;
    min-width: 180px;
    padding: 0 10px;
}

.main-title {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    line-height: 1.2;
}

.title-prefix, .title-suffix {
    color: var(--accent-cyan);
    font-size: 12px;
}

.subtitle {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-top: 2px;
}

.header-right {
    text-align: right;
}

.system-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-item {
    font-family: var(--font-mono);
    font-size: 10px;
    display: flex;
    gap: 5px;
}

.info-label {
    color: var(--text-muted);
}

.info-value {
    color: var(--accent-yellow);
    font-weight: 700;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.main-content {
    padding: 20px 0 100px;
}

/* ============================================
   LOAD MORE BUTTON
   ============================================ */

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.load-more-btn {
    background: linear-gradient(180deg, #31363c, #262b30);
    border: 1px solid #7b838d;
    border-radius: 999px;
    padding: 10px 18px;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    min-width: 200px;
    justify-content: center;
}

.load-more-btn:hover {
    border-color: #ffd700;
    transform: translateY(-2px);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn .btn-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover .btn-icon {
    transform: translateY(2px);
}

.load-more-btn .btn-count {
    background: var(--bg-tertiary);
    padding: 2px 6px;
    border-radius: 999px;
    color: var(--accent-yellow);
    font-size: 10px;
    border: 1px solid var(--border-color);
}

/* ============================================
   CONSOLE SECTION
   ============================================ */

.console-section {
    margin-bottom: 20px;
}

.console-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.console-header {
    background: var(--bg-tertiary);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.console-title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.console-icon {
    color: var(--accent-green);
    animation: pulse 2s ease-in-out infinite;
}

.console-controls {
    display: flex;
    gap: 6px;
}

.control-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.control-minimize { background: var(--accent-yellow); }
.control-maximize { background: var(--accent-green); }
.control-close { background: var(--accent-red); }

.console-body {
    padding: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    max-height: 300px;
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.console-line {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    color: var(--text-secondary);
}

.console-prompt {
    color: var(--accent-cyan);
    font-weight: 700;
    min-width: 90px;
}

.console-text {
    flex: 1;
}

.console-status {
    font-weight: 700;
}

.console-ok {
    color: var(--accent-green);
}

.console-active {
    color: var(--accent-green);
    animation: pulse 2s ease-in-out infinite;
}

.console-window.minimized .console-body {
    max-height: 0;
    padding: 0;
}

.console-minimize-icon {
    transition: transform 0.3s ease;
}

.console-window.minimized .console-minimize-icon {
    transform: rotate(180deg);
}

/* ============================================
   BANNER AND TIMER WRAPPER
   ============================================ */

.banner-timer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

@media (min-width: 1024px) {
    .banner-timer-wrapper {
        flex-direction: row;
        gap: 15px;
        align-items: stretch;
        height: 280px;
    }
}

/* ============================================
   TIMER SECTION
   ============================================ */

.timer-section {
    margin-bottom: 0;
}

.timer-split-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    height: 100%;
}

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.side-banner-container {
    display: flex;
    flex: 1;
    min-width: 0;
    min-height: 0;
    border-radius: 14px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    --border-angle: 0deg;
    border: 1px solid transparent;
    background: 
        linear-gradient(var(--bg-secondary), var(--bg-tertiary)) padding-box,
        conic-gradient(from var(--border-angle), #ffd700, #d71920, #ffd700, #d71920, #ffd700) border-box;
    animation: snakeRotate 3s linear infinite;
}

.side-banner-container::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    background: conic-gradient(from var(--border-angle), #ffd700, #d71920, #ffd700, #d71920, #ffd700);
    filter: blur(8px);
    opacity: 0.4;
    z-index: -1;
    animation: snakeRotate 3s linear infinite;
}

@keyframes snakeRotate {
    to {
        --border-angle: 360deg;
    }
}

.side-banner-carousel {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: visible;
    width: 100%;
    height: 100%;
    position: relative;
}

.side-banner-link:hover {
    transform: scale(1.02);
    animation: snakeRotate 1.5s linear infinite;
}

.side-banner-link:hover::before {
    opacity: 0.8;
    filter: blur(12px);
}

.side-banner-link:active {
    transform: scale(0.98);
}

.timer-section .timer-container {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .timer-section {
        flex: 0 0 25%;
        display: flex;
    }
    
    .timer-split-wrapper {
        flex-direction: column;
        height: 100%;
    }
    
    .timer-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        padding-top: 15px;
    }
    
    .timer-display {
        font-size: 42px;
    }
    
    .side-banner-container {
        width: 100%;
        flex: 1;
    }
}

.timer-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0px 0px; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.timer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(215, 25, 32, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.timer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.timer-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-icon {
    color: var(--accent-cyan);
    font-size: 16px;
}

.timer-cycle {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent-green);
    background: var(--bg-tertiary);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--accent-green);
}

.timer-display {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: -10px;
    margin-bottom: -5px;
}

.timer-separator {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.timer-progress {
    width: 100%;
    margin-bottom: 5px;
    padding: 0 10px;
}

.timer-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.timer-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    transition: width 1s linear;
}

.timer-progress-text {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 5px;
}

#progressPercent {
    color: var(--accent-yellow);
    font-weight: 700;
}

.timer-info {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.section-icon {
    color: var(--accent-cyan);
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

.section-badge {
    background: var(--accent-green);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
}

.section-stats {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 11px;
}

.stats-value {
    color: var(--accent-green);
    font-weight: 700;
}

.stats-separator {
    color: var(--text-muted);
}

.stats-total {
    color: var(--text-secondary);
}

.section-refresh {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
}

.refresh-icon {
    color: var(--accent-cyan);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   SIDE BANNER CAROUSEL
   ============================================ */

.side-banner-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 0;
}

.side-banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.side-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.side-banner-slide.active {
    display: flex;
}

.em-breve-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1.5px solid var(--accent-yellow);
    border-radius: 999px;
    padding: 4px 10px;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 400;
    color: var(--accent-yellow);
    letter-spacing: 1px;
    z-index: 20;
    animation: emBrevePulse 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes emBrevePulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translateX(-50%) translateY(-50%) scale(1.05);
    }
}

.side-banner-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.side-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-dot.active {
    background: var(--accent-cyan);
    width: 16px;
    border-radius: 999px;
}

/* ============================================
   CAROUSEL
   ============================================ */

.banner-carousel {
    padding-bottom: 0px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border-color);
}

@media (min-width: 1024px) {
    .banner-carousel {
        flex: 1;
        display: flex;
    }
    
    .carousel-container {
        height: 100%;
        width: 100%;
        aspect-ratio: auto;
    }
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(24, 24, 24, 0.9) 100%);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover, .carousel-btn:active {
    background: var(--accent-cyan);
    color: #ffffff;
    border-color: var(--accent-cyan);
}

.carousel-btn-prev { left: 10px; }
.carousel-btn-next { right: 10px; }

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-cyan);
    width: 24px;
    border-radius: 999px;
}

/* ============================================
   PROVIDER SECTION
   ============================================ */

.provider-section {
    margin-bottom: -10px;
}

.provider-selector {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.provider-selector:hover, .provider-selector:active {
    border-color: var(--accent-yellow);
}

.selector-icon {
    color: var(--accent-cyan);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.provider-menu.active ~ .provider-selector .selector-icon {
    transform: rotate(180deg);
}

.selector-name {
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.selector-count {
    color: var(--accent-green);
    font-size: 12px;
    font-weight: 700;
}

.selector-status {
    color: var(--accent-green);
    font-size: 12px;
    animation: pulse 2s ease-in-out infinite;
}

.provider-menu {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-top: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.provider-menu.active {
    max-height: 600px;
    opacity: 1;
}

.provider-menu-header {
    background: var(--bg-tertiary);
    padding: 12px 15px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-icon {
    color: var(--accent-green);
}

.provider-item {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-mono);
    color: var(--text-primary);
    min-height: 48px;
}

.provider-item:last-child {
    border-bottom: none;
}

.provider-item:hover, .provider-item:active {
    background: var(--bg-tertiary);
}

.provider-item.active {
    background: rgba(215, 25, 32, 0.1);
    border-left: 3px solid var(--accent-cyan);
}

.provider-indicator {
    color: var(--text-muted);
    font-size: 10px;
}

.provider-item.active .provider-indicator {
    color: var(--accent-green);
    animation: pulse 2s ease-in-out infinite;
}

.provider-text {
    flex: 1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.provider-game-count {
    color: var(--accent-yellow);
    font-size: 11px;
    font-weight: 700;
}

.provider-arrow {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   GAMES GRID
   ============================================ */

.games-section {
    margin-bottom: 50px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 180px));
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.games-grid.refreshing {
    animation: gridPulse 0.6s ease;
}

@keyframes gridPulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

/* ============================================
   GAME CARDS (Estilo .card-plataforma)
   ============================================ */

.game-card {
    background: #f5f5f5;
    border: 1px solid #d8dce2;
    border-radius: 20px;
    padding: 7px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.game-card:hover, .game-card:active {
    transform: translateY(-2px);
    border-color: #ffd700;
}

.game-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image, .game-card:active .game-image {
    transform: scale(1.05);
}

.game-priority-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    color: #ffffff;
}

.priority-1 { background: linear-gradient(135deg, #ffd700, #ca8a04); }
.priority-2 { background: linear-gradient(135deg, #ec4899, #db2777); }
.priority-3 { background: linear-gradient(135deg, #22c55e, #15803d); }

.game-info {
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.game-provider {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: #7c8ca5;
    text-transform: uppercase;
}

.game-rtp-container {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #d8dce2;
    border-radius: 12px;
    padding: 8px;
    gap: 4px;
}

.rtp-text-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.rtp-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: #7c8ca5;
}

.rtp-value {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 900;
    color: #162746;
}

.rtp-high { color: #2ca24f; }
.rtp-medium { color: #ca8a04; }
.rtp-low { color: #d71920; }

.game-multiplier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 12px;
    padding: 6px 10px;
    border: 1px solid #d8dce2;
}

.multiplier-value {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 900;
    color: #162746;
}

.multiplier-low { color: #7c8ca5; }
.multiplier-medium { color: #ca8a04; }
.multiplier-high { color: #2ca24f; }

.multiplier-icons {
    display: flex;
    gap: 3px;
    font-size: 11px;
}

.icon-check { color: #2ca24f; }
.icon-cross { color: #d71920; opacity: 0.5; }

/* ============================================
   FLOATING TELEGRAM & WHATSAPP
   ============================================ */

.floating-telegram {
    position: fixed;
    right: 12px;
    bottom: calc(96px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #229ed9, #0088cc);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 6px 22px rgba(0, 136, 204, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: box-shadow 0.25s ease;
    animation: socialBreathe 2s ease-in-out infinite;
}

.floating-telegram:hover {
    box-shadow: 0 10px 28px rgba(0, 136, 204, 0.65);
}

.floating-telegram:active {
    transform: scale(0.92);
    animation: none;
}

.telegram-icon {
    width: 100%;
    height: 100%;
}

@keyframes socialBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.floating-whatsapp {
    position: fixed;
    right: 12px;
    bottom: calc(160px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: box-shadow 0.25s ease;
    animation: socialBreathe 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp:active {
    transform: scale(0.92);
    animation: none;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

@media (max-height: 640px) {
    .floating-telegram { bottom: calc(76px + env(safe-area-inset-bottom)); width: 50px; height: 50px; }
    .floating-whatsapp { bottom: calc(134px + env(safe-area-inset-bottom)); width: 50px; height: 50px; }
}

@media (min-width: 768px) and (min-height: 820px) {
    .floating-telegram { bottom: auto; top: 50%; }
    .floating-whatsapp { bottom: auto; top: calc(50% - 70px); }
}

/* ============================================
   FLOATING TIMER BUTTON
   ============================================ */

.floating-timer-button {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--font-mono);
    cursor: pointer;
    z-index: 999;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 200px;
    background: linear-gradient(180deg, #31363c, #262b30);
    border: 1px solid #7b838d;
}

.floating-timer-button:hover {
    border-color: #ffd700;
    transform: translateX(-50%) translateY(-2px);
}

.floating-timer-button:active {
    transform: translateX(-50%) translateY(0);
}

.floating-timer-text {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.floating-timer-display {
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 2px;
}

.floating-timer-separator {
    animation: blink 1s step-end infinite;
}

.floating-timer-progress {
    width: 100%;
    height: 3px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.floating-timer-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    border-radius: 2px;
    transition: width 0.1s ease;
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(215, 25, 32, 0.1);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover, .modal-close:active {
    background: var(--accent-red);
    color: white;
}

.modal-header {
    padding: 25px 20px 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-terminal {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.terminal-prompt-modal { color: var(--accent-cyan); }
.terminal-command-modal { color: var(--accent-yellow); margin-left: 8px; }

.modal-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-bracket { font-size: 26px; color: var(--accent-cyan); }

.modal-subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.modal-icon { color: var(--accent-green); }

.modal-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.modal-stat {
    font-family: var(--font-mono);
    font-size: 10px;
    display: flex;
    gap: 5px;
}

.stat-label { color: var(--text-muted); }
.stat-value { color: var(--accent-yellow); font-weight: 700; }
.stat-online { color: var(--accent-green); }

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 180px));
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.platform-card {
    position: relative;
    background: #f5f5f5;
    border: 1px solid #d8dce2;
    border-radius: 20px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.25s ease;
    aspect-ratio: 3 / 2;
    display: block;
    min-height: 80px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.platform-card:hover, .platform-card:active {
    transform: translateY(-2px);
    border-color: #ffd700;
}

.platform-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
}

.em-breve-overlay-platform {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 1.5px solid var(--accent-yellow);
    border-radius: 999px;
    padding: 3px 8px;
    font-family: var(--font-mono);
    font-size: 7px;
    font-weight: 400;
    color: var(--accent-yellow);
    letter-spacing: 0.8px;
    z-index: 10;
    animation: emBrevePulse 2s ease-in-out infinite;
    white-space: nowrap;
}

.platform-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.platform-card:hover .platform-overlay, .platform-card:active .platform-overlay {
    opacity: 1;
}

.platform-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #2ca24f;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   PLATFORM BADGES & CARDS DIVERSOS
   ============================================ */

.platform-gold {
    border-color: #d4af37 !important;
}

.platform-hot {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ffd700, #ff5a00);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 8px;
    border-bottom-left-radius: 8px;
    z-index: 3;
    font-family: var(--font-primary);
}

.em-breve-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ffd700, #ca8a04);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 8px;
    border-bottom-left-radius: 8px;
    z-index: 3;
    font-family: var(--font-primary);
}

/* VARIANTES DE CARDS (Classes do plataformas.css) */
.game-card.azul, .platform-card.azul { border-color: #2563eb; }
.game-card.verde, .platform-card.verde { border-color: #16a34a; }
.game-card.vermelho, .platform-card.vermelho { border-color: #d71920; }
.game-card.amarelo, .platform-card.amarelo { border-color: #facc15; }
.game-card.laranja, .platform-card.laranja { border-color: #f97316; }
.game-card.roxo, .platform-card.roxo { border-color: #9333ea; }
.game-card.rosa, .platform-card.rosa { border-color: #ec4899; }
.game-card.dourado, .platform-card.dourado { border-color: #d4af37; }

/* ============================================
   RTP PROGRESS BAR
   ============================================ */

.rtp-bar-container {
    width: 100%;
    height: 4px;
    background: #d8dce2;
    border-radius: 2px;
    margin-top: 0;
    overflow: hidden;
    position: relative;
}

.rtp-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease-out;
    position: relative;
}

.rtp-fill-high { background: #2ca24f; }
.rtp-fill-medium { background: #ca8a04; }
.rtp-fill-low { background: #d71920; }

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

@media (max-width: 359px) {
    .games-grid {
        gap: 8px;
    }
    .game-info {
        padding: 6px;
    }
    .rtp-value {
        font-size: 16px;
    }
    .main-title {
        font-size: 12px;
    }
    .timer-display {
        font-size: 32px;
    }
}

@media (min-width: 360px) and (max-width: 479px) {
    .timer-display {
        font-size: 38px;
    }
    .main-title {
        font-size: 16px;
    }
}

@media (min-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 180px));
    }
    .main-title {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .system-status-bar {
        height: 40px;
        font-size: 11px;
    }
    .main-title {
        font-size: 22px;
    }
    .timer-display {
        font-size: 52px;
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 180px));
    }
}

/* ============================================
   CODE PROTECTION & SELECTION
   ============================================ */

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img, a {
    -webkit-user-drag: none;
}

/* ============================================
   UTILITIES
   ============================================ */

.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .header-left {
        justify-content: center;
        width: 100%;
        margin-left: 30px;
    }
}