/* ==============================================
   RESET Y BASE
============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0e17 !important;
    color: #e2e8f0 !important;
    font-family: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
.clean-title {
    color: #ffffff !important;
    font-weight: 700;
}

/* ==============================================
   SCROLLBAR PERSONALIZADA
============================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #f59e0b;
    border-radius: 10px;
}

/* ==============================================
   TOASTS FLOTANTES
============================================== */
.toast-floating {
    background: #0d111a;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    pointer-events: auto;
    min-width: 340px;
    max-width: 560px;
    width: 100%;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #1e2433;
    position: relative;
    overflow: hidden;
}

.toast-floating.toast-success {
    border-color: #22c55e;
}

.toast-floating.toast-warning {
    border-color: #f59e0b;
}

.toast-floating.toast-error {
    border-color: #ef4444;
}

.toast-floating.toast-info {
    border-color: #3b82f6;
}

.toast-header-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 10px 20px;
    border-bottom: 1px solid #1e2433;
    background: rgba(13, 17, 26, 0.8);
}

.toast-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.toast-title {
    font-size: 0.85rem;
    font-weight: 700;
    flex: 1;
    letter-spacing: 0.02em;
}

.toast-close-btn {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.toast-body-custom {
    padding: 14px 20px 20px 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.toast-progress.success {
    background: #22c55e;
    animation: toastProgress 4000ms linear forwards;
}

.toast-progress.warning {
    background: #f59e0b;
    animation: toastProgress 4000ms linear forwards;
}

.toast-progress.error {
    background: #ef4444;
    animation: toastProgress 4000ms linear forwards;
}

.toast-progress.info {
    background: #3b82f6;
    animation: toastProgress 4000ms linear forwards;
}

@keyframes toastProgress {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/* ==============================================
   NAVBAR
============================================== */
.navbar-transparent {
    background-color: transparent !important;
    padding: 1rem 0;
}

.navbar-transparent .nav-link {
    color: #94a3b8 !important;
    transition: color 0.2s ease;
}

.navbar-transparent .nav-link:hover {
    color: #ffffff !important;
}

.navbar-transparent .navbar-brand {
    color: #ffffff;
    font-weight: 700;
}

.btn-login {
    background: transparent;
    border: 1px solid #3b4766;
    color: #94a3b8;
    border-radius: 40px;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-login:hover {
    border-color: #f59e0b;
    color: #ffffff;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
}

.dropdown-menu {
    background: #0d111a;
    border: 1px solid #1e2433;
}

.dropdown-item {
    color: #94a3b8;
}

.dropdown-item:hover {
    background: #1a2030;
    color: white;
}

hr {
    border-color: #1e2433;
}

/* ==============================================
   TARJETAS Y CONTENEDORES PRINCIPALES
============================================== */
.custom-card {
    background: #0d111a;
    border: 1px solid #1e2433;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.custom-card:hover {
    transform: translateY(-4px);
    border-color: #3b4766;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.Lobby-card {
    background: #0d111a;
    border: 1px solid #1e2433;
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.Lobby-card:hover {
    transform: translateY(-4px);
    border-color: #3b4766;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.img-container {
    position: relative;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.img-container .img-hover-captura {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.img-container .img-main-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ✅ HOVER: la imagen principal se desvanece (opacity: 0) para mostrar la captura */
.custom-card:hover .img-container .img-main-cover,
.Lobby-card:hover .img-container .img-main-cover {
    opacity: 0;
    transform: scale(1.05);
}

/* ✅ HOVER: la captura se muestra (opacity: 1) */
.custom-card:hover .img-container .img-hover-captura,
.Lobby-card:hover .img-container .img-hover-captura {
    opacity: 1;
    transform: scale(1.05);
}

/* Alturas específicas */
.custom-card .img-container,
.Lobby-card .img-container {
    height: 140px;
}

.game-cover {
    width: 100%;
    min-width: 140px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    background: #0d111a;
    border: 1px solid #1e2433;
    transition: transform 0.2s ease;
}

.game-cover:hover {
    transform: scale(1.02);
}

.border-featured {
    border: 1px solid rgba(234, 179, 8, 0.15) !important;
}

.border-featured:hover {
    border-color: rgba(234, 179, 8, 0.5) !important;
}

.border-gotd {
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    background: linear-gradient(180deg, #0e1324 0%, #0a0d16 100%);
}

.border-gotd:hover {
    border-color: rgba(99, 102, 241, 0.6) !important;
}

.badge-gotd {
    background: #6366f1;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.badge-gotd svg {
    width: 12px;
    height: 12px;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-stats {
    margin-top: auto;
}

/* ==============================================
   BADGES
============================================== */
.badge-newgame {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #8b5cf6;
    color: white;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 10;
}

.badge-Lobby {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #64748b;
    color: white;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 10;
}

.position-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #f59e0b;
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 10;
}

.featured-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(245, 158, 11, 0.9);
    color: white;
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
}

.Lobby-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(100, 116, 139, 0.9);
    color: white;
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.Lobby-badge.newgame {
    background: rgba(34, 197, 94, 0.9);
}

.Lobby-badge.Lobby {
    background: rgba(100, 116, 139, 0.9);
}

/* ==============================================
   SIDEBAR CARDS
============================================== */
.sidebar-card {
    background: #0d111a;
    border: 1px solid #1e2433;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 1rem;
}

.sidebar-game-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(30, 36, 51, 0.5);
}

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

.sidebar-game-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 8px;
}

.sidebar-game-info {
    flex: 1;
}

.sidebar-game-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    display: block;
}

.sidebar-game-stats {
    font-size: 0.65rem;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.sidebar-game-stats i {
    width: 10px;
    height: 10px;
}

.global-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.global-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.global-stat-label i {
    width: 16px;
    height: 16px;
}

.global-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

/* ==============================================
   PROMOCIONES EN SIDEBAR
============================================== */
.promotion-item {
    background: rgba(30, 36, 51, 0.5);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: default;
    transition: none;
}

.promotion-item .fw-bold {
    font-size: 1.2rem;
    color: white !important;
}

.promotion-item .promo-desc {
    font-size: 1.2rem;
    color: #94a3b8 !important;
}

.promotion-item .promo-cost-badge {
    font-size: 1.2rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==============================================
   MY COINS
============================================== */
.my-coins-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.my-coins-number .coin-icon {
    font-size: 2.2rem;
}

.coins-total {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.coins-icon {
    background: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coins-icon i {
    color: #f59e0b;
    width: 28px;
    height: 28px;
}

.coins-amount {
    flex: 1;
    text-align: center;
}

.coins-label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.coins-value {
    font-size: 2rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
}

.coins-display {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.2s ease;
}

.coins-display:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
}

.coins-display .coins-amount {
    font-weight: 700;
    font-size: 0.9rem;
    color: #f59e0b;
}

.coins-display .coins-icon {
    font-size: 0.9rem;
}

/* ==============================================
   TIP Y MANUAL
============================================== */
.tip-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.tip-icon {
    background: rgba(245, 158, 11, 0.15);
    border-radius: 10px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon i {
    width: 14px;
    height: 14px;
    color: #f59e0b;
}

.tip-content {
    flex: 1;
}

.tip-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.2rem;
}

.tip-text {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.4;
}

.manual-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.manual-list li {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.manual-list li i {
    width: 14px;
    height: 14px;
    margin-top: 0.1rem;
    flex-shrink: 0;
    color: #f59e0b;
}

.manual-list li strong {
    color: white;
    font-weight: 600;
}

/* ==============================================
   BOTONES Y FORMULARIOS
============================================== */
.games-menu {
    background: #0a0e16;
    border-radius: 60px;
    padding: 6px;
    display: inline-flex;
    gap: 6px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(100, 116, 139, 0.2);
    margin-bottom: 2rem;
}

.games-menu .menu-link {
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.games-menu .menu-link.active {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    cursor: default;
    pointer-events: none;
}

.games-menu .menu-link:not(.active) {
    background: transparent;
    color: #64748b;
}

.games-menu .menu-link:not(.active):hover {
    color: #cbd5e1;
    background: rgba(100, 116, 139, 0.1);
}

.form-panel {
    background: #0d111a;
    border: 1px solid #1e2433;
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-panel h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.form-control,
.form-select {
    background-color: #0f172a !important;
    border: 1px solid #334155 !important;
    color: #f1f5f9 !important;
    padding: 0.7rem 1rem;
    border-radius: 14px;
    font-size: 0.85rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #f59e0b !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.4rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    color: white;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    color: white;
}

.btn-primary-custom .coin-badge {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.9rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid #1e2433;
    color: #94a3b8;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.btn-outline-custom:hover {
    border-color: #f59e0b;
    color: white;
}

.promo-btn-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    padding: 1.2rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    width: 100%;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.promo-btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    color: white;
}

.promo-btn-blue i,
.promo-btn-blue svg {
    width: 32px;
    height: 32px;
}

.promo-btn-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    padding: 1.2rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    width: 100%;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.promo-btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    color: white;
}

.promo-btn-orange i,
.promo-btn-orange svg {
    width: 32px;
    height: 32px;
}

.btn-suggestion {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    border-radius: 50px;
    padding: 6px 14px;
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.btn-suggestion:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.btn-google {
    background-color: #4285f4;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background-color: #357abd;
    color: white;
    transform: translateY(-2px);
}

.btn-google i {
    margin-right: 8px;
}

/* ==============================================
   PANEL DE JUEGOS (tabla)
============================================== */
.games-panel {
    background: #0d111a;
    border: 1px solid #1e2433;
    border-radius: 24px;
    padding: 1.5rem;
}

.games-panel h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 1.2rem;
}

.games-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.games-table th {
    text-align: left;
    padding: 12px 8px;
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.games-table td {
    background: #0f1219;
    border-radius: 12px;
    padding: 16px 8px;
    vertical-align: middle;
}

.game-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 160px;
}

.game-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-align: center;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==============================================
   PROMOCIONES EN TABLA
============================================== */
.promotion-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.promo-btn {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 28px 12px;
    border-radius: 8px;
    background: rgba(30, 36, 51, 0.5);
    border: 1px solid transparent;
    width: 200px;
    text-align: center;

}

.promo-btn:hover:not(.active):not(.queue) {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.promo-btn .promo-name {
    font-weight: 600;
    color: #94a3b8;
    font-size: 0.9rem;
}

.promo-btn .promo-status {
    color: #64748b;
    font-size: 1rem;
    margin-top: 2px;
    font-weight: 700;
}

.promo-btn .promo-cost {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-top: 2px;
    font-weight: 700;
}

.promo-btn .promo-time {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-top: 2px;
    font-family: monospace;
}

.promo-btn .coin-icon {
    font-size: 0.9rem;
}

.promo-btn.active {
    background: rgba(245, 158, 11, 0.25) !important;
    border: 1px solid #f59e0b !important;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.promo-btn.active .promo-name,
.promo-btn.active .promo-status,
.promo-btn.active .promo-cost,
.promo-btn.active .promo-time {
    color: #fbbf24 !important;
}

.promo-btn.queue {
    background: rgba(59, 130, 246, 0.15) !important;
    border: 1px solid #3b82f6 !important;
}

.promo-btn.queue .promo-name,
.promo-btn.queue .promo-status {
    color: #60a5fa !important;
}

.stats-cell {
    text-align: center;
    min-width: 70px;
}

.views-number,
.clicks-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
}

.clicks-number {
    color: #f59e0b;
}

.action-cell {
    text-align: right;
    min-width: 50px;
}

.action-btn {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 8px 12px;
    color: #94a3b8;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.action-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #64748b;
}

.empty-section {
    background: #0d111a;
    border: 1px dashed #1e2433;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
}

.empty-section i {
    color: #334155;
    margin-bottom: 10px;
}

.empty-section p {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
}

.empty-state-Lobby {
    background: #0d111a;
    border: 2px dashed #1e2433;
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state-Lobby i {
    color: #334155;
    margin-bottom: 1rem;
}

.empty-state-Lobby h3 {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.empty-state-Lobby p {
    color: #475569;
}

/* ==============================================
   TEMPORIZADORES
============================================== */
.countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
    padding: 5px 8px;
    border-radius: 8px;
    text-align: center;
}

.countdown-timer-empty {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    padding: 5px 8px;
    border-radius: 8px;
    text-align: center;
    color: #475569;
    background: rgba(71, 85, 105, 0.15);
}

.countdown-timer-gotd {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
}

/* ==============================================
   VOTACIONES Y FEATURED SCROLL
============================================== */
.featured-scroll {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.featured-scroll::-webkit-scrollbar {
    width: 4px;
}

.featured-scroll::-webkit-scrollbar-track {
    background: #1e2433;
    border-radius: 4px;
}

.featured-scroll::-webkit-scrollbar-thumb {
    background: #f59e0b;
    border-radius: 4px;
}

.btn-vote {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.7rem;
    color: white;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-vote:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    color: white;
}

.btn-vote.voted {
    background: #22c55e !important;
}

.btn-vote.disabled-vote {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-vote-cancel-mode {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background: #334155 !important;
}

.btn-play-outline {
    background: transparent;
    border: 1px solid #3b4766;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.7rem;
    color: #94a3b8;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-play-outline:hover {
    border-color: #f59e0b;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-submit-votes {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    width: 100%;
    transition: all 0.2s;
}

.btn-submit-votes:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-submit-votes:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vote-slot {
    background: #06080c;
    border: 1px solid #1e2433;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    transition: all 0.2s ease;
}

.vote-slot.slot-voted-mode {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.vote-slot-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.vote-slot-empty {
    width: 100%;
    height: 120px;
    background: #1e2433;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
}

.vote-slot-info {
    padding: 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #06080c;
    border-top: 1px solid #1e2433;
}

.vote-slot-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.vote-slot-empty-text {
    font-size: 0.7rem;
    color: #475569;
}

.remove-vote-btn {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.remove-vote-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.vote-info-text {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #cbd5e1 !important;
    background: rgba(100, 116, 139, 0.15);
    padding: 10px;
    border-radius: 12px;
    margin-top: 12px;
}

.vote-info-text i {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.vote-info-text strong {
    color: #f59e0b;
    font-weight: 700;
}

.vote-info-text .remove-x {
    color: #ef4444;
    font-weight: bold;
}

.vote-slot-check {
    color: #22c55e;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==============================================
   EARn COINS BTN
============================================== */
.earn-coins-btn {
    cursor: pointer;
    background: rgba(245, 158, 11, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.2s;
    font-size: 0.75rem !important;
    /* ✅ AÑADE !important */
    font-weight: 600 !important;
    /* ✅ AÑADE !important */
    color: #f59e0b;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

.earn-coins-btn:hover {
    background: rgba(245, 158, 11, 0.3);
}

/* ==============================================
   SECCIONES Y DIVISORES
============================================== */
.section-divider {
    border-bottom: 2px solid #141a29;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.section-divider svg {
    width: 14px;
    height: 14px;
}

.text-muted-custom {
    color: #94a3b8 !important;
}

.desc-line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    min-height: 2.8em;
    color: #64748b;
}

.desc-line-clamp-large {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    color: #64748b;
}

.alert-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-align: center;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

/* ==============================================
   FOOTER
============================================== */
.footer {
    background: #0a0e16;
    border-top: 1px solid #1e2433;
    margin-top: 4rem;
    padding: 2rem 0;
}

/* ==============================================
   REPLACE MODAL
============================================== */
.replace-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 10px;
    background: rgba(13, 17, 26, 0.5);
    border-radius: 16px;
    border: 1px solid #1e2433;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.replace-game-card {
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    width: 100%;
    flex: 1;
}

.replace-game-card.current {
    border: 2px solid #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.replace-game-card.new {
    border: 2px solid #22c55e;
    background: rgba(34, 197, 94, 0.05);
}

.replace-game-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.replace-game-card.current .replace-game-label {
    color: #ef4444;
}

.replace-game-card.new .replace-game-label {
    color: #22c55e;
}

.replace-game-img {
    width: 180px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #1e2433;
    margin-bottom: 8px;
    background: #0d111a;
}

.replace-game-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    word-break: break-word;
}

.replace-game-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f59e0b;
}

.replace-game-cost {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fbbf24;
}

.replace-arrow {
    font-size: 2rem;
    color: #f59e0b;
    font-weight: 700;
    padding: 0 8px;
}

/* ==============================================
   PROMOTION CONFIRM MODAL
============================================== */
.promo-game-preview {
    background: rgba(13, 17, 26, 0.6);
    border: 1px solid #1e2433;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
}

.promo-game-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.promo-game-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #1e2433;
    background: #0d111a;
    flex-shrink: 0;
}

.promo-game-details {
    flex: 1;
    text-align: left;
}

.promo-game-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.promo-game-type {
    font-size: 0.75rem;
    font-weight: 600;
    color: #f59e0b;
}

.promo-cost-box {
    background: rgba(13, 17, 26, 0.6);
    border: 1px solid #1e2433;
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 12px;
}

.promo-cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.promo-cost-row:first-child {
    border-bottom: 1px solid rgba(30, 36, 51, 0.5);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.promo-cost-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.promo-cost-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
}

/* ==============================================
   MENSAJES Y OFFCANVAS
============================================== */
.offcanvas {
    background: #0d111a !important;
    border-left: 1px solid #1e2433 !important;
    width: 450px !important;
}

.offcanvas-header {
    background: #0a0e16;
    border-bottom: 1px solid #1e2433;
    padding: 1rem 1.5rem;
}

.offcanvas-title {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
}

.offcanvas-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas-body {
    padding: 0 !important;
}

.message-item {
    background: #0d111a;
    border-bottom: 1px solid #1e2433;
    padding: 1.25rem 1.5rem;
    width: 100%;
    display: block;
}

.message-item:hover {
    background: #131825;
}

.message-item.unread {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.05) 0%, #0d111a 100%);
}

.message-text {
    color: #ffffff !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    width: 100%;
}

.message-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #94a3b8;
    width: 100%;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(100, 116, 139, 0.3);
}

.message-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-message {
    background: transparent;
    border: none;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-message-success {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.btn-message-success:hover {
    background: rgba(34, 197, 94, 0.25);
}

.btn-message-danger {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.btn-message-danger:hover {
    background: rgba(239, 68, 68, 0.25);
}

.empty-messages {
    text-align: center;
    padding: 3rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* ==============================================
   LOBBY GAME / PLAY PAGE
============================================== */
.game-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.game-card {
    background: #0d111a;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 32px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: #f59e0b;
    box-shadow: 0 30px 60px -12px rgba(245, 158, 11, 0.2);
}

.game-cover-large {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #f59e0b;
}

.game-screenshot {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #334155;
}

.share-box-center {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 2px solid #f59e0b;
    border-radius: 24px;
    padding: 25px 30px;
    margin-top: 30px;
    text-align: center;
}

.share-title-center {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.share-title-center i {
    width: 24px;
    height: 24px;
}

.coins-counter-center {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.url-container-center {
    background: #0d111a;
    border: 1px solid #334155;
    border-radius: 40px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.url-text-center {
    color: #94a3b8;
    font-size: 0.8rem;
    word-break: break-all;
    flex: 1;
    font-family: monospace;
}

.btn-copy-center {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    color: white;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-copy-center:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.share-buttons-center {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn-center {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.share-btn-center:hover {
    transform: translateY(-2px);
    color: white;
}

.share-wa {
    background: #25D366;
}

.share-fb {
    background: #1877F2;
}

.share-tw {
    background: #1DA1F2;
}

.share-tg {
    background: #0088cc;
}

.game-stats-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.game-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.game-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #64748b;
}

.game-stats .clicks {
    color: #f59e0b;
}

.game-stats i {
    width: 16px;
    height: 16px;
}

.game-stats.justify-content-end {
    justify-content: flex-end;
}

.game-stats.justify-content-center {
    justify-content: center;
}

.error-page-icon {
    width: 80px;
    height: 80px;
    color: #f59e0b;
    margin-bottom: 20px;
}

/* ==============================================
   PAGINACION
============================================== */
.pagination .page-link {
    background: #1e293b;
    border-color: #334155;
    color: #94a3b8;
}

.pagination .page-link:hover {
    background: #2d3a4e;
    color: #f59e0b;
    border-color: #f59e0b;
}

.pagination .active .page-link {
    background: #f59e0b;
    border-color: #f59e0b;
    color: white;
}

/* ==============================================
   ADMIN / STATUS BTNS
============================================== */
.status-btn {
    background: rgba(71, 85, 105, 0.3);
    border: none;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #94a3b8;
}

.status-btn:hover {
    background: rgba(71, 85, 105, 0.5);
    color: #cbd5e1;
}

.status-btn.active {
    background: rgba(59, 130, 246, 0.35);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.status-btn.medal.active {
    background: rgba(245, 158, 11, 0.35);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.5);
}

.status-btn.lobby.active {
    background: rgba(59, 130, 246, 0.5) !important;
    color: #60a5fa !important;
    border: 1px solid rgba(59, 130, 246, 0.5) !important;
}

.game-row-admin {
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.game-row-admin:hover {
    background: rgba(51, 65, 85, 0.15);
}

.game-cover-admin {
    width: 40px;
    height: 32px;
    object-fit: cover;
    border-radius: 6px;
}

.text-views,
.text-clicks {
    color: #ffffff !important;
    font-weight: 600;
}

.game-row-hidden {
    display: none !important;
}

.progress-custom-sm {
    background: #1e293b;
    border-radius: 10px;
    height: 4px;
    overflow: hidden;
}

.progress-custom-bar-sm {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    height: 100%;
    border-radius: 10px;
}

.btn-xs {
    font-size: 0.6rem;
    padding: 2px 5px;
}

.delete-icon {
    color: #ef4444;
    transition: all 0.2s;
}

.delete-icon:hover {
    color: #dc2626;
    transform: scale(1.05);
}

.metric-pill {
    background: rgba(51, 65, 85, 0.5);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #cbd5e1;
}

.metric-pill.highlight {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.metric-pill.views {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.panel-admin-bg {
    background: rgba(13, 17, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

/* ==============================================
   FORMULARIO PREVIEW
============================================== */
.form-preview-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.form-column {
    flex: 1;
    min-width: 280px;
}

.preview-column {
    flex: 1;
    min-width: 280px;
}

.preview-card {
    background: #0d111a;
    border: 1px solid #1e2433;
    border-radius: 16px;
    overflow: hidden;
}

.preview-image-container {
    position: relative;
    overflow: hidden;
    background-color: #06080c;
    aspect-ratio: 16 / 9;
}

.preview-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-info {
    padding: 12px;
}

.preview-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.preview-desc {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.4;
}

.preview-screenshot {
    margin-top: 8px;
    display: none;
}

.preview-screenshot img {
    width: 100%;
    border-radius: 8px;
}

/* ==============================================
   NAV PILLS
============================================== */
.nav-pills .nav-link {
    background: rgba(30, 36, 51, 0.6);
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    transition: all 0.2s;
}

.nav-pills .nav-link:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.nav-pills .nav-link i {
    width: 14px;
    margin-right: 4px;
}

/* ==============================================
   RESPONSIVE
============================================== */
@media (max-width: 768px) {
    .col-lg-8 .img-container img {
        height: 180px !important;
    }

    .games-menu .menu-link {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .btn-vote,
    .btn-play-outline {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }

    .vote-slot-img,
    .vote-slot-empty {
        height: 80px;
    }

    .vote-slot-title {
        font-size: 0.65rem;
    }

    .toast-floating {
        min-width: 280px;
        max-width: 92%;
    }

    .promotion-buttons {
        min-width: auto;
        flex-direction: column;
        gap: 6px;
    }

    .promo-btn {
        min-width: auto;
        padding: 8px 10px;
    }

    .game-cell {
        min-width: 100px;
    }

    .game-cover {
        min-width: 80px;
        height: 60px;
    }

    .replace-comparison {
        flex-direction: column;
        gap: 12px;
    }

    .replace-arrow {
        transform: rotate(90deg);
    }

    .replace-game-card {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }

    .promo-game-card {
        flex-direction: column;
        text-align: center;
    }

    .promo-game-details {
        text-align: center;
    }

    .promo-game-img {
        width: 60px;
        height: 60px;
    }

    .promo-cost-value {
        font-size: 0.95rem;
    }

    .replace-game-img {
        width: 100%;
        height: 80px;
    }
}

/* ============================================== */
/* SIDEBAR - FEEDBACK BUTTON */
/* ============================================== */
.promo-btn-feedback {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.promo-btn-feedback:hover {
    background: rgba(30, 41, 59, 1);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Platform info */
.platform-info {
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
    border-left: 3px solid #f59e0b;
}

/* Feedback info */
.feedback-info {
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
    border-left: 3px solid #60a5fa;
}