@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;600;700;800&display=swap');

/* --- VARIÁVEIS DO TEMA --- */
:root {
    --bg-primary: #040508;
    --bg-secondary: #0a0c13;
    --bg-tertiary: #111422;
    --card-bg: rgba(17, 20, 34, 0.8);
    --border-color: rgba(0, 240, 255, 0.12);
    --border-hover: rgba(0, 240, 255, 0.5);
    
    --accent-purple: #7c3aed;
    --accent-purple-glow: rgba(124, 58, 237, 0.4);
    --accent-cyan: #00f0ff;
    --accent-cyan-glow: rgba(0, 240, 255, 0.55);
    --accent-gradient: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    
    --text-primary: #f3f4f6;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    --font-title: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 10px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes neonPulse {
    0% { box-shadow: 0 0 8px rgba(0, 240, 255, 0.2); }
    50% { box-shadow: 0 0 16px rgba(0, 240, 255, 0.4); }
    100% { box-shadow: 0 0 8px rgba(0, 240, 255, 0.2); }
}

@keyframes floatUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-3px); }
}

/* --- RESET & ESTRUTURA BÁSICA --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- BARRA DE ROLAGEM --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* --- TIPOGRAFIA --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- UTILS --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 10px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-cyan-glow);
}

/* --- BOTÕES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: 0 0 15px var(--accent-purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--accent-cyan-glow);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-purple);
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan-glow);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-danger {
    background-color: var(--danger);
    color: #fff;
}

.btn-danger:hover {
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.4);
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--success);
    color: #000;
}

.btn-success:hover {
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
    transform: translateY(-2px);
}

/* --- HEADER / CABEÇALHO --- */
header {
    background: rgba(6, 7, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

header.scrolled {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 25px rgba(0,0,0,0.6);
}

.header-container {
    display: flex;
    flex-direction: row; /* Horizontal row layout */
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 90px; /* Compact black bar height */
    transition: var(--transition);
}

header.scrolled .header-container {
    height: 75px;
}

header.scrolled .logo {
    font-size: 1.3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    transition: var(--transition);
    height: 90px; /* Matches header container height */
}

header.scrolled .logo {
    height: 75px;
}

header .logo img {
    height: 160px; /* Even larger logo! */
    max-height: 160px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    position: relative;
    top: 35px; /* Aligns to top of 90px header and hangs down 70px below */
    z-index: 10;
}

header.scrolled .logo img {
    height: 110px; /* Larger logo when scrolled */
    max-height: 110px;
    top: 17.5px; /* Aligns to top of 75px scrolled header and hangs down 35px below */
}

.logo .rgb-text {
    font-size: inherit;
    text-transform: none;
    display: inline-block;
}

.rgb-text {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-title);
    letter-spacing: 1px;
    background: linear-gradient(to right, #ff0055, #00f0ff, #8a2be2, #ffea00, #ff0055);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbGlow 4s linear infinite;
    text-transform: uppercase;
    transition: var(--transition);
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.15));
}

@keyframes rgbGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- HERO BANNER --- */
.hero {
    position: relative;
    padding: 120px 0 100px;
    display: flex;
    align-items: center;
    min-height: 80vh;
    background: radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    overflow: hidden;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: url('../TIKARENA-LOGO.png') no-repeat center/contain;
    opacity: 0.04; /* Opacidade ultra-baixa de 4% */
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

.hero-image img {
    max-width: 90%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 
                0 0 2px var(--accent-purple);
    transform: rotate3d(1, 1, 1, 5deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: rotate3d(0,0,0,0deg) scale(1.02);
}

/* --- VANTAGENS --- */
.advantages {
    background: var(--bg-secondary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
    animation: neonPulse 2s infinite alternate;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.advantage-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- CARDS DE JOGOS (CATÁLOGO) --- */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.15);
}

.game-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-card-img img {
    transform: scale(1.1);
}

.game-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.game-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.game-card-price {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

/* --- DETALHE DO JOGO --- */
.game-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 40px;
}

.gallery-container {
    margin-bottom: 40px;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.thumb {
    width: 100px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumb.active, .thumb:hover {
    border-color: var(--accent-cyan);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-features {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.game-features h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.features-list li::before {
    content: '⚡';
    color: var(--accent-cyan);
}

.game-video {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

.game-video h3 {
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.purchase-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius);
    position: sticky;
    top: 100px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.purchase-card h2 {
    margin-bottom: 25px;
    text-transform: uppercase;
}

.price-box {
    margin-bottom: 30px;
}

.price-box .price-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-box .price-value {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.purchase-card .btn {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
}

.advantage-mini-list {
    margin-top: 25px;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.advantage-mini-list p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

/* --- ÁREA DO CLIENTE (CONSULTA DE LICENÇA) --- */
.client-section {
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
}

.client-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
}

.client-box p.intro {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.search-license-form {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.search-license-form input {
    flex-grow: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: var(--border-radius);
    font-family: var(--font-title);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-align: center;
    outline: none;
    transition: var(--transition);
}

.search-license-form input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan-glow);
}

.license-result {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.license-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.license-header h3 {
    font-size: 1.2rem;
}

.badge-status {
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.status-active {
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
    border: 1px solid var(--success);
}

.status-expired {
    background: rgba(255, 23, 68, 0.15);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.status-inactive {
    background: rgba(107, 114, 128, 0.15);
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
}

.license-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.license-info-row span:first-child {
    color: var(--text-secondary);
}

.license-info-row span:last-child {
    font-weight: 600;
}

.license-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.license-actions .btn {
    width: 100%;
}

/* --- PAINEL ADMINISTRATIVO --- */
.admin-section {
    min-height: 85vh;
}

.admin-section .container {
    max-width: 95%; /* Widescreen layout para o painel */
}

.admin-login-box {
    max-width: 450px;
    margin: 40px auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.admin-login-box h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 15px;
    border-radius: 6px;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
}

.admin-login-box .btn {
    width: 100%;
    margin-top: 10px;
}

/* DASHBOARD LAYOUT */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    margin-top: 30px;
}

.admin-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px 15px;
    height: fit-content;
}

.admin-user-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
}

.admin-user-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    word-break: break-all;
}

.admin-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-nav-item button {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px 15px;
    text-align: left;
    font-family: var(--font-title);
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-nav-item.active button,
.admin-nav-item button:hover {
    background: rgba(138, 43, 226, 0.15);
    color: var(--accent-cyan);
}

.admin-main-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

.admin-tab-content {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.admin-tab-content.active {
    display: block;
}

/* STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-card h4 {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stat-card p {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

/* TABELAS */
.table-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    max-width: 350px;
    width: 100%;
}

.search-box input {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    outline: none;
    font-size: 0.9rem;
}

.search-box input:focus {
    border-color: var(--accent-cyan);
}

.table-wrapper {
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

th, td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

th {
    background: var(--bg-tertiary);
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

tr:hover {
    background: rgba(255,255,255,0.02);
}

.actions-cell {
    display: flex;
    gap: 8px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 4px;
}

/* MODAIS */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--accent-purple);
    width: 100%;
    max-width: 550px;
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: zoomIn 0.3s ease-out;
}

.modal-header {
    background: var(--bg-tertiary);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 25px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    background: var(--bg-tertiary);
    padding: 15px 25px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- PERGUNTAS FREQUENTES (FAQ) --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: flex-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 1.05rem;
    text-transform: uppercase;
    user-select: none;
    display: flex;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--accent-purple);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

/* --- RODAPÉ / FOOTER --- */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 15px;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-gradient);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- COMPONENTES ADICIONAIS --- */
/* TOAST NOTIFICAÇÃO */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-purple);
    color: #fff;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
    animation: slideInRight 0.3s ease-out;
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }

/* SPINNER CARREGANDO */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(138, 43, 226, 0.1);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 40px auto;
}

/* --- KEYFRAMES E ANIMAÇÕES --- */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .game-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .purchase-card {
        position: static;
        margin-top: 30px;
    }
    
    .admin-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .header-container {
        flex-direction: row; /* Layout horizontal no mobile */
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        gap: 0;
        height: 80px !important;
    }

    header.scrolled .header-container {
        height: 70px !important;
    }

    .logo {
        font-size: 1.2rem !important;
        gap: 6px;
        height: 80px !important;
    }

    header.scrolled .logo {
        height: 70px !important;
    }

    header .logo img {
        height: 60px !important;
        max-height: 60px !important;
        top: 0 !important;
    }

    header.scrolled .logo img {
        height: 50px !important;
        max-height: 50px !important;
        top: 0 !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .search-license-form {
        flex-direction: column;
    }
}

/* --- APRESENTAÇÃO DE IMAGENS (SLIDESHOW HERO) --- */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

/* Setas de Anterior / Próximo */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: var(--transition);
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background: var(--accent-gradient);
    color: #000;
}

/* Indicadores / Bolinhas */
.slideshow-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--accent-cyan);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--accent-cyan-glow);
}

/* Animação de transição (Fade) */
.fade {
    animation-name: fadeAnimation;
    animation-duration: 0.8s;
}

@keyframes fadeAnimation {
    from { opacity: 0.4; } 
    to { opacity: 1; }
}

/* ==========================================================================
   SUPPORT CHAT WIDGET (FIRESTORE INTEGRATION)
   ========================================================================== */

/* Botão Flutuante */
.support-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    transition: var(--transition);
    animation: supportChatPulse 2s infinite;
}

.support-chat-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px var(--accent-cyan);
}

@keyframes supportChatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(138, 43, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
    }
}

/* Janela do Chat */
.support-chat-window {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 360px;
    height: 480px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none; /* Controlado via JS */
    flex-direction: column;
    overflow: hidden;
    animation: supportChatSlideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(8px);
}

@keyframes supportChatSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cabeçalho */
.support-chat-header {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(22, 25, 38, 0.9) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-chat-title {
    font-size: 1rem;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 0;
}

.support-chat-status {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--success);
}

.support-chat-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.support-chat-close:hover {
    color: var(--danger);
    transform: scale(1.1);
}

/* Corpo do Chat */
.support-chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mensagens */
.support-chat-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.4;
    word-break: break-word;
}

.support-chat-msg.system,
.support-chat-msg.bot {
    align-self: flex-start;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom-left-radius: 2px;
}

.support-chat-msg.admin {
    align-self: flex-start;
    background: rgba(138, 43, 226, 0.1);
    color: #fff;
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 2px;
}

.support-chat-msg.client {
    align-self: flex-end;
    background: linear-gradient(135deg, #009ee3 0%, #005a87 100%);
    color: #fff;
    border-bottom-right-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 158, 227, 0.2);
}

.support-chat-msg.success-alert {
    align-self: center;
    background: rgba(0, 230, 118, 0.05);
    color: var(--success);
    border: 1px dashed var(--success);
    text-align: center;
    width: 100%;
    max-width: 100%;
}

/* Opções de Robô (FAQ) */
.support-chat-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
    width: 100%;
}

.support-chat-option-btn {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--accent-cyan);
    cursor: pointer;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.support-chat-option-btn:hover {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
}

/* Formulário do Chat */
.support-chat-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: var(--border-radius);
}

.support-chat-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.support-chat-form label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-chat-form input,
.support-chat-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.support-chat-form input:focus,
.support-chat-form textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

.support-chat-form textarea {
    resize: none;
}

.support-chat-submit {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-family: var(--font-title);
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.support-chat-submit:hover {
    box-shadow: 0 0 15px var(--accent-purple-glow);
    filter: brightness(1.1);
}

/* Área de Input de Mensagem Direta */
.support-chat-input-area {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    align-items: center;
}

.support-chat-input-area input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.support-chat-input-area input:focus {
    border-color: var(--accent-cyan);
}

.support-chat-send-btn {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.support-chat-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px var(--accent-purple-glow);
}

/* ==========================================================================
   ADMIN LIVE CHAT CONSOLE
   ========================================================================== */
.admin-chat-layout {
    display: flex;
    height: 580px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-secondary);
}

.admin-chat-sidebar {
    width: 32%;
    border-right: 1px solid var(--border-color);
    background: rgba(22, 25, 38, 0.4);
    display: flex;
    flex-direction: column;
}

.admin-chat-list {
    flex: 1;
    overflow-y: auto;
}

.admin-chat-item {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.admin-chat-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.admin-chat-item.active {
    background: rgba(138, 43, 226, 0.08);
    border-left: 4px solid var(--accent-purple);
}

.admin-chat-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.admin-chat-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.admin-chat-item-time {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.admin-chat-item-msg {
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.admin-chat-unread-badge {
    position: absolute;
    right: 20px;
    bottom: 18px;
    width: 8px;
    height: 8px;
    background-color: var(--warning);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--warning);
}

.admin-chat-main {
    width: 68%;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

    flex-direction: column;
    background: var(--bg-primary);
}

.admin-chat-main-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    gap: 15px;
    font-size: 1.1rem;
}

.admin-chat-header {
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(22, 25, 38, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-chat-header-user h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 2px;
}

.admin-chat-header-user p {
    font-size: 0.78rem;
    color: var(--accent-cyan);
}

.admin-chat-body {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(0,0,0,0.2);
}

.admin-chat-body-msg.admin {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--accent-purple) 0%, #6200ea 100%);
    color: #fff;
    border-bottom-right-radius: 2px;
}

.admin-chat-body-msg.client {
    align-self: flex-start;
    background: var(--bg-tertiary);
    color: #fff;
    border-bottom-left-radius: 2px;
    border: 1px solid var(--border-color);
}

.admin-chat-body-msg.bot {
    align-self: flex-start;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-bottom-left-radius: 2px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.admin-chat-input-box {
    padding: 15px 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    background: rgba(22, 25, 38, 0.6);
    align-items: center;
}

.admin-chat-input-box input {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.admin-chat-input-box input:focus {
    border-color: var(--accent-cyan);
}

.admin-chat-btn-send {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.admin-chat-btn-send:hover {
    box-shadow: 0 0 12px var(--accent-purple-glow);
}

/* Responsividade Básica do Chat */
@media (max-width: 480px) {
    .support-chat-window {
        bottom: 85px;
        right: 15px;
        left: 15px;
        width: calc(100% - 30px);
        height: 420px;
    }
    .support-chat-btn {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
}

/* ========================================================
   UPGRADE DE DESIGN GAMER DARK & PROFISSIONAL (OVERLAY)
   ======================================================== */

body {
    background-color: #050505 !important;
    background-image: 
        radial-gradient(circle at top, rgba(124, 58, 237, 0.16) 0%, transparent 60%),
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px) !important;
    background-size: 100% 100%, 40px 40px, 40px 40px !important;
    background-attachment: fixed !important;
}

header {
    background: rgba(4, 5, 8, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15) !important;
}

.logo img {
    filter: drop-shadow(0 0 8px var(--accent-cyan-glow));
}

h1, h2, .text-gradient, .logo span {
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.45), 0 0 2px rgba(124, 58, 237, 0.3) !important;
}

/* CARDS E ENVELOPES DE VIDRO (GLASSMORPHISM) */
.advantage-card, .game-card, .stat-card, .admin-sidebar, .admin-main-content, .admin-login-box, .premium-cta-box, .faq-container details {
    background: rgba(8, 9, 15, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(0, 240, 255, 0.18) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.35s, box-shadow 0.35s !important;
}

/* HOVER COM ROTATIVIDADE E GLOW PULSANTE NEON */
.advantage-card:hover, .game-card:hover, .stat-card:hover {
    transform: translateY(-8px) scale(1.02) rotate(0.4deg) !important;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.35), 0 0 15px rgba(124, 58, 237, 0.2) !important;
    animation: neonPulse 2s infinite alternate;
}

/* INPUTS E FORMULÁRIOS FUTURISTAS */
input[type="text"], input[type="email"], input[type="password"], textarea, select {
    background: rgba(4, 5, 8, 0.75) !important;
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    transition: var(--transition) !important;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3) !important;
    outline: none !important;
}

/* BOTÕES PRIMÁRIOS GAMER PULSANTES */
.btn {
    border-radius: 4px !important;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #00f0ff 100%) !important;
    color: #000 !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3) !important;
    text-shadow: none !important;
    transition: var(--transition) !important;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7), 0 0 10px rgba(124, 58, 237, 0.4) !important;
    transform: translateY(-2px) scale(1.02) !important;
    filter: brightness(1.15) !important;
}

.btn-secondary {
    border: 1px solid rgba(0, 240, 255, 0.4) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    color: #fff !important;
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.08) !important;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* MENU LATERAL ADMIN GLOW */
.admin-sidebar {
    padding: 25px 20px !important;
}

.admin-nav-item button {
    border-radius: 6px !important;
    transition: var(--transition) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

.admin-nav-item.active button, .admin-nav-item button:hover {
    background: rgba(0, 240, 255, 0.08) !important;
    color: var(--accent-cyan) !important;
    border-left: 3px solid var(--accent-cyan) !important;
    box-shadow: inset 5px 0 10px rgba(0, 240, 255, 0.05) !important;
}

/* BADGES COM NEON GLOW */
.badge-status.status-active {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: rgba(16, 185, 129, 0.4) !important;
    color: #34d399 !important;
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.4) !important;
}

.badge-status.status-inactive {
    background: rgba(245, 158, 11, 0.15) !important;
    border-color: rgba(245, 158, 11, 0.4) !important;
    color: #fbbf24 !important;
    text-shadow: 0 0 5px rgba(245, 158, 11, 0.4) !important;
}
