/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg-card: rgba(10, 20, 40, 0.75);
  --bg-card-border: rgba(100, 160, 255, 0.2);
  --text-primary: #E8EEF8;
  --text-secondary: #8FA4C4;
  --accent-gold: #D4AF37;
  --accent-gold-light: #F4D77A;
  --accent-blue: #4A90E2;
  --accent-blue-light: #6BB6FF;
  --danger-red: #DC3232;
  --btn-bg-start: #3D2817;
  --btn-bg-end: #1A0F06;
  --btn-bg-hover-start: #6B4420;
  --btn-bg-hover-end: #2E1A0A;
  --btn-border: rgba(230, 175, 80, 0.45);
  --btn-border-hover: rgba(255, 210, 120, 0.9);
  --btn-text: #F4D9A8;
  --btn-text-hover: #FFE8B8;
  --btn-glow: rgba(255, 180, 70, 0.5);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body, html, .all { margin: 0; padding: 0; overflow-x: hidden; }
body, html, .all { min-width: 1010px; }

body, a, a:active, a:visited, a:link {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    text-decoration: none;
}

a, a:active, a:visited, a:link { cursor: pointer; font-weight: bold; }
p { margin: 0; padding: 0; }
.pddInner { padding: 0 20px; }

hr {
    width: 100%; height: 1px; padding: 0; margin: 20px auto;
    border: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

h1 {
    display: block;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
    font-weight: 700;
    padding: 0; width: 80%; margin: 24px auto 16px;
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: 29px; color: var(--text-primary);
}
h1 a { float: right; display: block; font-family: 'Montserrat', Arial !important; font-size: 15px !important; padding: 17px 0 0; }

h2 {
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
    font-weight: 700; padding: 0; margin: 30px 0 20px 20px;
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: 23px; color: var(--text-primary);
}

.faceIndex { overflow: hidden; min-height: 200px; background: transparent; margin: 15px auto; border-radius: 8px; }

p.cbold { font-weight: bold; text-align: center; width: 100%; padding: 10px 0; text-transform: uppercase; }

/* ============================================================
   ALERTS & MESSAGES
   ============================================================ */
.rmsg {
    display: table; width: 360px; margin: 0 auto 20px auto;
    padding: 10px; background: #108c00; border-radius: 6px;
    text-align: center; color: #fff; font-size: 14px;
}
.rmsg.error {
    background: linear-gradient(145deg, rgba(180, 40, 40, 0.9), rgba(130, 25, 25, 0.95)) !important;
    border: 1px solid rgba(255, 100, 100, 0.4) !important;
    box-shadow: 0 4px 15px rgba(180, 40, 40, 0.3);
    letter-spacing: 0.02em;
}
.rmsg.warn  {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08)) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    color: var(--accent-gold-light) !important;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
}
.rmsg.warn:hover {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15)) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.rmsg.warn input[type="checkbox"] {
    accent-color: var(--accent-gold);
    margin-right: 8px;
    cursor: pointer;
    transform: scale(1.1);
}
.rmsg.warn b { color: var(--accent-gold) !important; }

#backblack { height: 100%; width: 100%; position: fixed; top: 0; left: 0; background: #000; opacity: 0.8; z-index: 1000; }

#alerta {
    visibility: hidden; position: fixed; display: table; z-index: 1001;
    margin: 0 auto; padding: 25px 30px; color: #5a5a5a; font-size: 15px;
    background: #f7f7f7; border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
#alerta .ok { display: table; width: 100%; }
#alerta .ok > div {
    font-size: 12px; font-weight: bold; cursor: pointer; display: table;
    float: right; margin: 15px 0 0 0; padding: 6px 18px;
    text-align: center; text-transform: uppercase; color: #fff;
    background: #c0392b; border: none; border-radius: 6px;
    transition: background 0.2s;
}
#alerta .ok > div:hover { background: #e74c3c; }
#alerta .ok.sucesso > div { background: #27ae60; }
#alerta .ok.sucesso > div:hover { background: #2ecc71; }

/* ============================================================
   LAYOUT
   ============================================================ */
body { background: url('../imgs/bg-top.jpg') no-repeat center top; background-color: #010718; color: var(--text-primary); }

a, a:active, a:visited, a:link { color: var(--accent-blue-light); }
a:hover   { color: #fff; }
a:active  { color: var(--accent-gold-light); }

.all {
    width: 1010px;
    position: relative;
    margin: 0 auto;
    padding-top: 420px;
    /* sem overflow hidden — permite que nav absoluto seja visível */
}

section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    position: relative;
    overflow: visible;          /* nav absoluto não pode ser clipado */
    width: 1010px;
    box-sizing: border-box;
    padding: 36px 25px 60px 25px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

article {
    flex: 1 1 0;
    min-width: 0;               /* evita overflow no flex */
    position: relative;
    padding: 4px 20px 0 20px;
}
article img, article object { max-width: 100% !important; }

/* ============================================================
   NAV BUTTONS
   ============================================================ */
nav {
    position: absolute;
    left: 0;
    top: -50px;
    z-index: 3;
    width: 1010px;
    height: 84px;
    line-height: 49px;
    padding: 35px 0 0 0;
    display: table;
    background: transparent url('../imgs/menu.png') no-repeat;
}

nav div, .navi-buttons {
    display: table;
    margin: 0 auto;
}

.navi-link, nav a {
    float: left;
    display: table;
    padding: 0 12px;
    font-family: Calibri, Arial !important;
    font-size: 16px !important;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff !important;
    text-shadow: 1px 1px 2px #000;
    background: transparent;
    transition: background 0.4s, text-shadow 0.4s;
}

.navi-link:hover, nav a:hover {
    text-shadow: 0 0 10px #fff;
    background: rgba(255,255,255,0.1);
}

.navi-link:active, nav a:active {
    text-shadow: 0 0 10px #000;
    background: #000;
}

/* ============================================================
   SIDEBAR BUTTONS (.default)
   ============================================================ */
article a.default, a.default, span.default, input.default,
.rankings_options > div a {
    transition: all 0.25s ease;
    cursor: pointer; display: block; text-align: center;
    font-weight: 600; font-size: 12px; text-transform: uppercase;
    padding: 10px 0; width: 178px; margin: 0 0 3px;
    border-radius: 4px;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
}

article .ucp a.default, .ucp a.default, .ucp span.default, .ucp input.default {
    padding: 10px 0;
}

article a.default:active, a.default:active, input.default:active, span.default:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0,0,0,0.5), inset 0 2px 5px rgba(0,0,0,0.4);
}

a.default.dbig, input.default.dbig {
    font-size: 15px; padding: 13px 35px; display: table; width: auto !important;
}

/* default button colors */
article a.default, a.default, span.default, input.default,
.rankings_options > div a {
    background: linear-gradient(145deg, var(--btn-bg-start) 0%, var(--btn-bg-end) 100%);
    border: 1px solid var(--btn-border);
    color: var(--btn-text) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    box-shadow:
        0 3px 10px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255, 200, 100, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Shimmer dourado no hover */
article a.default::before, a.default::before, span.default::before, input.default::before,
.rankings_options > div a::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 210, 120, 0.15), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

article a.default:hover::before, a.default:hover::before, span.default:hover::before, input.default:hover::before,
.rankings_options > div a:hover::before {
    left: 100%;
}

article a.default:hover, a.default:hover, input.default:hover, span.default:hover,
.rankings_options > div a:hover {
    background: linear-gradient(145deg, var(--btn-bg-hover-start) 0%, var(--btn-bg-hover-end) 100%);
    border-color: var(--btn-border-hover);
    color: var(--btn-text-hover) !important;
    text-shadow: 0 0 8px rgba(255, 200, 100, 0.6), 0 1px 2px rgba(0, 0, 0, 0.6);
    box-shadow:
        0 5px 18px rgba(0,0,0,0.6),
        0 0 22px var(--btn-glow),
        inset 0 1px 0 rgba(255, 220, 140, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

input.default.sucesso {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%) !important;
    border-color: #27ae60 !important; color: #fff !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    font-size: 14px; height: 110px; line-height: 110px;
    width: 1000px; box-sizing: border-box; margin: 0 auto;
    text-align: center; position: relative; font-weight: bold;
    color: #fff;
}
footer a.atualstudio {
    position: absolute; opacity: 0.3; display: block;
    width: 120px; height: 18px;
    background: transparent url('../imgs/nm/atualstudio.png');
    top: 43px; right: 64px;
}
footer a.atualstudio:hover { opacity: 1; }

/* ============================================================
   ASIDE / SIDEBAR
   ============================================================ */
aside { flex: 0 0 180px; width: 180px; }
aside .box { width: 180px; margin: 0 0 23px 0; }
aside .box .title {
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: relative; z-index: 2;
    width: 180px; padding-bottom: 8px; margin: 0 0 16px 0;
}

.box.support a:hover { opacity: 0.7; }
.box.support a:active { opacity: 1; }

a.donateBanner  { width: 180px; height: 83px; display: block; border-radius: 6px; transition: opacity 0.3s; }
.pt a.donateBanner { background: transparent url('../imgs/donateb_PT.jpg'); }
.en a.donateBanner { background: transparent url('../imgs/donateb_EN.jpg'); }
.es a.donateBanner { background: transparent url('../imgs/donateb_ES.jpg'); }
a.donateBanner:hover { opacity: 0.8; }

a.supportBanner { width: 180px; height: 83px; display: block; border-radius: 6px; transition: opacity 0.3s; }
.pt a.supportBanner { background: transparent url('../imgs/supportb_PT.jpg'); }
.en a.supportBanner { background: transparent url('../imgs/supportb_EN.jpg'); }
.es a.supportBanner { background: transparent url('../imgs/supportb_ES.jpg'); }
a.supportBanner:hover { opacity: 0.8; }

/* ============================================================
   SERVER STATUS
   ============================================================ */
.sstatus {
    width: 180px; background: rgba(10, 20, 40, 0.6); padding: 12px 15px 16px;
    border-radius: 10px; box-sizing: border-box;
    border: 1px solid var(--bg-card-border);
}
.sstatus > div {
    font-size: 11px; font-weight: bold; width: 150px; height: 22px;
    line-height: 22px; box-sizing: border-box; color: var(--text-secondary);
    padding: 0 9px; border-top: 1px solid rgba(100, 160, 255, 0.1);
}
.sstatus > div:first-child { border: 0; }
.sstatus > div > div { float: right; }
.sstatus > div > div.on, .sstatus > div > span { color: #0e7a0b; }
.sstatus > div > div.off { color: #b70000; }

.srvstatus-wrapper { display: flex; justify-content: center; align-items: center; margin: 8px 0 5px; }

.srvstatus-on, .srvstatus-off {
    font-size: 20px; font-weight: 900;
    padding: 8px 28px;
    border-radius: 10px; border: 2px solid;
    text-transform: uppercase; letter-spacing: 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.srvstatus-on {
    color: #00ff88; border-color: #00ff88;
    background: radial-gradient(circle at center, #003300 0%, #001100 100%);
    box-shadow: 0 0 16px #00ff88, inset 0 0 8px rgba(0,255,136,0.3);
    animation: glowOn 1.8s ease-in-out infinite;
}

.srvstatus-off {
    color: #fff; border-color: rgba(255, 100, 100, 0.5);
    background: linear-gradient(145deg, var(--danger-red), #A01818);
    font-weight: 700; letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(220, 50, 50, 0.4);
    animation: glowOff 2s ease-in-out infinite;
}

@keyframes glowOn {
    0%, 100% { box-shadow: 0 0 12px #00ff88, inset 0 0 6px rgba(0,255,136,0.3); }
    50%       { box-shadow: 0 0 24px #00ff88, inset 0 0 12px rgba(0,255,136,0.5); }
}

@keyframes glowOff {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 50, 50, 0.4); }
    50%       { box-shadow: 0 0 35px rgba(220, 50, 50, 0.7), 0 0 60px rgba(220, 50, 50, 0.3); }
}

/* ============================================================
   LANGS
   ============================================================ */
.langs { z-index: 2; position: absolute; width: 140px; height: 34px; top: 40px; right: 56px; }
.langs .bg { opacity: 0.3; width: 138px; height: 34px; border-radius: 4px; background: #000; }
.langs .links { position: absolute; left: 4px; top: 4px; display: table; }
.langs a { float: left; display: block; width: 42px; height: 26px; margin: 0 2px 0 0; background: transparent url('../imgs/langs.png') no-repeat; }
.langs a.en { background-position: 0 0; border-radius: 3px 0 0 3px; }
.langs a.pt { background-position: -44px 0; }
.langs a.es { background-position: -88px 0; border-radius: 0 3px 3px 0; }
.langs a.en:hover { background-position: 0 -28px; }
.langs a.pt:hover { background-position: -44px -28px; }
.langs a.es:hover { background-position: -88px -28px; }
.langs a:active { opacity: 0.6; }

/* ============================================================
   FACEBOOK
   ============================================================ */
#fanback { background: transparent url("../imgs/nm/fanbg.png") repeat; display: none; height: 100%; top: 0; left: 0; position: fixed; width: 100%; z-index: 99999; }
#fan-exit { height: 100%; width: 100%; }
#fanbox { background: #fff; border-radius: 8px; left: 50%; margin: -123px 0 0 -210px; position: absolute; top: 50%; width: 420px; }
#fanbox > iframe { border: none; overflow: hidden; margin: 8px 0 0 8px; width: 402px; height: 230px; }
#fanclose { background: transparent url("../imgs/nm/fanclose.png") repeat scroll 0 0; cursor: pointer; float: right; right: -22px; top: -20px; padding: 20px 40px 20px 20px; position: absolute; }
#fanclose:hover { background-position: 0 -56px; }

/* ============================================================
   LOGIN AREA
   ============================================================ */
.loginarea { position: relative; }
.loginarea .error { margin: 0 auto 10px auto; padding: 4px; background: #b30000; border-radius: 4px; text-align: center; color: #fff; font-size: 11px; }
.loginarea .loader { opacity: 0.8; width: 80px; height: 80px; background: #000 url('../imgs/nm/loader.gif') no-repeat center center; position: absolute; left: 49px; top: 16px; border-radius: 40px; }
.loginarea .ess { display: block; padding: 4px 0 6px 10px; }
.loginarea .ess a { font-size: 10px; }
.anpc { width: 100%; text-align: center; height: 20px; line-height: 20px; font-size: 10px; border-radius: 3px; }
.anpc a { font-size: 10px; }
.logged { font-size: 11px; width: 100%; height: 20px; line-height: 20px; padding: 0 10px; text-align: center; margin: 0 0 10px 0; border-radius: 3px; }
.logged span { font-weight: bold; font-size: 12px; }
.anpc, .logged { background: rgba(10,20,40,0.5); color: var(--text-primary); border: 1px solid var(--bg-card-border); }

.fieldsBox { position: relative; background: rgba(100,160,255,0.15); width: 178px; padding: 1px; border-radius: 6px; }
.fieldsBox .inpt { outline: none; background: rgba(10,20,40,0.7); color: var(--text-primary); font-size: 12px; border: 0; padding: 0 10px 0 28px; margin: 0; width: 140px; height: 28px; line-height: 28px; border-radius: 5px 5px 0 0; box-shadow: 2px 2px 4px rgba(0,0,0,0.3) inset; }
.fieldsBox .inpt.pass { border-radius: 0 0 5px 5px; margin: 1px 0 0 0; padding: 0 70px 0 28px; width: 80px; }
.fieldsBox .acc_icon { position: absolute; width: 11px; height: 11px; }
.fieldsBox .acc_icon.user { left: 10px; top: 10px; background: transparent url('../imgs/login-icons.png') no-repeat 0 0; }
.fieldsBox .acc_icon.pass { left: 10px; top: 39px; background: transparent url('../imgs/login-icons.png') no-repeat 0 -13px; }
.fieldsBox .gologin { position: absolute; right: 1px; bottom: 1px; width: 60px; height: 27px; line-height: 24px; padding: 0; margin: 0; border: 0; font-size: 12px; font-family: Arial; text-transform: none; border-radius: 4px 0 4px 4px; }

/* ============================================================
   GALLERY
   ============================================================ */
.galleryBox { width: 180px; overflow: hidden; margin: 0 auto; }
.galleryBox > div { width: 196px; display: table; }
.galleryBox a, .galleryBox a div, .galleryBox a img { width: 52px; height: 52px; }
.galleryBox a { background: rgba(255,255,255,0.5); border: 1px solid rgba(0,0,0,0.4); display: block; position: relative; float: left; padding: 1px; margin: 0 6px 6px 0; border-radius: 5px; overflow: hidden; }
.galleryBox a div { border-radius: 4px; position: absolute; top: 1px; left: 1px; transition: box-shadow 0.3s; }
.galleryBox a img { border-radius: 4px; }
.galleryBox a span { display: block; width: 20px; height: 20px; position: absolute; left: 17px; top: 17px; background: transparent url('../imgs/nm/play.png') no-repeat; border-radius: 4px; }
.galleryBox a:hover { border: 1px solid rgba(0,0,0,0.8); }
.galleryBox a:hover div { box-shadow: 0 0 10px rgba(255,255,255,0.6) inset; }

.fullGallery { width: 383px; overflow: hidden; margin: 0 auto; padding: 20px 0 0 0; }
.fullGallery > div { width: 398px; display: table; }
.fullGallery a, .fullGallery a div, .fullGallery a img { width: 88px; height: 88px; }
.fullGallery a { border: 1px solid rgba(0,0,0,0.4); background: rgba(255,255,255,0.2); display: block; position: relative; float: left; padding: 1px; margin: 0 5px 5px 0; border-radius: 8px; overflow: hidden; }
.fullGallery a div { border-radius: 6px; position: absolute; top: 1px; left: 1px; transition: box-shadow 0.3s; }
.fullGallery a img { border-radius: 6px; }
.fullGallery a span { display: block; width: 46px; height: 46px; position: absolute; left: 23px; top: 23px; background: transparent url('../imgs/nm/play2.png') no-repeat; border-radius: 5px; }
.fullGallery a:hover { border-color: rgba(0,0,0,0.7); background: rgba(255,255,255,0.4); }
.fullGallery a:hover div { box-shadow: 0 0 10px rgba(255,255,255,0.6) inset; }

/* ============================================================
   NEWS
   ============================================================ */
.news { cursor: default; width: calc(100% - 80px); display: table; padding: 18px 0; margin: 0 auto; }
.news a.imgn, .news a.imgn img { width: 96px; height: 96px; }
.news a.imgn { display: block; float: left; padding: 1px; border: 1px solid rgba(0,0,0,0.4); border-radius: 6px; }
.news a.imgn img { border-radius: 5px; }
.news .contentn { width: calc(100% - 100px); box-sizing: border-box; padding: 10px 0 0 15px; float: left; }
.news a.titlen { font-weight: bold; display: table; font-size: 16px; padding: 0 0 10px 0; }
.news .textn { color: rgba(0,0,0,0.8); font-size: 11px; height: 42px; overflow: hidden; }
.news .finalinfo { width: 100%; display: block; padding: 5px 0 0 0; }
.news .finalinfo .datan { color: rgba(0,0,0,0.6); float: left; font-weight: bold; font-size: 11px; }
.news .finalinfo .lermaisn { float: right; font-weight: bold; padding-right: 20px; }
.news .finalinfo .lermaisn a, .ctcarea .lermaisn_all a { font-size: 12px; font-weight: bold; }
.shadownew { opacity: 0.7; width: 100%; height: 12px; background: transparent url('../imgs/separator_news.png') no-repeat center top; margin: 0 auto; }

/* ============================================================
   MODAL
   ============================================================ */
#modal {
    position: fixed; z-index: 2000; width: 460px; height: 250px;
    left: calc(50% - 233px); top: calc(50% - 128px);
    padding: 20px 0 0 0; text-align: center;
    border: 2px solid #6c6c6e; border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    color: #000; background: #fff;
}
#modal h1 { text-align: center; width: 100%; margin: 16px 0 20px 0; font-size: 23px !important; }

/* ============================================================
   BANNER
   ============================================================ */
.banner { position: relative; background: transparent; border: 2px solid rgba(0,0,0,0.4); }
.banner .circles { z-index: 3; height: 13px; position: absolute; bottom: 10px; right: 10px; }
.banner .circles div { cursor: pointer; float: left; width: 13px; height: 13px; background: transparent url('../imgs/nm/circles.png') no-repeat -14px 0; margin: 0 4px 0 0; border-radius: 6px; box-shadow: 0 0 5px rgba(0,0,0,0.7); }
.banner .circles div.act { background-position: 0 0; }
.banner > a { position: absolute; z-index: 1; top: 0; left: 0; display: block; }
.banner > a.bvis { z-index: 2; }
.banner, .banner > a { border-radius: 10px; }
.banner > a > img { border-radius: 8px; }
.banner > a > .bmask { position: absolute; left: 0; top: 0; }
.faceIndex { border: 2px solid rgba(0,0,0,0.4); }

/* ============================================================
   PAGINATE
   ============================================================ */
.paginate { display: table; margin: 30px auto; }
.paginate a { display: block; padding: 5px 10px; font-weight: bold; float: left; margin: 0 2px 0 0; border-radius: 5px; transition: background 0.2s; }
.paginate a { background: rgba(0,0,0,0.7); border: 1px solid rgba(0,0,0,0.7); color: rgba(255,255,255,0.7) !important; }
.paginate a:hover { background: rgba(0,0,0,0.9) !important; color: #fff !important; }
.paginate a.atual, .paginate a:active { background: #000 !important; color: #fff !important; border-color: #000 !important; }
.paginate a.desatived { background: rgba(0,0,0,0.1) !important; border-color: rgba(0,0,0,0.1) !important; color: rgba(0,0,0,0.3) !important; cursor: default; }

/* ============================================================
   TABLES
   ============================================================ */
table.default { border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); width: 100%; overflow: hidden; }
table.default tr td:first-child { border: 0; }
table.default tr td { font-size: 12px; padding: 7px 10px; border-left: 1px solid rgba(100,160,255,0.1); background: rgba(10,20,40,0.4); color: var(--text-primary); }
table.default tr.two td { background: rgba(10,20,40,0.25); }
table.default tr td.foco { font-weight: bold; color: var(--accent-gold-light); background: rgba(10,20,40,0.6); }
table.default tr.two td.foco { background: rgba(10,20,40,0.45); }
table.default tr th { font-weight: 700; text-align: center; background: linear-gradient(145deg, rgba(30,45,80,0.95), rgba(15,25,50,0.98)); color: var(--accent-gold); padding: 10px 0; letter-spacing: 0.05em; }
table.default tr.ctype2, table.default tr.ctype2 td { padding: 0; margin: 0; height: 2px; background: rgba(0,0,0,0.1); }
table.default .pos { width: 25px; text-align: center; }

/* table-new (moved from inline) */
.table-new { width: 100%; font-family: 'Inter', 'Montserrat', sans-serif; color: var(--text-primary) !important; margin: 20px auto; }
.table-new tr td { padding: .5rem; border: 1px solid rgba(100,160,255,0.1); }
.table-new tr { background: rgba(10,20,40,0.4); border: 1px solid rgba(100,160,255,0.1); transition: all 0.3s ease; }
.table-new tr:nth-child(odd) { background: rgba(10,20,40,0.25); }
.table-new tr:hover { background: rgba(212, 175, 55, 0.2); color: var(--accent-gold-light); }
.table-new tr:hover td { border-color: transparent; }
.pddInner h2 { font-family: 'Montserrat', sans-serif; font-weight: 600; margin-left: 0; margin-bottom: 15px; }

/* ============================================================
   RANKINGS OPTIONS
   ============================================================ */
.rankings_options {
    cursor: pointer; transition: background 0.3s, color 0.3s;
    position: absolute; top: 20px; right: 28px;
    background: #f5f5f5; border: 1px solid rgba(0,0,0,0.15);
    height: 34px; line-height: 34px; padding: 0 26px 0 10px;
    border-radius: 6px; text-transform: uppercase; font-size: 12px;
    font-weight: bold; color: rgba(0,0,0,0.6);
}
.rankings_options .rankings_arrow { transition: opacity 0.3s; position: absolute; top: 15px; right: 10px; display: block; width: 10px; height: 6px; background: transparent url('../imgs/nm/rankings_arrow.png') no-repeat; opacity: 0.6; }
.rankings_options:hover { background: rgba(0,0,0,0.15); color: rgba(0,0,0,0.85); }
.rankings_options:hover .rankings_arrow { opacity: 0.9; }
.rankings_options > div { opacity: 0; transition: opacity 0.3s; width: 0; height: 0; overflow: hidden; position: absolute; top: 35px; right: 0; border-radius: 6px; box-shadow: 4px 4px 12px rgba(0,0,0,0.18); }
.rankings_options > div a { line-height: normal; width: 150px !important; font-size: 10px !important; padding: 5px 0 !important; }
.rankings_options:hover > div { width: auto !important; height: auto !important; opacity: 1; padding: 10px; background: #f8f8f8; border: 1px solid #ddd; border-right: 0; border-bottom: 0; }

/* ============================================================
   HORIZONTAL MENU
   ============================================================ */
.horMenu { display: table; margin: 20px auto; }
.horMenu a { float: left; padding: 10px 15px; border-bottom: 2px solid rgba(100,160,255,0.2); margin: 0 0 0 10px; text-transform: uppercase; font-size: 12px; color: var(--text-secondary) !important; transition: color 0.2s, border-color 0.2s; letter-spacing: 0.05em; }
.horMenu a:first-child { margin: 0; }
.horMenu a:hover { border-color: var(--accent-gold) !important; color: var(--accent-gold-light) !important; }
.horMenu a.act { cursor: default; border-color: var(--accent-gold) !important; color: var(--accent-gold) !important; }
.horMenu a:active { opacity: 0.6; }

/* ============================================================
   FORMS
   ============================================================ */
.rulesbox {
    height: 280px; box-sizing: border-box; overflow: auto; margin: 0 auto 20px;
    padding: 20px 24px; width: calc(100% - 20px);
    background: rgba(5, 10, 25, 0.6);
    border: 1px solid rgba(120, 170, 255, 0.15);
    border-radius: 6px;
    color: #C8D4E8;
    font-size: 14px;
    line-height: 1.7;
}
.rulesbox p, .rulesbox li, .rulesbox div { color: #C8D4E8 !important; }
.rulesbox h1 { padding-top: 0; width: auto; height: auto; margin: 0; padding: 0 0 20px 20px; font-size: 20px; color: var(--accent-gold) !important; }

/* Scrollbar customizada */
.rulesbox::-webkit-scrollbar { width: 8px; }
.rulesbox::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); border-radius: 4px; }
.rulesbox::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.4); border-radius: 4px; }
.rulesbox::-webkit-scrollbar-thumb:hover { background: rgba(212, 175, 55, 0.7); }

.formpadrao, .formpadrao > div, .formpadrao .camp input, .formpadrao .camp select { border-radius: 6px; }
.formpadrao {
    display: table; margin: 0 auto 8px auto; padding: 0;
    border: 1px solid rgba(120, 170, 255, 0.2);
    background: linear-gradient(145deg, rgba(20, 30, 55, 0.8), rgba(10, 18, 38, 0.9));
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.formpadrao:focus-within {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}
.formpadrao > div { display: table; background: transparent; }
.formpadrao .desc {
    width: 140px; padding: 0 14px; font-weight: 600; text-align: right;
    color: var(--text-primary); letter-spacing: 0.03em; font-size: 13px;
    background: rgba(0, 0, 0, 0.25);
    border-right: 1px solid rgba(120, 170, 255, 0.15);
}
.formpadrao .desc, .formpadrao .camp, .formpadrao .camp2 { float: left; height: 40px; line-height: 40px; }
.formpadrao .camp input[type="text"], .formpadrao .camp input[type="password"], .formpadrao .camp input[type="file"] {
    border: 0; width: 200px; margin: 5px 5px 0 0; height: 30px; line-height: 30px;
    padding: 0 8px; background: rgba(255, 255, 255, 0.92); color: #1a1a2e;
    font-size: 13px; font-family: inherit;
    box-shadow: none; border-radius: 4px;
}
.formpadrao .camp select {
    border: 0; width: 210px; margin: 5px 5px 0 0; padding: 6px 5px 5px;
    background: rgba(255, 255, 255, 0.92); color: #1a1a2e;
    box-shadow: none; border-radius: 4px;
}
.formpadrao textarea { border: 0; resize: vertical; height: 300px; width: 200px; margin: 0 4px 10px 0; padding: 5px; background: rgba(255,255,255,0.92); color: #1a1a2e; }
.formpadrao.tdate .camp input { text-align: center; padding: 0 9px; }
.formpadrao.errorc, .formpadrao.errorc .desc, .formpadrao.errorc .camp { border-color: rgba(255, 100, 100, 0.6); }
.formpadrao.errorc > div { background: rgba(180, 40, 40, 0.4); }
.formpadrao .camp input[type="text"]:focus, .formpadrao .camp input[type="password"]:focus, .formpadrao .camp select:hover, .formpadrao textarea:focus { background: #fff; }

label.captcha {
    position: relative;
}

label.captcha .desc {
    width: 130px !important;
    padding: 0 !important;
    text-align: center;
}

label.captcha img.captchaImage {
    position: static !important;
    width: 110px;
    height: 30px;
    margin-top: 5px;
    opacity: 0.9;
    border-radius: 3px;
}

label.captcha .camp {
    margin-left: 0 !important;
}

label.captcha .camp input {
    width: 260px !important;
}

label.captcha a {
    position: absolute;
    right: 12px;
    top: 8px;
}

label.captcha a,
label.captcha a img {
    width: 23px;
    height: 23px;
}

label.captcha a:hover {
    opacity: 0.7;
}

/* ============================================================
   CASTLES
   ============================================================ */
.castled { width: 400px; margin: 0 auto; }
.castled, .castled > div { display: table; }
.castled .ct { font-size: 16px; font-weight: bold; padding: 10px 0 10px 30px; }
.castled .imgc { width: 200px; height: 113px; border: 1px solid rgba(0,0,0,0.3); float: left; border-radius: 7px; }
.castled .imgc span { display: block; width: 200px; height: 113px; background: rgba(0,0,0,0.6) url('../imgs/nm/castles.jpg') no-repeat; border-radius: 6px; }
.castled .ci { float: left; width: 188px; padding: 2px 0 0 10px; }
.castled .ci .co { font-weight: bold; }
.castled .ci .cc { margin-bottom: 8px; }
.castled .nwar { padding: 5px 0 10px 0; }
.castled .imgc.aden span      { background-position: left top; }
.castled .imgc.goddard span   { background-position: -200px top; }
.castled .imgc.giran span     { background-position: -400px top; }
.castled .imgc.oren span      { background-position: -600px top; }
.castled .imgc.dion span      { background-position: -800px top; }
.castled .imgc.gludio span    { background-position: -1000px top; }
.castled .imgc.innadril span  { background-position: -1200px top; }
.castled .imgc.rune span      { background-position: -1400px top; }
.castled .imgc.schuttgart span { background-position: -1600px top; }

/* ============================================================
   PAGE-SPECIFIC COMPONENTS
   ============================================================ */
/* pulsating image (home) */
@keyframes pulsar {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.04); }
}
.pulsating-image {
    display: block;
    animation: pulsar 5s ease-in-out infinite;
    width: 80%; height: auto;
    border-radius: 50%; object-fit: cover; margin: 0 auto;
}

/* animation-image */
@keyframes animation-opa {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.25; }
}
.animation-image { animation: animation-opa 2s linear infinite; }

/* dual-container (home welcome box) */
.dual-container {
    text-align: center; max-width: 850px; margin: 30px auto;
    padding: 28px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    font-family: 'Inter', 'Montserrat', sans-serif;
}
.dual-title { font-family: 'Cinzel', serif; font-size: 28px; font-weight: 700; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; text-shadow: 0 0 12px rgba(212, 175, 55, 0.3); }
.dual-paragraph { color: var(--text-primary); font-size: 16px; line-height: 1.65; margin-bottom: 14px; border: none !important; }
.dual-highlight { color: var(--accent-gold-light); font-weight: 700; }
.dual-gallery { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; }
.dual-gallery img { width: 45%; border-radius: 10px; object-fit: cover; transition: transform 0.3s; }
.dual-gallery img:hover { transform: scale(1.04); }

/* c4 info box */
.c4-container { background: #0a0a0a; color: #fff; padding: 22px; border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.5); margin: 20px auto; width: 90%; max-width: 800px; }
.c4-title { font-size: 20px; font-weight: 800; text-align: center; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; display: block; padding: 10px; background: linear-gradient(to right, #1a1a1a, #000); border-radius: 5px; border: 2px solid #FFD700; width: fit-content; margin: 0 auto 16px; }
.c4-subtitle { font-size: 20px; font-weight: 700; margin-top: 18px; color: #FFD700; }
.c4-paragraph { font-size: 15px; line-height: 1.8; color: #fff !important; margin-bottom: 14px; border: none !important; }
.c4-highlight { text-align: center; font-size: 18px; color: #FFD700; font-weight: bold; margin-top: 18px; }
.c4-list { margin: 14px 0; padding-left: 20px; }
.c4-list li { font-size: 15px; margin-bottom: 10px; color: #fff !important; }
.c4-list li strong { color: #FFD700; }

/* p override inside content (not in table-new) */
.pddInner p, article p {
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: var(--text-primary) !important;
    border: 1px solid rgba(100, 160, 255, 0.15);
    padding: 1rem 1.2rem;
    border-radius: 4px;
    margin-bottom: 8px;
    background: rgba(10, 20, 40, 0.4);
}
.pddInner p b, article p b { color: var(--accent-gold-light) !important; font-weight: 700; }

/* Texto solto dentro de article/pddInner (sem tag <p>) */
.pddInner, article { color: var(--text-primary); }
.pddInner b, article b { color: var(--accent-gold-light); }

i { font-size: 1.1rem; }

