/* ======================================
   PRISTINE WORLD - MODERN DARK TIBIA THEME
   Dark oldschool design matching the logo
   Fully responsive for all devices
   All text in English, MyAAC structure preserved
   ====================================== */

/* RESET AND BASE STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
    font-size: 12px;
    line-height: 1.6;
    background: #0a0a0a;
    color: #d4c4a8;
}

/* MAIN BACKGROUND - Dark Tibia Stone Texture with sticky footer */
body {
    background: 
        radial-gradient(circle at 20% 50%, rgba(139,69,19,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(205,133,63,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Ensure main content takes available space */
.logo_and_main {
    flex: 1;
    width: 100%;
    padding-bottom: 20px;
}

/* HEADER LOGO AREA */
.logo_and_main {
    background: transparent;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top_logo {
    text-align: center;
    padding: 30px 15px;
    background: linear-gradient(180deg, rgba(139,69,19,0.15) 0%, transparent 100%);
    border-bottom: 3px solid #8b4513;
    box-shadow: 0 3px 15px rgba(139,69,19,0.3);
    position: relative;
}

.top_logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.top_logo img {
    max-width: 100%;
    height: auto;
    filter: 
        drop-shadow(0 0 20px rgba(212,175,55,0.4))
        drop-shadow(0 0 40px rgba(139,69,19,0.3));
    transition: all 0.5s ease;
}

.top_logo img:hover {
    filter: 
        drop-shadow(0 0 25px rgba(212,175,55,0.6))
        drop-shadow(0 0 50px rgba(139,69,19,0.4))
        brightness(1.1);
    transform: scale(1.02);
}

/* SOCIAL MEDIA LINKS */
.container_main > center {
    background: linear-gradient(135deg, rgba(139,69,19,0.2) 0%, rgba(160,82,45,0.15) 100%);
    padding: 15px;
    border-bottom: 2px solid #654321;
    border-top: 1px solid rgba(212,175,55,0.2);
    margin-bottom: 20px;
    position: relative;
}

.container_main > center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.container_main > center a {
    display: inline-block;
    margin: 0 8px;
    transition: all 0.4s ease;
}

.container_main > center a img {
    border-radius: 8px;
    border: 2px solid rgba(139,69,19,0.3);
    transition: all 0.4s ease;
    filter: brightness(0.85) saturate(0.9);
}

.container_main > center a:hover img {
    filter: brightness(1.2) saturate(1.1);
    transform: translateY(-3px) scale(1.1);
    border-color: #d4af37;
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

/* MAIN CONTAINER LAYOUT - Classic Tibia Style like Antiga/Miracle */
.container_main {
    display: flex !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    background: rgba(0,0,0,0.3) !important;
    flex: 1 !important;
    gap: 5px !important;
    padding: 0 5px !important;
    flex-direction: row !important;
    align-items: flex-start !important;
}

/* LEFT SIDEBAR - Wider for better text display */
.container_left {
    flex: 0 0 204px !important;
    padding: 2px !important;
    width: 204px !important;
    min-width: 204px !important;
    max-width: 204px !important;
}

/* MAIN CONTENT AREA - Large central area like Antiga/Miracle */
.container_mid {
    flex: 1 !important;
    padding: 5px !important;
    min-width: 0 !important;
    width: auto !important;
}

/* RIGHT SIDEBAR - Wider for better text display */
.container_right {
    flex: 0 0 204px !important;
    padding: 2px !important;
    width: 204px !important;
    min-width: 204px !important;
    max-width: 204px !important;
}

/* TIBIA-STYLE BOXES */
.left_box, .center_box, .right_box {
    background: #f5f1e8;
    border: 2px outset #d1c4a8;
    border-radius: 0;
    margin-bottom: 15px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.center_box .rise-up-content {
    background: #2a2520 !important;
    color: #d4c4a8 !important;
}

/* Compact styling for sidebar boxes */
.left_box, .right_box {
    margin-bottom: 10px;
}

/* Larger margin for center content box */
.center_box {
    margin-bottom: 15px;
    background: #2a2520 !important;
}

.left_box:hover, .center_box:hover, .right_box:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* CLASSIC TIBIA CORNERS */
.corner_lt, .corner_rt, .corner_lb, .corner_rb {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    z-index: 2;
}

.corner_lt { top: 3px; left: 3px; }
.corner_rt { top: 3px; right: 3px; }
.corner_lb { bottom: 3px; left: 3px; }
.corner_rb { bottom: 3px; right: 3px; }

/* BOX TITLES */
.left_box .title, .center_box .title, .right_box .title {
    background: linear-gradient(to bottom, #d4b332, #c1a429);
    border-bottom: 1px solid #a68b1f;
    padding: 8px;
    text-align: center;
    position: relative;
    font-family: Arial, sans-serif;
}

/* Compact titles for sidebar boxes */
.left_box .title, .right_box .title {
    padding: 8px;
}

.left_box .title::before, .center_box .title::before, .right_box .title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.left_box .title span, .center_box .title span, .right_box .title span {
    color: #2c1810;
    font-weight: bold;
    text-shadow: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Optimized font size for wider sidebar titles */
.left_box .title span, .right_box .title span {
    font-size: 14px;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.left_box .title img, .center_box .title img, .right_box .title img {
    vertical-align: middle;
    margin-right: 8px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(212,175,55,0.5));
}

/* BOX CONTENT */
.content_bg, .content {
    background: #f5f1e8;
    color: #3a2817;
}

.rise-up-content {
    padding: 20px;
    background: #2a2520;
    min-height: 100px;
}

/* Compact padding for sidebar boxes */
.left_box .rise-up-content, .right_box .rise-up-content {
    padding: 15px;
    min-height: 80px;
}

/* MENU STYLING */
.left_box ul, .right_box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.left_box li, .right_box li {
    border-bottom: 1px solid rgba(139,69,19,0.3);
    transition: all 0.3s ease;
}

.left_box li:last-child, .right_box li:last-child {
    border-bottom: none;
}

.left_box a, .right_box a {
    display: block;
    padding: 10px 15px;
    color: #3a2817;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.left_box a::before, .right_box a::before {
    content: '▶';
    opacity: 0;
    margin-right: 8px;
    color: #d4af37;
    transition: all 0.3s ease;
}

.left_box a:hover, .right_box a:hover {
    background: linear-gradient(90deg, rgba(228,197,71,0.3) 0%, rgba(209,176,54,0.2) 100%);
    color: #6b4423;
    border-left-color: #e4c547;
    padding-left: 20px;
    transform: translateX(5px);
}

.left_box a:hover::before, .right_box a:hover::before {
    opacity: 1;
}

/* FORMS AND INPUTS */
.inputtext {
    background: linear-gradient(145deg, #1a1612 0%, #0f0f0a 100%);
    border: 2px inset #8b6914;
    color: #d4c4a8;
    padding: 8px 12px;
    font-family: inherit;
    font-size: 11px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.inputtext:focus {
    outline: none;
    border-color: #d4af37;
    background: linear-gradient(145deg, #1f1b16 0%, #14140e 100%);
    box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.loginbtn, .createbtn, .inputbtn {
    background: linear-gradient(145deg, #8b6914 0%, #654321 50%, #3e2723 100%);
    border: 2px outset #d4af37;
    color: #d4af37;
    padding: 10px 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 3px;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(212,175,55,0.2);
}

.loginbtn:hover, .createbtn:hover, .inputbtn:hover {
    background: linear-gradient(145deg, #a67c1a 0%, #7a4f28 50%, #4a302a 100%);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

/* TABLES */
.sinfotable, table {
    background: rgba(26,22,18,0.8);
    border: 2px outset #8b6914;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 10px 0;
}

.sinfotable td, .sinfotable th, table td, table th {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(139,69,19,0.3);
    color: #d4c4a8;
}

.sinfotable th, table th {
    background: linear-gradient(180deg, #8b6914 0%, #654321 100%);
    color: #d4af37;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.sinfotable tr:hover td, table tr:hover td {
    background: rgba(139,69,19,0.2);
}

/* LINKS */
a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255,215,0,0.5);
}

/* BORDER BOTTOM */
.border_bottom {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #8b6914 20%, #d4af37 50%, #8b6914 80%, transparent 100%);
    margin-top: 10px;
}

/* FOOTER */
.footer_cnt {
    background: linear-gradient(180deg, rgba(139,69,19,0.2) 0%, rgba(0,0,0,0.8) 100%);
    border-top: 2px solid #8b6914;
    padding: 20px;
    text-align: center;
    color: #a0a0a0;
    font-size: 10px;
    margin-top: auto;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(139,69,19,0.3);
    flex-shrink: 0;
}

.footer_cnt center {
    max-width: 1200px;
    margin: 0 auto;
}

.footer_cnt a {
    color: #8b6914;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_cnt a:hover {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212,175,55,0.5);
}

/* LANGUAGE SELECTOR */
.boxTradutor {
    margin: 10px 0;
}

.container_right center a img {
    width: 32px;
    height: 32px;
    margin: 2px;
    border: 1px solid #8b6914;
    border-radius: 4px;
    transition: all 0.3s ease;
    filter: brightness(0.8);
}

.container_right center a img:hover {
    border-color: #d4af37;
    filter: brightness(1.2);
    transform: scale(1.1);
}

/* RASHID AND SERVER INFO */
.rashid_text {
    background: linear-gradient(145deg, rgba(139,69,19,0.3) 0%, rgba(212,175,55,0.1) 100%);
    border: 1px solid #8b6914;
    padding: 8px;
    text-align: center;
    color: #d4af37;
    font-weight: bold;
    border-radius: 4px;
    margin: 5px 0;
}

/* RESPONSIVE DESIGN - Maintaining Antiga/Miracle classic layout */
@media (max-width: 1024px) {
    .container_main {
        max-width: 100%;
        padding: 0 5px;
        gap: 8px;
    }
    
    .container_left, .container_right {
        flex: 0 0 184px;
        padding: 3px;
    }
    
    .top_logo img {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 11px;
    }
    
    .top_logo {
        padding: 20px 10px;
    }
    
    .top_logo img {
        max-width: 85%;
    }
    
    .container_main > center {
        padding: 10px;
    }
    
    .container_main > center a img {
        width: 35px;
        height: 35px;
        margin: 0 3px;
    }
    
    /* Keep classic 3-column layout on tablet */
    .container_main {
        gap: 5px;
    }
    
    .container_left, .container_right {
        flex: 0 0 164px;
        padding: 2px;
    }
    
    .left_box, .center_box, .right_box {
        margin-bottom: 8px;
    }
    
    .rise-up-content {
        padding: 12px;
    }
    
    .left_box .title, .center_box .title, .right_box .title {
        padding: 8px;
    }
    
    .left_box .title span, .center_box .title span, .right_box .title span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 10px;
    }
    
    .top_logo {
        padding: 15px 5px;
    }
    
    .top_logo img {
        max-width: 80%;
    }
    
    .container_main > center {
        padding: 8px;
    }
    
    .container_main > center a img {
        width: 30px;
        height: 30px;
    }
    
    /* Stack layout only on very small mobile screens */
    .container_main {
        flex-direction: column;
        gap: 10px;
    }
    
    .container_left, .container_right {
        flex: none;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 5px;
        order: 2;
    }
    
    .left_box, .right_box {
        flex: 0 0 150px;
        margin-bottom: 0;
    }
    
    .container_mid {
        order: 1;
        max-width: 100%;
    }
    
    .rise-up-content {
        padding: 10px;
    }
}

/* UTILITY CLASSES */
.display-none {
    display: none !important;
}

.display-inline {
    display: inline !important;
}

.display-block {
    display: block !important;
}

/* FORCE CLASSIC LAYOUT - HIGHEST PRIORITY */
body .logo_and_main .container_main {
    display: flex !important;
    flex-direction: row !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    gap: 5px !important;
    padding: 0 5px !important;
    background: rgba(0,0,0,0.3) !important;
    width: 100% !important;
}

body .logo_and_main .container_main .container_left {
    flex: 0 0 204px !important;
    width: 204px !important;
    min-width: 204px !important;
    max-width: 204px !important;
    padding: 2px !important;
    order: 1 !important;
}

body .logo_and_main .container_main .container_mid {
    flex: 1 !important;
    padding: 5px !important;
    min-width: 0 !important;
    width: auto !important;
    order: 2 !important;
}

body .logo_and_main .container_main .container_right {
    flex: 0 0 204px !important;
    width: 204px !important;
    min-width: 204px !important;
    max-width: 204px !important;
    padding: 2px !important;
    order: 3 !important;
}

/* FORCE FOR SMALLER SCREENS TOO */
@media (min-width: 481px) {
    body .logo_and_main .container_main {
        flex-direction: row !important;
    }
    
    body .logo_and_main .container_main .container_left,
    body .logo_and_main .container_main .container_right {
        display: block !important;
        flex: 0 0 204px !important;
        width: 204px !important;
    }
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(139,69,19,0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b6914 0%, #654321 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a67c1a 0%, #7a4f28 100%);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* PRINT STYLES */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    
    .container_main > center,
    .footer_cnt {
        display: none !important;
    }
}

/* FORCE MENU TITLES TO DISPLAY CORRECTLY */
.left_box .title span, 
.right_box .title span {
    color: #d4af37 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    background-image: none !important;
    background: none !important;
    text-indent: 0 !important;
    overflow: visible !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8) !important,
        0 0 8px rgba(212,175,55,0.4) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    vertical-align: middle !important;
    margin-left: 8px !important;
    animation: subtle-glow 3s ease-in-out infinite alternate !important;
}

@keyframes subtle-glow {
    0% { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 8px rgba(212,175,55,0.4); 
    }
    100% { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 12px rgba(212,175,55,0.6); 
    }
}

.center_box .title span {
    color: #2c1810 !important;
    text-shadow: none !important;
}

.center_box .heading,
.center_box .heading h1,
.center_box .heading h2 {
    color: #e4c547 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
}

/* NEWS E OUTROS CONTEÚDOS */
.center_box .content strong,
.center_box .content b {
    color: #e4c547 !important;
}

.center_box .content em,
.center_box .content i {
    color: #d4af37 !important;
}

/* HEADER BAR STYLING - FORCE DISPLAY */
.header_bar {
    background: linear-gradient(180deg, rgba(139,69,19,0.2) 0%, rgba(0,0,0,0.8) 100%) !important;
    border-top: 2px solid #8b6914;
    border-bottom: 3px solid #8b4513;
    padding: 15px 0;
    margin-bottom: 20px;
    box-shadow: 
        0 3px 15px rgba(139,69,19,0.3),
        inset 0 1px 0 rgba(212,175,55,0.1);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1000 !important;
}

.header_bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.header_bar_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Social Media Section - Left */
.social_media_section {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social_media_section a {
    display: inline-block;
    transition: all 0.4s ease;
    border-radius: 6px;
    overflow: hidden;
}

.social_media_section a img {
    transition: all 0.4s ease;
    filter: 
        brightness(0.8) 
        contrast(1.1) 
        saturate(0.9)
        sepia(0.2)
        hue-rotate(15deg);
    border: 2px solid rgba(139,69,19,0.3);
    border-radius: 6px;
    background: rgba(212,175,55,0.1);
    padding: 2px;
}

.social_media_section a:hover img {
    filter: 
        brightness(1.2) 
        contrast(1.2) 
        saturate(1.1)
        sepia(0.1)
        hue-rotate(0deg)
        drop-shadow(0 0 10px rgba(212,175,55,0.6));
    transform: translateY(-2px) scale(1.1);
    border-color: #d4af37;
    background: rgba(212,175,55,0.2);
}

/* Welcome Message - Center */
.welcome_message {
    text-align: center;
    flex: 1;
}

.welcome_message span {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),
        0 0 15px rgba(212,175,55,0.4);
    display: inline-block;
    position: relative;
}

.welcome_message span::before,
.welcome_message span::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #8b6914;
    font-size: 14px;
    animation: sparkle 2s ease-in-out infinite alternate;
}

.welcome_message span::before {
    left: -25px;
}

.welcome_message span::after {
    right: -25px;
}

@keyframes sparkle {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Translation Section - Right */
.translation_section {
    display: flex;
    gap: 8px;
    align-items: center;
}

.translation_section a {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.translation_section a img {
    transition: all 0.3s ease;
    border: 2px solid rgba(139,69,19,0.3);
    border-radius: 4px;
    filter: brightness(0.9) contrast(1.1);
}

.translation_section a:hover img {
    filter: brightness(1.1) contrast(1.2);
    transform: translateY(-2px) scale(1.05);
    border-color: #d4af37;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

/* Responsive adjustments for header bar */
@media (max-width: 768px) {
    .header_bar_content {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .welcome_message span {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .welcome_message span::before,
    .welcome_message span::after {
        display: none;
    }
    
    .social_media_section,
    .translation_section {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header_bar {
        padding: 10px 0;
    }
    
    .header_bar_content {
        gap: 10px;
    }
    
    .welcome_message span {
        font-size: 14px;
    }
    
    .social_media_section a img,
    .translation_section a img {
        width: 28px !important;
        height: 28px !important;
    }
}

/* FORCE HEADER BAR DISPLAY AND HIDE OLD ELEMENTS */
.header_bar {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1000 !important;
}

.header_bar_content {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.social_media_section,
.welcome_message,
.translation_section {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* HIDE OLD SOCIAL MEDIA AND TRANSLATION POSITIONS */
.container_main > center {
    display: none !important;
}

.container_right center {
    display: none !important;
}

/* FORCE GOOGLE TRANSLATE TO WORK IN HEADER */
#google_translate_element {
    display: inline-block !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* FORÇA FUNDO ESCURO PARA ÁREA CENTRAL */
.center_box, 
.center_box .content_bg,
.center_box .content,
.center_box .rise-up-content,
.container_mid .center_box {
    background: #2a2520 !important;
    color: #d4c4a8 !important;
}

.center_box h1,
.center_box h2, 
.center_box h3,
.center_box h4,
.center_box p,
.center_box div {
    color: #d4c4a8 !important;
}

.center_box a {
    color: #e4c547 !important;
}

.center_box a:hover {
    color: #f0d55e !important;
}

/* GARANTE QUE TABELAS TAMBÉM TENHAM FUNDO ESCURO */
.center_box table,
.center_box .table,
.center_box .sinfotable {
    background: #2a2520 !important;
    color: #d4c4a8 !important;
}

.center_box table td,
.center_box table th,
.center_box .table td,
.center_box .table th {
    background: #2a2520 !important;
    color: #d4c4a8 !important;
    border-color: #444 !important;
} 