/* ============================================================
   PALETA DE COLORES - GEARCHIP 420
   ============================================================
   - Verde neón: #00FF88
   - Verde oscuro: #00CC77
   - Celeste: #00D4FF
   - Morado: #7C3AED
   - Grafito oscuro: #1A1A2E
   - Grafito medio: #2D2D44
   - Grafito claro: #4A4A6A
   - Texto claro: #E8E8F0
   ============================================================ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding-top: 110px;
    color: #E8E8F0;
    min-height: 100vh;
    background: #1A1A2E;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #1A1A2E 0%, #0D0D1A 100%);
}

.app-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(2px);
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 255, 136, 0.15);
    padding: 2rem 2rem 2.5rem;
    border: 1px solid rgba(0, 255, 136, 0.12);
}

/* HEADER */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 26, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #00FF88;
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.1);
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(145deg, #00FF88, #00CC77);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 16px rgba(0, 255, 136, 0.3);
    transition: transform 0.2s ease;
    overflow: hidden;
}

.header-logo:hover {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 2px 30px rgba(0, 255, 136, 0.5);
}

.header-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.header-title h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00FF88;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

.header-title h1 span {
    color: #00D4FF;
}

.header-title .subhead {
    font-size: 0.75rem;
    color: #7C3AED;
    font-weight: 400;
    border-left: 3px solid #7C3AED;
    padding-left: 0.6rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.storage-status {
    font-size: 0.7rem;
    color: #4A4A6A;
    padding: 0.2rem 0.8rem;
    background: rgba(45, 45, 68, 0.8);
    border-radius: 40px;
    border: 1px solid rgba(0, 255, 136, 0.12);
    white-space: nowrap;
}

.header-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.7rem;
    color: #4A4A6A;
}

.header-stats span {
    background: rgba(45, 45, 68, 0.8);
    padding: 0.15rem 0.7rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 136, 0.08);
}

.header-stats strong {
    color: #00FF88;
}

/* CARDS */
.card {
    background: rgba(45, 45, 68, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 1.5rem 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.06);
    transition: box-shadow 0.15s ease;
}

.card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 255, 136, 0.12);
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0 1.8rem;
}

/* INPUTS Y BOTONES */
.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    align-items: center;
}

.input-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #00FF88;
    min-width: 80px;
}

input[type="text"],
input[type="number"] {
    background: rgba(13, 13, 26, 0.9);
    border: 2px solid rgba(0, 255, 136, 0.15);
    border-radius: 40px;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    flex: 1;
    min-width: 140px;
    transition: 0.15s ease;
    color: #E8E8F0;
    backdrop-filter: blur(2px);
}

input:focus {
    outline: none;
    border-color: #00FF88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
    background: rgba(13, 13, 26, 0.98);
}

input[type="number"] {
    max-width: 80px;
    min-width: 60px;
}

button,
.btn {
    background: rgba(45, 45, 68, 0.8);
    border: 2px solid rgba(0, 255, 136, 0.12);
    border-radius: 40px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4A4A6A;
    cursor: pointer;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1;
    backdrop-filter: blur(2px);
}

button:hover,
.btn:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: #00FF88;
    color: #00FF88;
    transform: scale(0.97);
}

.btn-primary {
    background: linear-gradient(145deg, #00FF88, #00CC77);
    color: #1A1A2E;
    border-color: #00FF88;
    font-weight: 700;
    box-shadow: 0 2px 20px rgba(0, 255, 136, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(145deg, #66FFAA, #00FF88);
    box-shadow: 0 2px 35px rgba(0, 255, 136, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(0, 255, 136, 0.15);
    color: #4A4A6A;
}

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.06);
    border-color: #00FF88;
    color: #00FF88;
}

.btn-danger {
    background: rgba(255, 23, 68, 0.08);
    border-color: rgba(255, 23, 68, 0.2);
    color: #FF1744;
}

.btn-danger:hover {
    background: rgba(255, 23, 68, 0.15);
    border-color: #FF1744;
    color: #FF1744;
}

.btn-success {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.2);
    color: #00FF88;
}

.btn-success:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: #00FF88;
    color: #00FF88;
}

.btn-warning {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
    color: #00D4FF;
}

.btn-warning:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: #00D4FF;
    color: #00D4FF;
}

.btn-round-selector {
    background: rgba(13, 13, 26, 0.6);
    border: 2px solid transparent;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.15s;
    font-weight: 500;
    color: #4A4A6A;
    backdrop-filter: blur(2px);
}

.btn-round-selector:hover {
    background: rgba(0, 255, 136, 0.06);
    border-color: rgba(0, 255, 136, 0.2);
    color: #00FF88;
    transform: scale(0.97);
}

.btn-round-selector.active {
    background: linear-gradient(145deg, #00FF88, #00CC77);
    color: #1A1A2E;
    border-color: #00FF88;
    font-weight: 700;
    box-shadow: 0 2px 15px rgba(0, 255, 136, 0.15);
}

/* PARTICIPANTES */
.participant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.8rem;
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
    max-height: 150px;
    overflow-y: auto;
}

.participant-tag {
    background: rgba(13, 13, 26, 0.7);
    padding: 0.3rem 1rem 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 255, 136, 0.08);
    color: #E8E8F0;
    backdrop-filter: blur(2px);
}

.participant-tag .remove-btn {
    background: none;
    border: none;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    color: #4A4A6A;
    padding: 0 0.1rem;
}

.participant-tag .remove-btn:hover {
    color: #FF1744;
}

.empty-message {
    color: #4A4A6A;
    font-style: italic;
    font-size: 0.95rem;
    padding: 0.3rem 0;
}

/* VERSUS */
.versus-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

.versus-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    background: rgba(13, 13, 26, 0.7);
    padding: 0.8rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 255, 136, 0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    position: relative;
}

.versus-item:hover {
    border-color: rgba(0, 255, 136, 0.15);
    background: rgba(13, 13, 26, 0.85);
}

.match-content {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.match-players {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.3rem 0.6rem;
}

.player-score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 45px;
}

.player-score-block .player-name {
    font-weight: 500;
    font-size: 0.75rem;
    color: #E8E8F0;
    margin-top: 0.05rem;
}

.player-score-block .score-display {
    font-size: 1rem;
    font-weight: 700;
    color: #00FF88;
    background: rgba(13, 13, 26, 0.8);
    padding: 0.05rem 0.4rem;
    border-radius: 30px;
    min-width: 28px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.12);
}

.versus-item .score-control {
    display: flex;
    align-items: center;
    gap: 0.05rem;
    background: rgba(13, 13, 26, 0.8);
    border-radius: 60px;
    padding: 0.05rem 0.15rem;
    border: 1px solid rgba(0, 255, 136, 0.08);
}

.score-control button {
    background: transparent;
    border: none;
    font-size: 0.9rem;
    padding: 0.05rem 0.4rem;
    color: #4A4A6A;
    font-weight: 500;
    border-radius: 30px;
}

.score-control button:hover {
    background: rgba(0, 255, 136, 0.08);
    color: #00FF88;
}

.versus-item .vs-badge {
    font-weight: 700;
    color: #00FF88;
    background: rgba(0, 255, 136, 0.08);
    padding: 0.05rem 0.6rem;
    border-radius: 40px;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
}

.versus-item .round-tag {
    font-size: 0.65rem;
    color: #4A4A6A;
    background: rgba(45, 45, 68, 0.6);
    padding: 0.05rem 0.5rem;
    border-radius: 30px;
    margin-left: 0.2rem;
}





.match-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.match-controls .btn-sm {
    font-size: 0.7rem;
    padding: 0.35rem 0.5rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
    font-weight: 600;
    border: 1px solid;
    background: transparent;
    width: 100%;
}

.match-controls .play-btn {
    color: #00FF88;
    border-color: rgba(0, 255, 136, 0.25);
    background: rgba(0, 255, 136, 0.06);
}

.match-controls .play-btn:hover:not(:disabled) {
    background: rgba(0, 255, 136, 0.15);
    border-color: #00FF88;
    transform: scale(0.97);
}

.match-controls .play-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.match-controls .auto-btn {
    color: #7C3AED;
    border-color: rgba(124, 58, 237, 0.25);
    background: rgba(124, 58, 237, 0.06);
}

.match-controls .auto-btn:hover:not(:disabled) {
    background: rgba(124, 58, 237, 0.15);
    border-color: #7C3AED;
    transform: scale(0.97);
}

.match-controls .auto-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.versus-item:not(.prefinal-match):not(.final-match) .match-controls {
    display: none;
}

.versus-item:not(.prefinal-match):not(.final-match) .match-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.versus-item:not(.prefinal-match):not(.final-match) .match-players {
    width: 100%;
}

/* SIN JUGAR (0-0) */
.versus-item.unplayed {
    border-color: rgba(74, 74, 106, 0.3) !important;
    background: rgba(13, 13, 26, 0.4) !important;
    opacity: 0.7;
    animation: pulse-unplayed 3s ease-in-out infinite;
}

.versus-item.unplayed .score-display {
    color: #4A4A6A !important;
    border-color: rgba(74, 74, 106, 0.2) !important;
    background: rgba(13, 13, 26, 0.5) !important;
}

.versus-item.unplayed .player-name {
    color: #4A4A6A !important;
}

.versus-item.unplayed .vs-badge {
    color: #4A4A6A !important;
    background: rgba(74, 74, 106, 0.1) !important;
}

.versus-item.unplayed .score-control button {
    color: #4A4A6A !important;
}

.versus-item.unplayed .score-control button:hover {
    background: rgba(74, 74, 106, 0.15) !important;
    color: #8A8AAA !important;
}

.versus-item.unplayed:hover {
    border-color: rgba(74, 74, 106, 0.5) !important;
    background: rgba(13, 13, 26, 0.5) !important;
}

@keyframes pulse-unplayed {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.85;
    }
}

.unplayed-badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 600;
    color: #4A4A6A;
    background: rgba(74, 74, 106, 0.15);
    padding: 0.05rem 0.6rem;
    border-radius: 30px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(74, 74, 106, 0.2);
    margin-left: 0.3rem;
}

.versus-item.played {
    border-color: rgba(0, 255, 136, 0.15) !important;
    background: rgba(13, 13, 26, 0.7) !important;
    opacity: 1;
}

.versus-item.played .score-display {
    color: #00FF88 !important;
    border-color: rgba(0, 255, 136, 0.2) !important;
}

.versus-item.played .player-name {
    color: #E8E8F0 !important;
}

.versus-item.played .vs-badge {
    color: #00FF88 !important;
    background: rgba(0, 255, 136, 0.1) !important;
}

/* PRE-FINAL */
.prefinal-match {
    border-color: rgba(124, 58, 237, 0.5) !important;
    background: rgba(124, 58, 237, 0.10) !important;
    border-width: 2px !important;
}

.prefinal-match .match-controls .play-btn {
    color: #7C3AED;
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.08);
}

.prefinal-match .match-controls .play-btn:hover:not(:disabled) {
    background: rgba(124, 58, 237, 0.18);
    border-color: #7C3AED;
}

.prefinal-match .match-controls .auto-btn {
    color: #7C3AED;
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.08);
}

.prefinal-match .match-controls .auto-btn:hover:not(:disabled) {
    background: rgba(124, 58, 237, 0.18);
    border-color: #7C3AED;
}

.prefinal-match.unplayed {
    border-color: rgba(74, 74, 106, 0.3) !important;
    background: rgba(13, 13, 26, 0.3) !important;
}

.prefinal-match.unplayed .score-display {
    color: #4A4A6A !important;
    border-color: rgba(74, 74, 106, 0.2) !important;
}

.prefinal-match.unplayed .vs-badge {
    color: #4A4A6A !important;
    background: rgba(74, 74, 106, 0.1) !important;
}

.prefinal-match.unplayed .prefinal-badge {
    opacity: 0.5;
}

.prefinal-match.unplayed .match-controls .play-btn,
.prefinal-match.unplayed .match-controls .auto-btn {
    opacity: 0.6;
}

.prefinal-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #7C3AED, #5B21B6);
    color: #FFFFFF;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.1rem 0.8rem;
    border-radius: 40px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
    white-space: nowrap;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.prefinal-match .score-display {
    border-color: rgba(124, 58, 237, 0.3) !important;
    color: #7C3AED !important;
}

.prefinal-match .vs-badge {
    color: #7C3AED !important;
    background: rgba(124, 58, 237, 0.15) !important;
}

.prefinal-match .score-control button:hover {
    background: rgba(124, 58, 237, 0.15) !important;
    color: #7C3AED !important;
}

/* FINAL */
.final-match {
    border-color: rgba(255, 215, 0, 0.5) !important;
    background: rgba(255, 215, 0, 0.08) !important;
    border-width: 2px !important;
}

.final-match .match-controls .play-btn {
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.08);
}

.final-match .match-controls .play-btn:hover:not(:disabled) {
    background: rgba(255, 215, 0, 0.18);
    border-color: #FFD700;
}

.final-match .match-controls .auto-btn {
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.08);
}

.final-match .match-controls .auto-btn:hover:not(:disabled) {
    background: rgba(255, 215, 0, 0.18);
    border-color: #FFD700;
}

.final-match.unplayed {
    border-color: rgba(74, 74, 106, 0.3) !important;
    background: rgba(13, 13, 26, 0.3) !important;
}

.final-match.unplayed .score-display {
    color: #4A4A6A !important;
    border-color: rgba(74, 74, 106, 0.2) !important;
}

.final-match.unplayed .vs-badge {
    color: #4A4A6A !important;
    background: rgba(74, 74, 106, 0.1) !important;
}

.final-match.unplayed .final-badge {
    opacity: 0.5;
}

.final-match.unplayed .match-controls .play-btn,
.final-match.unplayed .match-controls .auto-btn {
    opacity: 0.4;
}

.final-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #FFD700, #FFB800);
    color: #1A1A2E;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.1rem 0.8rem;
    border-radius: 40px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.final-match .score-display {
    border-color: rgba(255, 215, 0, 0.3) !important;
    color: #FFD700 !important;
}

.final-match .vs-badge {
    color: #FFD700 !important;
    background: rgba(255, 215, 0, 0.15) !important;
}

.final-match .score-control button:hover {
    background: rgba(255, 215, 0, 0.15) !important;
    color: #FFD700 !important;
}

/* ESTADÍSTICAS */
.stat-badge {
    background: rgba(13, 13, 26, 0.6);
    border-radius: 60px;
    padding: 0.15rem 1.2rem;
    font-size: 0.85rem;
    color: #E8E8F0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(0, 255, 136, 0.06);
    backdrop-filter: blur(2px);
}

.stat-badge strong {
    font-weight: 600;
    color: #00FF88;
}

.stat-badge.positive {
    background: rgba(0, 255, 136, 0.06);
    border-color: rgba(0, 255, 136, 0.12);
    color: #00FF88;
}

.stat-badge.negative {
    background: rgba(255, 23, 68, 0.06);
    border-color: rgba(255, 23, 68, 0.12);
    color: #FF1744;
}

.stat-badge.qualified {
    background: rgba(0, 212, 255, 0.08);
    border-color: #00D4FF;
    color: #00D4FF;
}

hr {
    border: 0;
    height: 2px;
    background: rgba(0, 255, 136, 0.08);
    margin: 1.5rem 0;
}

.phase-badge {
    background: rgba(0, 255, 136, 0.08);
    border-radius: 60px;
    padding: 0.3rem 1.2rem;
    font-weight: 600;
    color: #00FF88;
    display: inline-block;
    border: 1px solid rgba(0, 255, 136, 0.12);
    backdrop-filter: blur(2px);
}

.phase-indicator {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.phase-indicator h2 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #E8E8F0;
}

.round-info {
    background: rgba(13, 13, 26, 0.6);
    border-radius: 60px;
    padding: 0.2rem 1rem;
    font-size: 0.85rem;
    color: #4A4A6A;
    border: 1px solid rgba(0, 255, 136, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.stat-item {
    background: rgba(13, 13, 26, 0.6);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #4A4A6A;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.04);
    backdrop-filter: blur(2px);
}

.stat-item strong {
    display: block;
    font-size: 1.1rem;
    color: #00FF88;
}

.info-note {
    background: rgba(0, 255, 136, 0.04);
    border-left: 3px solid #00FF88;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #4A4A6A;
    margin-top: 0.5rem;
    backdrop-filter: blur(2px);
}

.round-selector-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(13, 13, 26, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.06);
    backdrop-filter: blur(2px);
}

.round-selector-container .label {
    font-size: 0.75rem;
    color: #4A4A6A;
    font-weight: 500;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
}

.matches-count {
    font-size: 0.75rem;
    color: #4A4A6A;
    margin-left: 0.3rem;
}

.qualified-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 13, 26, 0.6);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 255, 136, 0.08);
}

.qualified-selector label {
    font-size: 0.85rem;
    color: #4A4A6A;
    font-weight: 500;
}

.qualified-selector input {
    max-width: 60px;
    min-width: 40px;
    padding: 0.2rem 0.5rem;
}

.round-management {
    background: rgba(13, 13, 26, 0.4);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 255, 136, 0.06);
}

.round-management h3 {
    font-size: 1rem;
    color: #00FF88;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.round-management .flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.round-management .qualified-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 13, 26, 0.6);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 255, 136, 0.08);
    flex-wrap: wrap;
    margin-top: 0.6rem;
}

.round-management .qualified-selector label {
    font-size: 0.85rem;
    color: #4A4A6A;
    font-weight: 500;
}

.round-management .qualified-selector input {
    max-width: 60px;
    min-width: 40px;
    padding: 0.2rem 0.5rem;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 1.5rem;
}

/* TABLA DE PUNTUACIÓN TOTAL */
.total-score-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 400px;
}

.total-score-table th {
    text-align: center;
    padding: 0.6rem 0.8rem;
    background: rgba(13, 13, 26, 0.9);
    color: #00FF88;
    font-weight: 700;
    border-bottom: 3px solid rgba(0, 255, 136, 0.15);
    white-space: nowrap;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.total-score-table td {
    text-align: center;
    padding: 0.5rem 0.6rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.04);
    font-size: 0.85rem;
    color: #E8E8F0;
}

.total-score-table .rank-1 {
    background: rgba(0, 255, 136, 0.04);
}

.total-score-table .rank-2 {
    background: rgba(192, 192, 192, 0.04);
}

.total-score-table .rank-3 {
    background: rgba(205, 127, 50, 0.04);
}

.total-score-table .rank-1 td {
    color: #00FF88;
}

.total-score-table .name-cell {
    text-align: left;
    font-weight: 500;
    color: #E8E8F0;
    padding-left: 1rem;
}

.total-score-table .points-cell {
    font-weight: 700;
    font-size: 1rem;
    color: #00FF88;
}

.total-score-table .medal-icon {
    font-size: 1.2rem;
}

.total-score-table .positive {
    color: #00FF88;
}

.total-score-table .negative {
    color: #FF1744;
}

.total-score-table .matches-cell {
    color: #4A4A6A;
}

/* PODIO */
.podium-container {
    width: 100%;
    padding: 0.5rem 0;
}

.podium-title {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.05em;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #00FF88;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

.podium-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr 1fr;
    align-items: end;
    gap: 0.3rem;
    margin: 0.5rem 0 1.2rem;
}

.podium-place {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.2rem;
}

.podium-place .medal {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.podium-place .place-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #E8E8F0;
    text-align: center;
    word-break: break-word;
    max-width: 80px;
}

.podium-place .place-points {
    font-size: 0.7rem;
    color: #4A4A6A;
    font-weight: 400;
}

.podium-base {
    width: 100%;
    height: 18px;
    border-radius: 8px 8px 4px 4px;
    margin-top: 0.4rem;
}

.podium-base.gold {
    background: linear-gradient(180deg, #00FF88, #00CC77, #009955);
    height: 32px;
    box-shadow: 0 2px 20px rgba(0, 255, 136, 0.2);
}

.podium-base.silver {
    background: linear-gradient(180deg, #00D4FF, #00AACC, #008899);
    height: 26px;
    box-shadow: 0 2px 12px rgba(0, 212, 255, 0.15);
}

.podium-base.bronze {
    background: linear-gradient(180deg, #7C3AED, #5B21B6, #4C1D95);
    height: 22px;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.15);
}

.podium-base.fourth {
    background: linear-gradient(180deg, #4A4A6A, #2D2D44);
    height: 18px;
    opacity: 0.7;
}

.podium-place.place-1 {
    grid-column: 2 / 3;
}

.podium-place.place-2 {
    grid-column: 1 / 2;
}

.podium-place.place-3 {
    grid-column: 3 / 4;
}

.podium-place.place-4 {
    grid-column: 4 / 5;
}

.podium-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #4A4A6A;
    border-top: 1px solid rgba(0, 255, 136, 0.08);
    padding-top: 0.8rem;
}

.podium-footer .tourney-name {
    font-weight: 700;
    color: #00FF88;
    font-size: 0.95rem;
}

/* SCROLL */
.scrollable-list::-webkit-scrollbar {
    width: 4px;
}

.scrollable-list::-webkit-scrollbar-track {
    background: rgba(13, 13, 26, 0.5);
    border-radius: 10px;
}

.scrollable-list::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.2);
    border-radius: 10px;
}

.scrollable-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 136, 0.35);
}

.scrollable-list {
    max-height: 400px;
    overflow-y: auto;
}

/* RESPONSIVE */
@media (max-width: 820px) {
    body {
        padding-top: 150px;
    }

    .header-sticky {
        padding: 0.5rem 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .header-left {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-logo {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .header-logo img {
        width: 30px;
        height: 30px;
    }

    .header-title h1 {
        font-size: 1.1rem;
        text-align: center;
    }

    .header-title .subhead {
        font-size: 0.6rem;
        text-align: center;
        border-left: none;
        padding-left: 0;
    }

    .header-right {
        justify-content: center;
        gap: 0.3rem;
    }

    .header-stats {
        font-size: 0.6rem;
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-stats span {
        padding: 0.1rem 0.4rem;
    }

    .storage-status {
        font-size: 0.6rem;
        padding: 0.1rem 0.5rem;
    }

    .grid-2col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .app-container {
        padding: 1.5rem;
    }

    .versus-item {
        padding: 0.6rem 0.6rem 0.8rem;
        border-radius: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .match-controls {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .match-controls .btn-sm {
        font-size: 0.55rem;
        padding: 0.25rem 0.3rem;
    }

    .match-players {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.2rem 0.4rem;
    }

    .prefinal-badge,
    .final-badge {
        font-size: 0.5rem;
        padding: 0.05rem 0.6rem;
        top: -8px;
    }



    .unplayed-badge {
        font-size: 0.45rem;
        padding: 0.03rem 0.4rem;
    }

    .podium-grid {
        grid-template-columns: 1fr 1.2fr 1fr 1fr;
        gap: 0.2rem;
    }

    .podium-place .place-name {
        font-size: 0.7rem;
        max-width: 55px;
    }

    .podium-place .medal {
        font-size: 1.8rem;
    }

    .podium-base {
        height: 12px;
    }

    .podium-base.gold {
        height: 22px;
    }

    .podium-base.silver {
        height: 18px;
    }

    .podium-base.bronze {
        height: 15px;
    }

    .round-management .flex-row {
        flex-direction: column;
        align-items: stretch;
    }

    .round-management .qualified-selector {
        justify-content: center;
    }
}

/* ============================================================
   GESTIÓN DE RONDAS - BOTONES ALINEADOS
   ============================================================ */

.round-management {
    background: rgba(13, 13, 26, 0.4);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 255, 136, 0.06);
}

.round-management h3 {
    font-size: 1rem;
    color: #00FF88;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    width: 100%;
}

.btn-row:last-of-type {
    margin-bottom: 0;
}

.btn-full {
    flex: 1 1 0;
    min-width: 140px;
    justify-content: center;
    text-align: center;
}

/* Ajuste para el selector de clasificados dentro de la fila */
.btn-row .qualified-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 13, 26, 0.6);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 255, 136, 0.08);
    flex: 1 1 0;
    min-width: 200px;
    justify-content: center;
}

.btn-row .qualified-selector label {
    font-size: 0.85rem;
    color: #4A4A6A;
    font-weight: 500;
    white-space: nowrap;
}

.btn-row .qualified-selector input {
    max-width: 60px;
    min-width: 50px;
    padding: 0.2rem 0.5rem;
    text-align: center;
}

.btn-row .qualified-selector .btn {
    flex: 0 0 auto;
    min-width: 80px;
    justify-content: center;
}

.info-note-small {
    font-size: 0.7rem;
    color: #4A4A6A;
    margin-top: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================
   BOTÓN EDITAR NOMBRE
   ============================================================ */

.btn-sm {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
}

.btn-sm:hover {
    transform: scale(0.97);
}

/* ============================================================
   VERSUS - ESTABLE PARA TABLET
   ============================================================ */

.versus-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    background: rgba(13, 13, 26, 0.7);
    padding: 0.6rem 0.8rem;
    border-radius: 28px;
    border: 1px solid rgba(0, 255, 136, 0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    position: relative;
    min-height: 62px;
}

.versus-item:hover {
    border-color: rgba(0, 255, 136, 0.15);
    background: rgba(13, 13, 26, 0.85);
}

.match-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.match-players {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.2rem 0.4rem;
    min-height: 44px;
}

.player-score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 38px;
    flex-shrink: 0;
}

.player-score-block .player-name {
    font-weight: 500;
    font-size: 0.7rem;
    color: #E8E8F0;
    margin-top: 0.05rem;
    max-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-score-block .score-display {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00FF88;
    background: rgba(13, 13, 26, 0.8);
    padding: 0.05rem 0.3rem;
    border-radius: 30px;
    min-width: 24px;
    min-height: 24px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.versus-item .score-control {
    display: flex;
    align-items: center;
    gap: 0.05rem;
    background: rgba(13, 13, 26, 0.8);
    border-radius: 60px;
    padding: 0.05rem 0.1rem;
    border: 1px solid rgba(0, 255, 136, 0.08);
    flex-shrink: 0;
}

.score-control button {
    background: transparent;
    border: none;
    font-size: 0.8rem;
    padding: 0.05rem 0.3rem;
    color: #4A4A6A;
    font-weight: 500;
    border-radius: 30px;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-control button:hover {
    background: rgba(0, 255, 136, 0.08);
    color: #00FF88;
}

.versus-item .vs-badge {
    font-weight: 700;
    color: #00FF88;
    background: rgba(0, 255, 136, 0.08);
    padding: 0.05rem 0.5rem;
    border-radius: 40px;
    font-size: 0.6rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.versus-item .round-tag {
    font-size: 0.55rem;
    color: #4A4A6A;
    background: rgba(45, 45, 68, 0.6);
    padding: 0.05rem 0.4rem;
    border-radius: 30px;
    margin-left: 0.2rem;
    white-space: nowrap;
}

/* Badge de "Sin jugar" - TAMAÑO FIJO */
.unplayed-badge {
    display: inline-block;
    font-size: 0.5rem;
    font-weight: 600;
    color: #4A4A6A;
    background: rgba(74, 74, 106, 0.15);
    padding: 0.05rem 0.5rem;
    border-radius: 30px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(74, 74, 106, 0.2);
    margin-left: 0.2rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 18px;
    display: inline-flex;
    align-items: center;
}

/* CONTROLES - TAMAÑO FIJO */
.match-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    width: 100%;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.match-controls .btn-sm {
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
    font-weight: 600;
    border: 1px solid;
    background: transparent;
    width: 100%;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* BADGES FLOTANTES - TAMAÑO FIJO */
.prefinal-badge,
.final-badge {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.05rem 0.6rem;
    border-radius: 40px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: 1;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.prefinal-badge {
    background: linear-gradient(145deg, #7C3AED, #5B21B6);
    color: #FFFFFF;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}

.final-badge {
    background: linear-gradient(145deg, #FFD700, #FFB800);
    color: #1A1A2E;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.3);
}

/* ESTADOS - SIN CAMBIOS DE TAMAÑO */
.versus-item.unplayed {
    border-color: rgba(74, 74, 106, 0.3) !important;
    background: rgba(13, 13, 26, 0.4) !important;
    opacity: 0.7;
    animation: pulse-unplayed 3s ease-in-out infinite;
}

.versus-item.unplayed .score-display {
    color: #4A4A6A !important;
    border-color: rgba(74, 74, 106, 0.2) !important;
    background: rgba(13, 13, 26, 0.5) !important;
}

.versus-item.unplayed .player-name {
    color: #4A4A6A !important;
}

.versus-item.unplayed .vs-badge {
    color: #4A4A6A !important;
    background: rgba(74, 74, 106, 0.1) !important;
}

.versus-item.unplayed .score-control button {
    color: #4A4A6A !important;
}

.versus-item.unplayed .score-control button:hover {
    background: rgba(74, 74, 106, 0.15) !important;
    color: #8A8AAA !important;
}

.versus-item.unplayed:hover {
    border-color: rgba(74, 74, 106, 0.5) !important;
    background: rgba(13, 13, 26, 0.5) !important;
}

@keyframes pulse-unplayed {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.85;
    }
}

.versus-item.played {
    border-color: rgba(0, 255, 136, 0.15) !important;
    background: rgba(13, 13, 26, 0.7) !important;
    opacity: 1;
}

.versus-item.played .score-display {
    color: #00FF88 !important;
    border-color: rgba(0, 255, 136, 0.2) !important;
}

.versus-item.played .player-name {
    color: #E8E8F0 !important;
}

.versus-item.played .vs-badge {
    color: #00FF88 !important;
    background: rgba(0, 255, 136, 0.1) !important;
}

/* PRE-FINAL SIN CAMBIOS DE TAMAÑO */
.prefinal-match.unplayed .prefinal-badge {
    opacity: 0.5;
}

.final-match.unplayed .final-badge {
    opacity: 0.5;
}

/* RESPONSIVE - TABLET */
@media (max-width: 820px) {
    .versus-item {
        padding: 0.5rem 0.6rem;
        border-radius: 20px;
        min-height: 56px;
    }

    .match-players {
        gap: 0.15rem 0.3rem;
        min-height: 38px;
    }

    .player-score-block {
        min-width: 32px;
    }

    .player-score-block .player-name {
        font-size: 0.6rem;
        max-width: 40px;
    }

    .player-score-block .score-display {
        font-size: 0.8rem;
        min-width: 20px;
        min-height: 20px;
    }

    .score-control button {
        font-size: 0.7rem;
        min-width: 18px;
        min-height: 18px;
    }

    .versus-item .vs-badge {
        font-size: 0.55rem;
        padding: 0.05rem 0.4rem;
        min-height: 18px;
    }

    .unplayed-badge {
        font-size: 0.45rem;
        padding: 0.03rem 0.4rem;
        min-height: 16px;
    }

    .match-controls {
        gap: 0.3rem;
        padding-top: 0.25rem;
    }

    .match-controls .btn-sm {
        font-size: 0.55rem;
        padding: 0.2rem 0.3rem;
        min-height: 24px;
    }

    .prefinal-badge,
    .final-badge {
        font-size: 0.5rem;
        padding: 0.05rem 0.5rem;
        top: -8px;
        min-height: 18px;
    }

    .match-content {
        gap: 0.3rem;
    }

    /* Evitar cambios de tamaño al cambiar estado */
    .versus-item.unplayed .match-players,
    .versus-item.played .match-players {
        min-height: 38px;
    }

    .versus-item.unplayed .player-score-block,
    .versus-item.played .player-score-block {
        min-width: 32px;
    }

    .versus-item.unplayed .score-control,
    .versus-item.played .score-control {
        padding: 0.05rem 0.1rem;
    }

    .versus-item.unplayed .vs-badge,
    .versus-item.played .vs-badge {
        padding: 0.05rem 0.4rem;
        min-height: 18px;
    }
}

/* TABLET PEQUEÑA / MÓVIL GRANDE */
@media (max-width: 600px) {
    .versus-item {
        padding: 0.4rem 0.4rem;
        border-radius: 16px;
        min-height: 48px;
    }

    .match-players {
        gap: 0.1rem 0.2rem;
        min-height: 32px;
    }

    .player-score-block {
        min-width: 26px;
    }

    .player-score-block .player-name {
        font-size: 0.5rem;
        max-width: 30px;
    }

    .player-score-block .score-display {
        font-size: 0.7rem;
        min-width: 18px;
        min-height: 18px;
    }

    .score-control button {
        font-size: 0.6rem;
        min-width: 16px;
        min-height: 16px;
    }

    .versus-item .vs-badge {
        font-size: 0.45rem;
        padding: 0.03rem 0.3rem;
        min-height: 16px;
    }

    .unplayed-badge {
        font-size: 0.4rem;
        padding: 0.03rem 0.3rem;
        min-height: 14px;
    }

    .match-controls .btn-sm {
        font-size: 0.5rem;
        padding: 0.15rem 0.2rem;
        min-height: 20px;
    }

    .prefinal-badge,
    .final-badge {
        font-size: 0.4rem;
        padding: 0.03rem 0.4rem;
        top: -6px;
        min-height: 16px;
    }

    .versus-item.unplayed .match-players,
    .versus-item.played .match-players {
        min-height: 32px;
    }

    .versus-item.unplayed .player-score-block,
    .versus-item.played .player-score-block {
        min-width: 26px;
    }
}

/* ============================================================
   CONTROLES DE PARTICIPANTES
   ============================================================ */

.participant-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.5rem;
    background: rgba(13, 13, 26, 0.3);
    border-radius: 12px;
}

.participant-controls .btn-sm {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
}

.participant-controls .btn-sm:hover {
    transform: scale(0.97);
}

.participant-controls .btn-success.btn-sm {
    background: rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.25);
    color: #00FF88;
}

.participant-controls .btn-success.btn-sm:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00FF88;
    color: #00FF88;
}

/* Animación de entrada para la sección del torneo */
#tournamentSection {
    animation: fadeSlideIn 0.5s ease forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   FUENTES PERSONALIZADAS PARA TÍTULOS
   ============================================================ */

/* Fuente futurista - para el header y títulos principales */
.titulo-futurista {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.05em;
}

/* Fuente deportiva/gamer - para títulos de sección */
.titulo-gamer {
    font-family: 'Teko', sans-serif;
    letter-spacing: 0.03em;
    font-weight: 700;
}

/* Fuente moderna - para títulos secundarios */
.titulo-moderno {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Fuente llamativa - para el título del torneo */
.titulo-impacto {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
}


/* ============================================================
   EJEMPLOS ADICIONALES - CÓMO USAR EN HTML
   ============================================================ */

/* Puedes usar estas clases directamente en cualquier elemento HTML:
   - class="titulo-futurista"
   - class="titulo-gamer"
   - class="titulo-moderno"
   - class="titulo-impacto"
*/