/* ========================================
   RTP Radar - Component Styles
   ======================================== */

/* ========================================
   Radar Search & Filters
   ======================================== */

.radar-search {
    position: relative;
    margin-bottom: var(--space-md);
}

.radar-search i {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.radar-search input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition-base);
}

.radar-search input:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.15);
}

.radar-search input::placeholder {
    color: var(--text-muted);
}

.radar-filters {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.radar-filters::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-main);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-chip:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
}

.filter-chip.active {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.filter-chip .chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.filter-chip .chip-dot.hot { background: var(--neon-green); }
.filter-chip .chip-dot.warm { background: var(--amber); }
.filter-chip .chip-dot.cold { background: var(--neon-blue); }

.radar-stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 12px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    border: 1px solid var(--border);
}

.radar-stat {
    text-align: center;
}

.radar-stat .stat-count {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-mono);
}

.radar-stat .stat-count.hot { color: var(--neon-green); }
.radar-stat .stat-count.warm { color: var(--amber); }
.radar-stat .stat-count.cold { color: var(--neon-blue); }

.radar-stat .stat-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Game Cards
   ======================================== */

.games-feed {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
}

.game-radar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    gap: var(--space-md);
    transition: var(--transition-base);
    animation: fadeInUp 0.4s ease backwards;
    cursor: pointer;
}

.game-radar-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.game-radar-card.hot {
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.05);
}

.game-radar-card.warm {
    border-color: rgba(255, 187, 0, 0.15);
}

.game-radar-card.cold {
    border-color: rgba(0, 180, 255, 0.15);
}

.game-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-thumb .thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
}

.game-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.game-card-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-provider {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.game-rtp-value {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-mono);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.game-rtp-value.hot {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
}

.game-rtp-value.warm {
    color: var(--amber);
    background: rgba(255, 187, 0, 0.1);
}

.game-rtp-value.cold {
    color: var(--neon-blue);
    background: rgba(0, 180, 255, 0.1);
}

/* Temperature Bar */
.temp-bar-container {
    width: 100%;
    margin-bottom: 6px;
}

.temp-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.temp-bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s ease, background 0.5s ease;
    position: relative;
}

.temp-bar-fill.hot {
    background: linear-gradient(90deg, #00cc6a, var(--neon-green));
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.temp-bar-fill.warm {
    background: linear-gradient(90deg, #e69500, var(--amber));
}

.temp-bar-fill.cold {
    background: linear-gradient(90deg, #0070cc, var(--neon-blue));
}

.temp-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 500;
}

.temp-label.hot {
    color: var(--neon-green);
}

.temp-label.warm {
    color: var(--amber);
}

.temp-label.cold {
    color: var(--neon-blue);
}

.temp-label .fire-icon {
    animation: firePulse 0.8s ease-in-out infinite;
}

@keyframes firePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

.btn-jogar-agora {
    margin-top: 10px;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--neon-green), #00cc6a);
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg-dark);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-jogar-agora:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.35);
}

.btn-jogar-agora:active {
    transform: translateY(0);
}

.games-feed-empty {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--text-muted);
}

.games-feed-empty i {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    opacity: 0.4;
}

.games-feed-empty p {
    font-size: 0.95rem;
}

/* ========================================
   Bank Manager (Cofre)
   ======================================== */

.cofre-container {
    padding-bottom: var(--space-xl);
}

.cofre-header-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 180, 255, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.cofre-header-card .cofre-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.cofre-header-card .cofre-icon i {
    font-size: 1.75rem;
    color: var(--neon-green);
}

.cofre-header-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cofre-header-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cofre-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.cofre-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.cofre-input-group {
    position: relative;
    margin-bottom: var(--space-lg);
}

.cofre-input-group .currency-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    pointer-events: none;
}

.cofre-input-group input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-mono);
    transition: var(--transition-base);
}

.cofre-input-group input:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.15);
}

.cofre-input-group input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-main);
    font-size: 1rem;
}

.risk-profile-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.risk-profiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.risk-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: var(--space-md);
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-main);
    color: var(--text-secondary);
}

.risk-option:hover {
    background: var(--bg-card-hover);
}

.risk-option.active {
    border-color: var(--neon-green);
    background: rgba(0, 255, 136, 0.05);
    color: var(--text-primary);
}

.risk-option i {
    font-size: 1.25rem;
}

.risk-option.conservative i { color: var(--neon-blue); }
.risk-option.aggressive i { color: var(--amber); }

.risk-option span {
    font-size: 0.85rem;
    font-weight: 600;
}

.risk-option small {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
}

.btn-calculate {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--neon-green), #00cc6a);
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg-dark);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.btn-calculate:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

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

/* Diagnosis Result */
.cofre-result {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.cofre-result.active {
    display: block;
}

.result-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.result-header i {
    color: var(--neon-green);
    font-size: 1.25rem;
}

.result-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.result-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.result-card .result-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.result-card .result-icon.stake {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
}

.result-card .result-icon.stop-loss {
    background: rgba(255, 59, 92, 0.1);
    color: var(--neon-red);
}

.result-card .result-icon.stop-win {
    background: rgba(255, 187, 0, 0.1);
    color: var(--amber);
}

.result-card .result-info {
    flex: 1;
}

.result-card .result-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.result-card .result-value {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-mono);
}

.result-card .result-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.result-card.stake-card .result-value { color: var(--neon-green); }
.result-card.loss-card .result-value { color: var(--neon-red); }
.result-card.win-card .result-value { color: var(--amber); }

.result-tip {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 180, 255, 0.08);
    border: 1px solid rgba(0, 180, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.result-tip i {
    color: var(--neon-blue);
    margin-top: 2px;
    flex-shrink: 0;
}

.result-tip p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   VIP Assistant
   ======================================== */

/* Lock Screen */
/* ========================================
   VIP Lock Screen - Premium Design
   ======================================== */

.vip-lock-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-lg) 100px;
    text-align: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.vip-lock-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.03) 40%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.lock-icon-wrapper {
    width: 88px;
    height: 88px;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    position: relative;
    animation: lockFloat 3s ease-in-out infinite;
}

.lock-icon-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.1);
    animation: ringPulse 3s ease-in-out infinite;
}

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

@keyframes lockFloat {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); }
    50% { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2); }
}

.lock-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.vip-lock-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.vip-lock-title span {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-lock-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.vip-lock-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    max-width: 340px;
}

.vip-features-list {
    width: 100%;
    max-width: 360px;
    margin-bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vip-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.8), rgba(26, 26, 37, 0.6));
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 215, 0, 0.08);
    transition: var(--transition-base);
}

.vip-feature-item:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.8));
}

.vip-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.04));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vip-feature-icon i {
    font-size: 0.95rem;
    color: var(--gold);
}

.vip-feature-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vip-feature-text strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.vip-feature-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.btn-vip-unlock {
    width: 100%;
    max-width: 360px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ffd700, #e6a800, #ffd700);
    background-size: 200% 100%;
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg-dark);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.btn-vip-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 215, 0, 0.35);
}

.btn-vip-unlock:active {
    transform: translateY(0);
}

.vip-lock-footer {
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   VIP Chat Interface - Premium Design
   ======================================== */

.vip-chat-container {
    display: none;
    flex-direction: column;
    height: calc(100vh - 200px);
    height: calc(100dvh - 200px);
    max-height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.vip-chat-container.active {
    display: flex;
}

.chat-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--space-md);
    background: linear-gradient(135deg, #12121a, #1a1a28);
    border: 1px solid var(--border);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.chat-bot-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), #e6a800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.chat-bot-avatar i {
    font-size: 1.15rem;
    color: var(--bg-dark);
}

.avatar-pulse {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    border: 2px solid #12121a;
}

.chat-bot-info {
    flex: 1;
}

.chat-bot-name {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.chat-bot-status {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    display: inline-block;
    animation: statusPulse 2s ease-in-out infinite;
}

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

.chat-header-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chat-header-badge i {
    font-size: 0.65rem;
}

.chat-messages-area {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
    background: linear-gradient(180deg, #0d0d14, #0a0a0f);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    scroll-behavior: smooth;
}

.chat-messages-area::-webkit-scrollbar {
    width: 4px;
}

.chat-messages-area::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages-area::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.chat-bubble {
    max-width: 88%;
    animation: messageIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes messageIn {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-bubble.bot {
    align-self: flex-start;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.chat-bubble.bot .bubble-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), #e6a800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.chat-bubble.bot .bubble-avatar i {
    font-size: 0.7rem;
    color: var(--bg-dark);
}

.chat-bubble.bot .bubble-body {
    background: linear-gradient(135deg, #1a1a28, #16161f);
    border: 1px solid var(--border);
    border-radius: 4px var(--radius-lg) var(--radius-lg) var(--radius-lg);
    padding: 12px 16px;
    flex: 1;
}

.bubble-content {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.bubble-content strong {
    color: var(--gold);
    font-weight: 600;
}

.chat-bubble .bubble-time {
    display: block;
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.chat-bubble.bot .bubble-time {
    text-align: left;
}

.chat-bubble.user {
    align-self: flex-end;
}

.chat-bubble.user .bubble-content {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 255, 136, 0.06));
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: var(--radius-lg) 4px var(--radius-lg) var(--radius-lg);
    padding: 12px 16px;
}

.chat-bubble.user .bubble-time {
    text-align: right;
    margin-top: 4px;
    padding-right: 4px;
}

.chat-typing {
    align-self: flex-start;
    display: none;
    gap: 10px;
    align-items: flex-start;
}

.chat-typing.active {
    display: flex;
    align-items: center;
}

.chat-typing::before {
    content: '';
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), #e6a800);
    border-radius: 8px;
    flex-shrink: 0;
}

.typing-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-8px); opacity: 1; }
}

.chat-input-bar {
    display: flex;
    gap: var(--space-sm);
    padding: 12px var(--space-md);
    background: linear-gradient(135deg, #12121a, #16161f);
    border: 1px solid var(--border);
    border-top: 1px solid rgba(255, 215, 0, 0.06);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.chat-input-bar input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-family: var(--font-main);
    transition: all 0.2s ease;
}

.chat-input-bar input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(10, 10, 15, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.06);
}

.chat-input-bar input::placeholder {
    color: var(--text-muted);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), #e6a800);
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chat-send-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.chat-send-btn:active {
    transform: translateY(0);
}

.chat-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ========================================
   Profile - Updated
   ======================================== */

.profile-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
}

.profile-status-tag.free {
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.2);
    color: var(--neon-blue);
}

.profile-status-tag.vip {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

/* ========================================
   Updated Header
   ======================================== */

.app-header .radar-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-header .radar-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(0, 255, 136, 0); }
}

/* ========================================
   Updated Bottom Nav
   ======================================== */

.bottom-nav .nav-item.active {
    color: var(--neon-green);
}

.bottom-nav .nav-item.nav-center .nav-center-btn {
    background: linear-gradient(135deg, var(--neon-green), #00cc6a);
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
}

/* ========================================
   Splash Screen - Updated
   ======================================== */

.splash-screen .logo-icon {
    background: linear-gradient(135deg, var(--neon-green), #00cc6a);
    box-shadow: 0 4px 24px rgba(0, 255, 136, 0.3);
}

.splash-screen .logo-text span {
    background: linear-gradient(135deg, var(--neon-green), #00e680);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash-screen .loader-bar {
    background: linear-gradient(90deg, var(--neon-green), #00cc6a);
}

/* Login - Updated */
.login-screen .logo-icon {
    background: linear-gradient(135deg, var(--neon-green), #00cc6a);
    box-shadow: 0 4px 24px rgba(0, 255, 136, 0.3);
}

.login-screen .logo-text span {
    background: linear-gradient(135deg, var(--neon-green), #00e680);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-screen .btn-primary {
    background: linear-gradient(135deg, var(--neon-green), #00cc6a) !important;
    color: var(--bg-dark) !important;
}

.login-screen .bg-gradient {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 180, 255, 0.07) 0%, transparent 50%),
        var(--bg-darker);
}

.login-screen .particle {
    background: var(--neon-green);
}

/* ========================================
   Animations
   ======================================== */

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

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 380px) {
    .game-radar-card {
        padding: 12px;
        gap: 12px;
    }

    .game-thumb {
        width: 60px;
        height: 60px;
    }

    .game-card-name {
        font-size: 0.9rem;
    }

    .cofre-form {
        padding: var(--space-md);
    }
}
