/* === COMPONENTES ESPECÍFICOS E MELHORIAS === */

/* === ANIMAÇÕES AVANÇADAS === */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(222, 5, 85, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(222, 5, 85, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(222, 5, 85, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(222, 5, 85, 0.8);
    }
}

/* === CARDS DE JOGOS MELHORADOS === */
.game-item-enhanced {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(222, 5, 85, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.game-item-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(222, 5, 85, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.4s ease;
    opacity: 0;
}

.game-item-enhanced:hover::before {
    opacity: 1;
}

.game-item-enhanced:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(222, 5, 85, 0.4),
        0 0 40px rgba(222, 5, 85, 0.2);
    border-color: #de0555;
}

/* === EFEITOS DE HOVER AVANÇADOS === */
.hover-glow:hover {
    animation: glow 2s infinite;
}

.hover-float:hover {
    animation: float 3s ease-in-out infinite;
}

/* === BOTÕES PREMIUM === */
.btn-premium {
position: relative;
    background: linear-gradient(45deg, #1dd169, #1bd96b, #de0555);
    background-size: 200% 200%;
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(222, 5, 85, 0.5);
}

/* === CARDS DE ESTATÍSTICAS === */
.stats-card-advanced {
    background: black;
    backdrop-filter: blur(20px);
    border: 1px solid rgb(5 222 22 / 20%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stats-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.stats-card-advanced:hover {
    transform: translateY(-10px);
}

.stats-number-large {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #1dd169, #1dd169);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* === LOADING SPINNERS AVANÇADOS === */
.loader-advanced {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 2rem auto;
}

.loader-advanced::before,
.loader-advanced::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: spin2 2s linear infinite;
}

.loader-advanced::before {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(222, 5, 85, 0.2);
    border-top: 4px solid #de0555;
}

.loader-advanced::after {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
    border: 4px solid rgba(255, 31, 107, 0.2);
    border-top: 4px solid #ff1f6b;
    animation-direction: reverse;
}

@keyframes spin2 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === TOOLTIPS === */
.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 0, 25, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(222, 5, 85, 0.3);
    backdrop-filter: blur(10px);
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(13, 0, 25, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* === BREADCRUMBS === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(222, 5, 85, 0.2);
}

.breadcrumb-item {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #de0555;
}

.breadcrumb-item.active {
    color: #de0555;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #666;
    margin: 0 0.5rem;
}

/* === PROGRESS BARS AVANÇADAS === */
.progress-advanced {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin: 1rem 0;
}

.progress-bar-advanced {
    height: 100%;
    background: linear-gradient(90deg, #de0555, #ff1f6b);
    border-radius: 6px;
    position: relative;
    transition: width 0.8s ease;
}

.progress-bar-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

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

/* === TAGS/BADGES MELHORADAS === */
.tag-enhanced {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(222, 5, 85, 0.2), rgba(255, 31, 107, 0.2));
    border: 1px solid rgba(222, 5, 85, 0.4);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #de0555;
    margin: 0.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tag-enhanced:hover {
    background: linear-gradient(135deg, rgba(222, 5, 85, 0.3), rgba(255, 31, 107, 0.3));
    transform: scale(1.05);
}

/* === INPUTS MELHORADOS === */
.input-enhanced {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-enhanced input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(222, 5, 85, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-enhanced input:focus {
    outline: none;
    border-color: #de0555;
    box-shadow: 0 0 20px rgba(222, 5, 85, 0.3);
}

.input-enhanced label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #b8b8b8;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-enhanced input:focus + label,
.input-enhanced input:not(:placeholder-shown) + label {
    transform: translateY(-2rem) scale(0.8);
    color: #de0555;
}

/* === MODAL MELHORADO === */
.modal-enhanced {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-enhanced.show {
    opacity: 1;
    visibility: visible;
}

.modal-content-enhanced {
    background: linear-gradient(145deg, rgba(13, 0, 25, 0.95), rgba(26, 0, 51, 0.9));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(222, 5, 85, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-enhanced.show .modal-content-enhanced {
    transform: scale(1);
}

.modal-content-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #de0555, #ff1f6b);
}

/* === CAROUSEL MELHORADO === */
.carousel-enhanced {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-item-enhanced {
    position: relative;
    overflow: hidden;
}

.carousel-item-enhanced img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-item-enhanced:hover img {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.carousel-item-enhanced:hover .carousel-overlay {
    transform: translateY(0);
}

/* === NOTIFICAÇÕES === */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(13, 0, 25, 0.95), rgba(26, 0, 51, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(222, 5, 85, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    max-width: 400px;
    transform: translateX(100%);
    transition: all 0.3s ease;
    z-index: 10001;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-color: rgba(34, 197, 94, 0.5);
}

.notification.error {
    border-color: rgba(239, 68, 68, 0.5);
}

.notification.warning {
    border-color: rgba(251, 191, 36, 0.5);
}

/* === SEARCH BAR MELHORADA === */
.search-enhanced {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-enhanced input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(222, 5, 85, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-enhanced input:focus {
    outline: none;
    border-color: #de0555;
    box-shadow: 0 0 30px rgba(222, 5, 85, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.search-enhanced .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #de0555;
    pointer-events: none;
}

/* === TABS MELHORADAS === */
.tabs-enhanced {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-enhanced {
    flex: 1;
    padding: 1rem;
    text-align: center;
    background: transparent;
    border: none;
    color: #b8b8b8;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-enhanced.active {
    background: linear-gradient(135deg, #de0555, #ff1f6b);
    color: white;
    box-shadow: 0 5px 15px rgba(222, 5, 85, 0.3);
}

/* === RESPONSIVIDADE PARA COMPONENTES === */
@media (max-width: 768px) {
    .stats-number-large {
        font-size: 2rem;
    }
    
    .modal-content-enhanced {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .carousel-enhanced .carousel-item-enhanced img {
        height: auto !important;
        width: 100% !important;
    }
    
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .tabs-enhanced {
        flex-direction: column;
    }
}

/* === PERFORMANCE === */
.gpu-accelerated {
    will-change: transform;
    transform: translateZ(0);
}

/* === ACESSIBILIDADE === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === COMPONENTES ESPECÍFICOS DO INDEX === */

/* Login Modal Enhancements */
#loginModal {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1050 !important;
    overflow: auto !important;
    background: #0f0f11;
    backdrop-filter: blur(10px) !important;
}

.login-card {
    backdrop-filter: blur(20px) !important;
        border: 1px solid rgb(10 222 5 / 30%) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    width: 90% !important;
    max-width: 420px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    position: relative !important;
    animation: modalSlideIn 0.6s ease-out !important;
}

.login-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.login-text {
    color: white !important;
    text-align: center;
    font-size: 0.9rem;
}

.text-accent {
    color: #ffa701 !important;
}

.login-actions {
    display: flex;
    gap: 0.5rem;
}

.login-actions .btn-login,
.login-actions .btn-cadastro {
    flex: 1;
}

.btn-login {
    background: linear-gradient(135deg, #1bd96b, #02451d) !important;
    color: white !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-login:hover {
        background: linear-gradient(135deg, #1bd96b, #02451d) !important;
    transform: translateY(-2px) !important;
}

.btn-cadastro {
        background: linear-gradient(135deg, #1bd96b, #02451d) !important;
    color: white !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-cadastro:hover {
        background: linear-gradient(135deg, #1bd96b, #02451d) !important;
    transform: translateY(-2px) !important;
}

.login-footer {
    text-align: center;
    font-size: 0.8rem;
    color: white !important;
    margin-top: 1rem;
}

.text-success {
    color: #22c55e !important;
}

.text-muted {
    color: white !important;
    font-size: 0.75rem;
}

.form-label {
    color: white !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.form-control {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
    padding: 12px !important;
    border-radius: 8px !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    border-color: #007BFF !important;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3) !important;
    outline: none !important;
}

/* Enhanced Input Fields */
.input-enhanced {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-enhanced input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-small);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.input-enhanced input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(222, 5, 85, 0.3);
}

.input-enhanced label {
    position: absolute;
    top: 1rem;
    left: 3rem;
    color: var(--text-secondary);
    transition: var(--transition);
    pointer-events: none;
    background: transparent;
}

.input-enhanced input:focus + label,
.input-enhanced input:not(:placeholder-shown) + label {
    transform: translateY(-2rem) scale(0.8);
    color: var(--accent-color);
    background: var(--primary-bg);
    padding: 0 0.5rem;
}

.input-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--accent-color);
    z-index: 2;
}

.password-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-size: 1rem;
    z-index: 2;
}

/* Terms Agreement */
.terms-agreement {
    background: var(--glass-bg);
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius-small);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.terms-agreement input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
    accent-color: var(--accent-color);
}

.terms-agreement label {
    color: var(--text-primary);
    margin: 0;
    cursor: pointer;
    line-height: 1.4;
}

.terms-agreement a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Telegram Float Button */
#telegramFloat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0088cc, #00a0e6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}

#telegramFloat:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
    color: white;
}

/* Enhanced Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-actions .btn,
.modal-actions .btn-premium {
    flex: 1;
}

/* Hero Section */
.hero-section {
    margin: 2rem 0;
}

.no-slides {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
}

/* Banner Text Section */
.banner-text {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    margin: 2rem auto;
    max-width: 1200px;
    border: 1px solid var(--card-border);
}

/* Players Stats */
.players-stats {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.stat-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Winners Section Enhanced */
.winners-section {
    margin: 2rem 0;
    opacity: 1;
    animation: none;
}

.divGanhadores {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(50 222 5 / 20%);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.divGanhadores.model-0 {
    height: auto;
    padding: 1.5rem 0;
}

.divGanhadores.model-1 {
    height: 80px;
    padding: 1rem 0;
}

.winners-container {
    color: var(--text-primary);
    font-size: 0.9rem;
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    transform: translateX(100%);
    padding: 1rem 0;
}

.classGanhador.enhanced {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid #1dd169;
    border-radius: var(--border-radius-small);
    backdrop-filter: blur(10px);
    min-width: 280px;
}

.classGanhador.enhanced .game-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    border: 2px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.classGanhador.simple {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 1rem;
    padding: 0.75rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-small);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
}

.pix-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.winner-name {
    color: var(--text-primary);
}

.winner-amount {
    color: var(--accent-color);
}

.winner-text {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.textoGanhador {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    line-height: 1.3;
}

/* Container wrapper */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Games Section Enhancements */
.games-section {
    margin: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.section-header i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Loading States */
.loading-state {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    color: var(--text-secondary);
}

/* Enhanced Game Cards */
.game-item.enhanced {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(222, 5, 85, 0.3);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-item.enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(222, 5, 85, 0.4),
        0 0 50px rgba(222, 5, 85, 0.2);
    border-color: var(--accent-color);
}

/* Responsividade específica */
@media (max-width: 768px) {
    .login-actions {
        flex-direction: column;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .classGanhador.enhanced {
        min-width: 200px;
        padding: 0.75rem;
    }
    
    .classGanhador.enhanced .game-image {
        width: 40px;
        height: 40px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .stats-number-large {
        font-size: 2rem;
    }
}

/* === MODO ESCURO FORÇADO === */
@media (prefers-color-scheme: light) {
    /* Mantém o tema escuro mesmo se o usuário preferir claro */
}
