/*
====================================
  LINEAGE 2 UCP - SUPER PREMIUM THEME
  Tema Dourado & Preto - Ultra Luxo
====================================
*/

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

html {
    background: #0a0a0a !important;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
    background: #0a0a0a !important;
    color: #e0e0e0 !important;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background premium com efeito de partículas */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(218, 165, 32, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ========== SECTION PRINCIPAL ========== */
section {
    min-height: 100vh !important;
    padding: 20px !important;
    position: relative;
    background: transparent !important;
}

/* ========== SELETOR DE IDIOMA ========== */
.langs {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 8px 32px rgba(218, 165, 32, 0.1);
}

.langs a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: block;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.langs a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.langs a:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: #DAA520;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4);
}

.langs a:hover::before {
    opacity: 1;
}

.langs a.en { background-image: url('../imgs/flags/en.png'); }
.langs a.pt { background-image: url('../imgs/flags/pt.png'); }
.langs a.es { background-image: url('../imgs/flags/es.png'); }

/* ========== TÍTULO DA INDEX ========== */
.indexTitle {
    text-align: center;
    font-size: 3.5em;
    font-weight: 700;
    margin: 60px 0 30px 0;
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(218, 165, 32, 0.3);
    letter-spacing: 2px;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

.indexTitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* ========== CONTAINER PEQUENO CENTRALIZADO ========== */
.smallCenter {
    max-width: 450px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(218, 165, 32, 0.1),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.smallCenter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ========== FORMULÁRIOS ========== */
.formpadrao {
    display: block;
    margin-bottom: 25px;
}

.formpadrao > div {
    display: flex;
    flex-direction: column;
}

.formpadrao .desc {
    color: #DAA520;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.formpadrao .camp input[type="text"],
.formpadrao .camp input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1em;
    transition: all 0.3s ease;
    outline: none;
}

.formpadrao .camp input:focus {
    border-color: #DAA520;
    background: rgba(0, 0, 0, 0.6);
    box-shadow:
        0 0 0 3px rgba(218, 165, 32, 0.1),
        0 5px 20px rgba(218, 165, 32, 0.2);
    transform: translateY(-2px);
}

.formpadrao .camp input::placeholder {
    color: rgba(218, 165, 32, 0.4);
}

/* ========== CAPTCHA ========== */
.formpadrao.captcha > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.formpadrao.captcha .desc {
    margin-bottom: 0;
}

.formpadrao.captcha .camp {
    flex: 1;
}

.formpadrao.captcha a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.formpadrao.captcha a:hover {
    background: rgba(218, 165, 32, 0.2);
    transform: rotate(180deg);
}

.captchaImage {
    border-radius: 8px;
    border: 1px solid rgba(218, 165, 32, 0.3);
}

/* ========== BOTÕES ========== */
.accessButton,
.saldo .bts {
    text-align: center;
    margin-top: 10px;
}

input[type="submit"].default,
a.default,
button.default {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #000;
    font-weight: 700;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow:
        0 5px 15px rgba(218, 165, 32, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

input[type="submit"].default::before,
a.default::before,
button.default::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

input[type="submit"].default:hover::before,
a.default:hover::before,
button.default:hover::before {
    left: 100%;
}

input[type="submit"].default:hover,
a.default:hover,
button.default:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(218, 165, 32, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
}

input[type="submit"].default:active,
a.default:active,
button.default:active {
    transform: translateY(-1px);
}

/* ========== ÁREA CINZA ========== */
.grayArea {
    margin-top: 25px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #DAA520;
    border-radius: 8px;
    text-align: center;
    color: #b0b0b0;
}

.grayArea a {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.grayArea a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #DAA520);
    transition: width 0.3s ease;
}

.grayArea a:hover::after {
    width: 100%;
}

.grayArea a:hover {
    color: #DAA520;
}

/* ========== CONTROLE DE VISIBILIDADE ========== */
/* Esconde área logada quando não está logado */
section.login .loggedAs,
section.login .grayBg {
    display: none !important;
}

/* Esconde login quando está logado */
section:not(.login) .indexTitle,
section:not(.login) .smallCenter {
    display: none !important;
}

/* Ajusta langs quando logado */
section:not(.login) .langs {
    top: 80px;
}

/* ========== LOGGED AS (Usuário Logado) ========== */
.loggedAs {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.loggedAs > div {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFD700;
    font-weight: 600;
}

.loggedAs i {
    color: #DAA520;
}

.loggedAs > div > div {
    display: flex;
    gap: 8px;
}

.loggedAs a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 8px;
    color: #DAA520;
    text-decoration: none;
    transition: all 0.3s ease;
}

.loggedAs a:hover {
    background: rgba(218, 165, 32, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
}

.loggedAs a.logout:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.5);
    color: #ff4757;
}

/* ========== BACKGROUND CINZA (Área Logada) ========== */
.grayBg {
    max-width: 1400px;
    margin: 160px auto 80px auto;
    display: flex;
    gap: 30px;
    min-height: calc(100vh - 200px);
}

/* ========== SIDEBAR (ASIDE) ========== */
aside {
    width: 280px;
    flex-shrink: 0;
}

/* ========== SALDO ========== */
.saldo {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.saldo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1), transparent);
    animation: rotateSaldo 10s linear infinite;
}

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

.saldo .total {
    font-size: 0.9em;
    color: #b0b0b0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.saldo .total span {
    display: block;
    font-size: 2em;
    color: #FFD700;
    font-weight: 700;
    margin-top: 5px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.saldo .bts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.saldo .bts a {
    padding: 12px 20px;
    font-size: 0.9em;
}

/* ========== NAVEGAÇÃO ========== */
nav {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

nav > a,
nav > span {
    display: block;
    padding: 16px 20px;
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

nav > a::before,
nav > span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700, #DAA520);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

nav > a:hover::before,
nav > span:hover::before,
nav > a.actived::before,
nav > span.actived::before {
    transform: scaleY(1);
}

nav > a:hover,
nav > span:hover,
nav > a.actived,
nav > span.actived {
    background: rgba(218, 165, 32, 0.1);
    color: #FFD700;
    padding-left: 30px;
}

nav > a:last-child,
nav > span:last-child {
    border-bottom: none;
}

nav i {
    margin-right: 12px;
    width: 20px;
    display: inline-block;
    text-align: center;
    color: #DAA520;
}

/* ========== DROPDOWN MENU ========== */
nav > span > span {
    display: flex;
    align-items: center;
}

nav .dropdown {
    max-height: 1000px !important;
    overflow: visible !important;
    background: rgba(0, 0, 0, 0.3);
}

nav > span.actived .dropdown,
nav > span:hover .dropdown {
    max-height: 500px;
}

nav .dropdown a {
    display: block;
    padding: 12px 20px 12px 55px;
    color: #b0b0b0;
    text-decoration: none;
    border-bottom: 1px solid rgba(218, 165, 32, 0.05);
    transition: all 0.3s ease;
    font-size: 0.95em;
}

nav .dropdown a:last-child {
    border-bottom: none;
}

nav .dropdown a:hover {
    background: rgba(218, 165, 32, 0.05);
    color: #FFD700;
    padding-left: 60px;
}

/* ========== ARTICLE (Conteúdo Principal) ========== */
article {
    flex: 1;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
}

/* ========== FOOTER ========== */
footer {
    text-align: center;
    padding: 30px 20px;
    color: #666;
    font-size: 0.9em;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(218, 165, 32, 0.1);
}

footer span {
    display: block;
    margin: 8px 0;
    color: #888;
}

footer .atualstudio {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 8px;
    color: #DAA520;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

footer .atualstudio:hover {
    background: rgba(218, 165, 32, 0.2);
    transform: translateY(-2px);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 968px) {
    .grayBg {
        flex-direction: column;
    }

    aside {
        width: 100%;
    }

    .loggedAs {
        position: static;
        margin: 20px 0;
    }

    .indexTitle {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .smallCenter {
        padding: 25px;
    }

    .indexTitle {
        font-size: 2em;
        margin: 40px 0 20px 0;
    }

    .langs {
        top: 10px;
        right: 10px;
        padding: 8px;
    }
}

/* ========== ANIMAÇÕES EXTRAS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.6s ease-out;
}

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #DAA520, #B8860B);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFD700, #DAA520);
}

/* ========== ESTADOS DE INPUT ========== */
input[type="text"]:disabled,
input[type="password"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== ALERTAS E MENSAGENS ========== */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid;
    animation: fadeIn 0.3s ease;
}

.alert.success {
    background: rgba(46, 213, 115, 0.1);
    border-color: #2ed573;
    color: #2ed573;
}

.alert.error {
    background: rgba(255, 71, 87, 0.1);
    border-color: #ff4757;
    color: #ff4757;
}

.alert.warning {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    color: #FFD700;
}

.alert.info {
    background: rgba(71, 160, 255, 0.1);
    border-color: #47a0ff;
    color: #47a0ff;
}

/* ========== TABELAS ========== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(218, 165, 32, 0.1));
    color: #FFD700;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
}

table td {
    padding: 15px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
    color: #e0e0e0;
}

table tr:hover td {
    background: rgba(218, 165, 32, 0.05);
}

/* ========== BADGES E TAGS ========== */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== EFEITO DE BRILHO NOS CARDS ========== */
.saldo,
article,
nav,
.smallCenter {
    position: relative;
}

.saldo::after,
article::after,
nav::after,
.smallCenter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.3), transparent, rgba(218, 165, 32, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

/* ========== SOBRESCREVER ESTILOS ANTIGOS - PRIORIDADE MÁXIMA ========== */

/* Força background preto em todos os containers */
body, html {
    background-color: #0a0a0a !important;
    background-image: none !important;
}

/* Remove qualquer background claro que possa existir */
section,
section > div,
.grayBg,
aside,
article {
    background-color: transparent !important;
}

/* Força cores nos textos */
body, p, div, span, a, td, th, li {
    color: #e0e0e0;
}

/* Links dourados */
a {
    color: #DAA520;
}

a:hover {
    color: #FFD700 !important;
}

/* Títulos dourados */
h1, h2, h3, h4, h5, h6 {
    color: #FFD700 !important;
}

/* Força estilo da loggedAs */
.loggedAs {
    background: rgba(15, 15, 15, 0.95) !important;
    border: 1px solid rgba(218, 165, 32, 0.3) !important;
    color: #FFD700 !important;
}

/* Força estilo do saldo */
.saldo {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%) !important;
    border: 1px solid rgba(218, 165, 32, 0.3) !important;
}

.saldo .total span {
    color: #FFD700 !important;
}

/* Força estilo do nav */
nav {
    background: rgba(15, 15, 15, 0.95) !important;
    border: 1px solid rgba(218, 165, 32, 0.3) !important;
}

nav > a,
nav > span > span {
    color: #e0e0e0 !important;
    background: transparent !important;
}

nav > a:hover,
nav > span:hover > span,
nav > a.actived,
nav > span.actived > span {
    background: rgba(218, 165, 32, 0.1) !important;
    color: #FFD700 !important;
}

/* Força estilo do article */
article {
    background: rgba(15, 15, 15, 0.95) !important;
    border: 1px solid rgba(218, 165, 32, 0.3) !important;
}

/* Força cores das tabelas */
table {
    background: transparent !important;
}

table th {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(218, 165, 32, 0.1)) !important;
    color: #FFD700 !important;
    border-bottom: 2px solid rgba(218, 165, 32, 0.3) !important;
}

table td {
    background: transparent !important;
    color: #e0e0e0 !important;
    border-bottom: 1px solid rgba(218, 165, 32, 0.1) !important;
}

table tr:hover td {
    background: rgba(218, 165, 32, 0.05) !important;
}

/* Força inputs */
input[type="text"],
input[type="password"],
select,
textarea {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(218, 165, 32, 0.3) !important;
    color: #fff !important;
}

input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    border-color: #DAA520 !important;
    background: rgba(0, 0, 0, 0.6) !important;
}

/* Força botões */
input[type="submit"],
button,
a.default {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%) !important;
    color: #000 !important;
    border: none !important;
}

input[type="submit"]:hover,
button:hover,
a.default:hover {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%) !important;
}

/* Remove bordas e fundos indesejados */
div[style*="background"] {
    background: transparent !important;
}

/* Força cor dos ícones */
i {
    color: #DAA520 !important;
}

/* Estilo para mensagens de sucesso/info/erro */
.alert,
div[class*="success"],
div[class*="error"],
div[class*="info"],
div[class*="warning"] {
    background: rgba(0, 0, 0, 0.3) !important;
    border-left: 3px solid #DAA520 !important;
    color: #e0e0e0 !important;
}

/* Dropdown menu */
.dropdown,
nav .dropdown {
    background: rgba(0, 0, 0, 0.3) !important;
}

.dropdown a,
nav .dropdown a {
    color: #b0b0b0 !important;
    background: transparent !important;
}

.dropdown a:hover,
nav .dropdown a:hover {
    background: rgba(218, 165, 32, 0.05) !important;
    color: #FFD700 !important;
}

/* Força smallCenter (tela de login) */
.smallCenter {
    background: rgba(15, 15, 15, 0.95) !important;
    border: 1px solid rgba(218, 165, 32, 0.3) !important;
}

/* Remove qualquer sombra de texto indesejada */
* {
    text-shadow: none;
}

h1, h2, h3, h4, h5, h6,
.indexTitle {
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.3) !important;
}

/* SIDEBAR PREMIUM */

.sidebar {
    width: 250px;
    background: #0f0f0f;
    border-right: 1px solid rgba(212,175,55,0.15);
    padding: 30px 20px;
}

.logo-area {
    text-align: center;
    margin-bottom: 40px;
}

.logo-area img {
    max-width: 160px;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar nav a {
    padding: 12px 15px;
    border-radius: 6px;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.sidebar nav a:hover {
    background: rgba(212,175,55,0.08);
    color: #d4af37;
}

.sidebar nav a.actived {
    background: rgba(212,175,55,0.15);
    color: #d4af37;
    border-left: 3px solid #d4af37;
}

.logout-menu {
    color: #ff4757 !important;
}

<style>
/* --- ANIMAÇÃO PULSO --- */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* --- ANIMAÇÃO NEON --- */
@keyframes neonGlow {
    0%, 100% { filter: drop-shadow(0 0 4px #f1c40f); }
    50% { filter: drop-shadow(0 0 15px #f1c40f); }
}

/* HEADER SUPER PREMIUM */
.header-super-premium {
    display: flex;
    align-items: center;
    padding: 50px 40px;
    background: transparent; /* remove fundo */
}

.logo-top-super {
    width: 280px; /* aumenta logo */
    height: auto;
    animation: pulse 3s infinite, neonGlow 2s infinite alternate;
}

body, html {
    margin: 0;
    padding: 0;
}

/* Header ajustado */
.header-super-premium {
    padding: 10px 40px; /* menos padding topo */
}

/* Conteúdo principal / sidebar */
.grayBg {
    display: flex;
    margin-top: 10px; /* pouco espaço entre header e conteúdo */
}

/* Sidebar */
.sidebar {
    flex-shrink: 0;
    width: 220px; /* tamanho lateral */
    margin-top: 0; /* remove buraco em cima */
}

/* Article / conteúdo principal */
article {
    flex-grow: 1;
    margin-left: 20px;
    margin-top: 0; /* sobe o conteúdo */
}

/* Footer super premium */
.footer-super-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    background: transparent;
    gap: 10px;
}

/* Logo com respiração + brilho */
.footer-super-premium .logo-footer {
    width: 300px;
    height: auto;
    animation: breathe 3s ease-in-out infinite, shine 2s ease-in-out infinite alternate;
}

/* Texto do footer */
.footer-super-premium span {
    font-size: 14px;
    color: #DAA520;
    text-shadow: 0 0 5px rgba(218,165,32,0.5); /* leve brilho no texto */
}

.footer-super-premium .atualstudio {
    font-size: 12px;
    opacity: 0.5;
    text-decoration: none;
}

/* Efeito respiração */
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Efeito brilho suave */
@keyframes shine {
    0% { filter: drop-shadow(0 0 5px #DAA520); }
    50% { filter: drop-shadow(0 0 15px #FFD700); }
    100% { filter: drop-shadow(0 0 5px #DAA520); }
}

/* ========== ICONES TELA LOGADA (PRETO) ========== */

/* 1. Deixa os ícones (Engrenagem e Sair) pretos */
.loggedAs a i.fa-cog, 
.loggedAs a i.fa-sign-out,
.loggedAs a.logout i {
    color: #000000 !important;
}

/* 2. Deixa o fundo dos botões dourado forte para o ícone preto aparecer */
.loggedAs div a, 
.loggedAs div a.logout {
    background: rgba(218, 165, 32, 0.9) !important; /* Dourado quase sólido */
    border: 1px solid #FFD700 !important;
    opacity: 1 !important;
}

/* 3. Efeito ao passar o mouse (opcional: inverte as cores) */
.loggedAs div a:hover {
    background: #ffffff !important; /* Fica branco ao passar o mouse */
    transform: scale(1.1);
}

/* Força dropdown do Game Stats sempre visível */
nav > span:has(.dropdown a[href*="topclan"]) .dropdown {
    max-height: 500px !important; /* garante que o menu abra */
    overflow: visible !important;
}