/*!
=========================================================
 FIX + MEJORAS VISUALES WEBENGINE
=========================================================
*/

/* ================= BASE ================= */
body {
    background: url('../img/bg.jpg') no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

/* ================= TABLAS ================= */
.table>tbody>tr>td, 
.table>tbody>tr>th, 
.table>tfoot>tr>td, 
.table>tfoot>tr>th, 
.table>thead>tr>td, 
.table>thead>tr>th {
    border-top: none !important;
}

/* ================= LINKS ================= */
a:focus, 
a:hover {
    color: inherit !important;
    text-decoration: none !important;
}

/* ================= FORM ================= */
.form-control {
    background: #020202;
    border: 1px solid #444;
    color: #fff;
}

.form-control:focus {
    border: 1px solid #ff5e00;
    box-shadow: 0 0 8px #ff5e00;
}

/* ================= UTILIDADES ================= */
.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

/* ================= THUMB ================= */
.thumbnail {
    background-color: #111;
    border: 1px solid #333;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #ff5e00;
}

/* ================= FIX DISCORD ================= */
.discord-widget {
    background: rgba(0,0,0,0.85);
    border: 1px solid #ff5e00;
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
}

/* ================= FIX CONTENIDO ================= */
#container {
    min-height: 70vh;
    padding-bottom: 40px;
}

/* ================= FOOTER FIX ================= */
.footer {
    background: rgba(0,0,0,0.95);
    border-top: 1px solid #ff5e00;
    padding: 40px 0;
    margin-top: 50px;
    text-align: center;
}

/* ================= SOCIAL PANEL FIX ================= */
.social-panel {
    position: fixed;
    top: 40%;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.social-panel .item {
    background: #111;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
    border: 1px solid #333;
}

.social-panel .item:hover {
    background: #ff5e00;
    transform: translateX(-5px);
}

/* ================= STREAM WIDGET FIX ================= */
.streamer-widget {
    position: fixed;
    top: 30%;
    left: -220px;
    width: 220px;
    background: rgba(20, 20, 20, 0.95);
    padding: 15px;
    border-radius: 0 10px 10px 0;
    transition: all 0.4s ease;
    z-index: 9999;
}

.streamer-widget:hover {
    left: 0;
}

.streamer-tab {
    position: absolute;
    right: -70px;
    top: 35%;
    width: 70px;
    padding: 10px;
    background: #b60000;
    color: white;
    text-align: center;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

/* ================= SCROLL FIX ================= */
html, body {
    height: 100%;
}