﻿/* ================================================
   XANTABRA GLASSMORPHISM ADDITIONS
   Add these styles to override existing ones
   ================================================ */

/* Remove all background images from boxes */
.box-content,
.box-body,
.box .body,
[class*="box"] .content {
    background: transparent !important;
    background-image: none !important;
}

/* Glassmorphism for all boxes */
.box,
.box-wrapper,
.container .box {
    background: rgba(20, 10, 40, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(138, 43, 226, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

@supports (content-visibility: auto) {
    body .content .container .main-content .box,
    body .content .container .right-panel .box {
        content-visibility: auto;
        contain-intrinsic-size: 300px 400px;
    }
}

@media (max-width: 900px), (prefers-reduced-data: reduce) {
    .box,
    .box-wrapper,
    .container .box {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(20, 10, 40, 0.7) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
    }
}

/* Purple gradient headers */
.box .head,
.box-header,
.head,
h2.head {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.9) 0%, 
        rgba(106, 13, 173, 0.9) 100%) !important;
    background-image: none !important;
    color: #ffffff !important;
    text-align: center !important;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.6),
        0 3px 6px rgba(0, 0, 0, 1.0),
        0 0 40px rgba(138, 43, 226, 0.5) !important;
    border-bottom: 2px solid rgba(138, 43, 226, 0.5) !important;
}

/* White text for all labels and headers */
.box .head,
.box-header,
.head,
h1, h2, h3, h4, h5, h6,
.label,
th {
    color: #ffffff !important;
}

/* Buttons */
.btn,
.button,
button,
input[type="submit"],
input[type="button"] {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.9) 0%, 
        rgba(106, 13, 173, 0.9) 100%) !important;
    color: #ffffff !important;
    border: 2px solid rgba(138, 43, 226, 0.8) !important;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6) !important;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.8) !important;
    font-family: 'Bebas Neue', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, text-shadow 0.3s ease !important;
}

.btn:hover,
.button:hover,
button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.8) !important;
}

/* Tables */
table {
    background: rgba(20, 10, 35, 0.4) !important;
    border-radius: 8px !important;
    border-collapse: collapse !important;
}

table thead th {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.9) 0%, 
        rgba(106, 13, 173, 0.9) 100%) !important;
    color: #ffffff !important;
    font-family: 'Bebas Neue', sans-serif !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4) !important;
}

table tbody tr {
    border-bottom: 1px solid rgba(138, 43, 226, 0.2) !important;
}

table tbody tr:nth-child(odd) {
    background: rgba(30, 15, 45, 0.3) !important;
}

table tbody tr:nth-child(even) {
    background: rgba(20, 10, 35, 0.4) !important;
}

table tbody tr:hover {
    background: rgba(138, 43, 226, 0.15) !important;
}

/* Remove white borders everywhere */
*:not(table):not(td):not(th) {
    border-color: rgba(138, 43, 226, 0.3) !important;
}

/* Links */
a {
    color: #a78bfa !important;
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.5) !important;
    transition: color 0.3s ease, text-shadow 0.3s ease !important;
}

a:hover {
    color: #c4b5fd !important;
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.8) !important;
}

/* Input fields */
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    background: rgba(20, 10, 35, 0.5) !important;
    border: 1px solid rgba(138, 43, 226, 0.4) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(138, 43, 226, 0.8) !important;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5) !important;
    outline: none !important;
}

/* Status indicators */
.online {
    color: #22c55e !important;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.6) !important;
}

.offline {
    color: #ef4444 !important;
}

/* Premium badge */
.premium {
    background: linear-gradient(135deg, 
        rgba(218, 165, 32, 0.9) 0%, 
        rgba(184, 134, 11, 0.9) 100%) !important;
    color: #000000 !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
}
* {
    margin: 0;
    padding: 0
}
.container {
    width: 1170px!important
}
@font-face {
    font-family: bebas neue;
    src: url(../fonts/bebasneue_regular-webfont.eot);
    src: url(../fonts/bebasneue_regular-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/bebasneue_regular-webfont.woff2) format("woff2"), url(../fonts/bebasneue_regular-webfont.woff) format("woff"), url(../fonts/bebasneue_regular-webfont.ttf) format("truetype"), url(../fonts/bebasneue_regular-webfont.svg#bebas_neue_regularregular) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: bebas neue bold;
    src: url(../fonts/bebasneue_bold-webfont.eot);
    src: url(../fonts/bebasneue_bold-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/bebasneue_bold-webfont.woff2) format("woff2"), url(../fonts/bebasneue_bold-webfont.woff) format("woff"), url(../fonts/bebasneue_bold-webfont.ttf) format("truetype"), url(../fonts/bebasneue_bold-webfont.svg#bebas_neuebold) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
body {
    background: url(../images/bg3.jpg) center top no-repeat, rgba(10, 5, 20, 1);
    font-family: Bebas, sans-serif;
    padding: 0
}
body .logo {
    display: block;
    background: url(../images/logo.png) no-repeat;
    height: 350px;
    background-size: 700px auto;
    background-position: center center;
    margin-top: 0px;
    margin-bottom: -50px;
    position: relative;
    z-index: 100;
    overflow: visible
}

@media (max-width: 900px), (prefers-reduced-data: reduce) {
    body {
        background: url(../images/bg3_medium.jpg) center top no-repeat, rgba(10, 5, 20, 1);
        background-size: cover;
    }
    body .logo {
        height: 240px;
        background-size: 420px auto;
        margin-bottom: -20px;
    }
}

/* Fix for logo container */
body > .container:nth-of-type(1) {
    overflow: visible !important;
}
body .content {
    margin-top: 30px
}
body .content .container {
    position: relative
}
body .content .container .content-wrapper {
    position: relative;
    background: url(../images/frame-top-left.png), url(../images/frame-top-right.png), url(../images/frame-bottom-left.png), url(../images/frame-bottom-right.png), url(../images/frame-top.png), url(../images/frame-left.png), url(../images/frame-right.png), url(../images/frame-bottom.png), rgba(15, 10, 25, 0.95);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.5), inset 0 0 80px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(138, 43, 226, 0.3);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-y, repeat-y, repeat-x;
    background-position: top left, top right, bottom left, bottom right, top, left, right, bottom;
    padding: 30px
}
body .content .container .corner-top-left {
    position: absolute;
    background: url(../images/corner.png) no-repeat;
    width: 169px;
    height: 112px;
    top: -10px;
    left: -16px
}
body .content .container .corner-top-right {
    position: absolute;
    background: url(../images/corner.png) no-repeat;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    width: 169px;
    height: 112px;
    top: -10px;
    right: -16px
}
body .content .container .borderfix {
    background: rgba(15, 10, 25, 0.95);
    width: 100%;
    height: 100%;
    display: table;
    box-sizing: border-box;
    border: 1px solid rgba(138, 43, 226, 0.25);
    outline: 1px solid rgba(138, 43, 226, 0.4)
}
body .content .container .main-content {
    padding-top: 15px;
    padding-bottom: 15px;
    overflow: hidden
}
body .content .container .main-content .box {
    margin-bottom: 30px;
    overflow: hidden
}
body .content .container .main-content .box .box-wrapper {
    width: 330px
}
body .content .container .main-content .box .head {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.95) 0%, rgba(106, 13, 173, 0.95) 100%);
    height: 40px;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    line-height: 40px;
    text-align: center;
    color: #1a0a2e;
    font-family: Bebas Neue Bold, sans-serif;
    font-size: 24px
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.6), 0 1px 3px rgba(0,0,0,0.8);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    border-bottom: 2px solid rgba(138, 43, 226, 0.4);
}
body .content .container .main-content .box .box-content {
    background: rgba(25, 15, 40, 0.85);
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3), inset 0 0 40px rgba(0, 0, 0, 0.4);
    margin: 0 1px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}
body .content .container .main-content .box .box-content .item-wrapper .title {
    color: rgba(230, 213, 184, 0.85);
    font-family: Bebas Neue, sans-serif;
    font-size: 16px
}
body .content .container .main-content .box .box-content .item-wrapper .value {
    color: rgba(230, 213, 184, 0.85);
    font-family: Bebas Neue Bold, sans-serif;
    font-size: 16px
}
body .content .container .main-content .news {
    background: rgba(30, 15, 45, 0.65);
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid #fff;
    box-shadow: -1px -1px 0 0 rgba(138, 43, 226, 0.35), 1px 1px 0 0 rgba(138, 43, 226, 0.35), -1px 1px 0 0 rgba(138, 43, 226, 0.35), 1px -1px 0 0 rgba(138, 43, 226, 0.35);
    padding: 20px;
    margin-bottom: 30px
}
body .content .container .main-content .news images {
    max-width: 100%
}
body .content .container .main-content .news h3 {
    font-size: 22px;
    color: rgba(230, 213, 184, 0.85);
    font-family: Bebas Neue Bold, sans-serif;
    margin: 0
}
body .content .container .main-content .news .separator {
    width: 100%;
    height: 2px;
    background: rgba(230, 213, 184, 0.08);
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    margin: 20px 0
}
body .content .container .main-content .news p {
    font-size: 14px;
    line-height: 24px;
    font-family: Georgia, serif
}
body .content .container .main-content .news .timestamp {
    font-family: Bebas Neue Bold, sans-serif;
    color: rgba(230, 213, 184, 0.85);
    font-size: 14px
}
body .content .container .main-content .news .comments {
    margin-top: -10px
}
body .content .container .main-content .news .comments a {
    color: rgba(138, 43, 226, 0.95);
    font-family: Bebas Neue, sans-serif;
    font-size: 14px
}
body .content .container .main-content .news .comments a:hover {
    color: rgba(138, 43, 226, 0.95)
}
body .content .container .main-content .news .author {
    font-family: Bebas Neue, sans-serif;
    font-size: 14px;
    color: rgba(230, 213, 184, 0.85);
    margin-top: -10px
}
body .content .container .main-content .news .author strong {
    font-family: Bebas Neue Bold, sans-serif
}
body .content .container .right-panel {
    padding-top: 15px
}
body .content .container .right-panel .latest-posts ul {
    list-style-type: none
}
body .content .container .right-panel .latest-posts ul .item {
    padding-bottom: 2px!important;
    margin-bottom: 5px!important
}
body .content .container .right-panel .latest-posts ul .item .info {
    font-family: Bebas Neue, sans-serif;
    font-size: 16px;
    color: rgba(230, 213, 184, 0.5)
}
body .content .container .right-panel .latest-posts ul li a {
    font-family: Bebas Neue Bold, sans-serif;
    font-size: 18px;
    color: rgba(192, 132, 252, 0.7)
}
body .content .container .right-panel .box {
    margin-bottom: 30px;
    overflow: hidden
}
body .content .container .right-panel .box .box-wrapper {
    width: 330px
}
body .content .container .right-panel .box .head {
    background: rgba(138, 43, 226, 0.9);
    height: 40px;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    line-height: 40px;
    text-align: center;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.6), 0 1px 3px rgba(0,0,0,0.8);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    border-bottom: 2px solid rgba(138, 43, 226, 0.4);
    color: #e6d5b8;
    font-family: Bebas Neue Bold, sans-serif;
    font-size: 24px
}
body .content .container .right-panel .box .box-content {
    background: rgba(25, 15, 40, 0.85);
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3), inset 0 0 40px rgba(0, 0, 0, 0.4);
    margin: 0 1px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}
body .content .container .right-panel .box .box-content .item {
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 1px 0 0 rgba(230, 213, 184, 0.08);
    padding-bottom: 10px;
    margin-bottom: 20px;
    width: 100%
}
body .content .container .right-panel .box .box-content .item .item-head {
    color: rgba(138, 43, 226, 0.8);
    font-family: Bebas Neue, sans-serif;
    font-size: 18px;
    padding-bottom: 0;
    margin-bottom: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 1px 0 0 rgba(230, 213, 184, 0.08);
    display: table
}
body .content .container .right-panel .box .box-content .item .wrap {
    overflow: hidden;
    width: 100%
}
body .content .container .right-panel .box .box-content .item .wrap .left {
    float: left
}
body .content .container .right-panel .box .box-content .item .wrap .left images {
    max-width: 60px;
    max-height: 60px
}
body .content .container .right-panel .box .box-content .item .wrap .right {
    margin-left: 70px
}
body .content .container .right-panel .box .box-content .item .wrap .right .title {
    color: rgba(230, 213, 184, 0.85);
    font-size: 24px;
    font-family: Bebas Neue Bold, sans-serif
}
body .content .container .right-panel .box .box-content .item .wrap .right .info {
    color: rgba(230, 213, 184, 0.85);
    font-size: 18px;
    font-family: Bebas Neue, sans-serif
}
body .content .container .right-panel .box .box-content .item:last-child {
    border-bottom: none;
    box-shadow: none;
    padding-bottom: 0;
    margin-bottom: 0
}
body .content .container .right-panel .box .box-content .featured-item {
    padding: 0 20px;
    height: 80px
}
body .content .container .right-panel .box .box-content .featured-item .slick-list {
    width: 240px
}
body .content .container .right-panel .box .box-content .featured-item .wrap .left {
    height: 60px
}
body .content .container .right-panel .box .box-content .featured-item .wrap .left images {
    margin-top: 14px
}
body .content .container .right-panel .box .box-content .featured-item .wrap .left,
body .content .container .right-panel .box .box-content .featured-item .wrap .right {
    margin-top: 10px
}
body .content .container .right-panel .box .box-content .featured-item .wrap .item-tooltip {
    display: none;
    float: left;
    margin-left: 20px;
    font-family: Georgia, serif;
    font-size: 14px;
    max-width: 180px
}
body .content .container .right-panel .box .box-content .featured-item .wrap:hover .item-tooltip {
    display: block
}
body .content .container .right-panel .box .box-content .featured-item .wrap:hover .right {
    display: none
}
body .content .container .right-panel .box .box-content .featured-item .wrap:focus {
    outline: none
}
body .content .container .right-panel .teamspeak button {
    font-family: Bebas Neue Bold, sans-serif;
    height: 28px;
    line-height: 0;
    color: #e6d5b8;
    background: rgba(138, 43, 226, 0.9);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(138, 43, 226, 0.9)), color-stop(100%, rgba(75, 0, 130, 0.8)));
    background: -webkit-linear-gradient(top, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='rgba(138, 43, 226, 0.9)', endColorstr='rgba(75, 0, 130, 0.8)', GradientType=0);
    border-radius: 5px;
    margin: 0 5px
}
body .status-bar {
    width: 100%;
    background: rgba(20, 10, 30, 0.9);
    font-family: Bebas Neue, sans-serif;
    opacity: .75;
    font-size: 18px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.9)
}
body .status-bar .container {
    overflow: hidden
}
body .status-bar .container .item {
    height: 40px;
    padding: 0 15px;
    line-height: 40px;
    color: rgba(230, 213, 184, 0.6);
    float: left;
    border-left: 1px solid rgba(138, 43, 226, 0.9)
}
body .status-bar .container .item .value {
    color: #b8ccd8;
    font-family: Bebas Neue Bold
}
body .status-bar .container .item .online {
    font-family: Bebas Neue Bold;
    color: rgba(138, 43, 226, 0.95)
}
body .menu {
    position: relative;
    z-index: 300;
}
body .menu nav {
    border-radius: 5px;
    height: 60px;
    background: rgba(75, 0, 130, 0.9);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(75, 0, 130, 0.9)), color-stop(100%, rgba(106, 13, 173, 0.9)));
    background: -webkit-linear-gradient(top, rgba(75, 0, 130, 0.9) 0%, rgba(106, 13, 173, 0.9) 100%);
    background: -webkit-linear-gradient(top, rgba(75, 0, 130, 0.9) 0%, rgba(106, 13, 173, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(75, 0, 130, 0.9) 0%, rgba(106, 13, 173, 0.9) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='rgba(75, 0, 130, 0.9)', endColorstr='rgba(106, 13, 173, 0.9)', GradientType=0);
    border: none;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.5), inset 0 1px 0 rgba(138, 43, 226, 0.3), 0 4px 0 rgba(20, 10, 30, 0.8);
    font-family: Bebas Neue;
    font-size: 24px
}
body .menu nav .dropdown-menu li a:hover {
    color: rgba(138, 43, 226, 0.95)!important
}
body .menu nav .navbar-form {
    margin-top: 12px
}
body .menu nav .navbar-form .form-group {
    margin-right: -4px
}
body .menu nav .navbar-form .form-group input {
    height: 36px;
    background: rgba(30, 15, 45, 0.7);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(138, 43, 226, 0.9)), color-stop(100%, rgba(75, 0, 130, 0.8)));
    background: -webkit-linear-gradient(top, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='rgba(138, 43, 226, 0.9)', endColorstr='rgba(75, 0, 130, 0.8)', GradientType=0);
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
    box-shadow: inset 0 3px 0 0 rgba(75, 0, 130, 0.8), inset 0 -1px 0 0 rgba(138, 43, 226, 0.95);
    color: #fff
	
}
body .menu nav .navbar-form .form-group::-webkit-input-placeholder {
    color: rgba(138, 43, 226, 0.95)
}
body .menu nav .navbar-form .btn {
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #d7d7d7));
    background: -webkit-linear-gradient(top, #ffffff 0%, #d7d7d7 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #d7d7d7 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #d7d7d7 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d7d7d7', GradientType=0);
    border: none;
    outline: none;
    height: 34px;
    color: #4e4c4c;
    font-size: 18px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}
body .menu nav .navbar-nav .dropdown-menu {
    padding-top: 0;
    padding-bottom: 4px;
    background: rgba(138, 43, 226, 0.95);
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .175)
}
body .menu nav .navbar-nav .dropdown-menu li a {
    line-height: 34px;
    font-size: 18px
}
body .menu nav .navbar-nav li a {
    color: #e6d5b8;
    padding: 0;
    line-height: 60px;
    padding: 0 15px
}
body .menu nav .navbar-nav li.active a {
    background: url(../images/menu-active.png) no-repeat;
    background-size: 100% 44px;
    background-position: bottom;
    box-shadow: none;
    color: #fff
}
body .menu nav .navbar-nav li.open a,
body .menu nav .navbar-nav li.open a:focus,
body .menu nav .navbar-nav li.open a:hover,
body .menu nav .navbar-nav li.open a:active {
    background: rgba(75, 0, 130, 0.8);
    color: #fff
}
body header .container .slick-slider {
    margin-bottom: 0
}
body header .container .slider {
    height: 250px
}
body header .container .slider .slick-dots {
    bottom: -25px
}
body header .container .slider .item {
    position: relative;
    height: 250px
}
body header .container .slider .item images {
    position: absolute;
    z-index: 111;
    top: 0;
    height: 100%
}
body header .container .slider .item h2 {
    font-size: 60px;
    font-family: Georgia, serif;
    text-shadow: 0 3px 3px rgba(0, 0, 0, .9);
    color: #e6d5b8;
    font-weight: 700;
    position: relative;
    z-index: 222
}
body header .container .slider .item p {
    color: #e6d5b8;
    text-shadow: 0 3px 3px rgba(0, 0, 0, .9);
    font-size: 19px;
    font-family: Georgia, serif;
    font-weight: 700;
    line-height: 28px;
    position: relative;
    z-index: 222
}
body header .container .slider .item:focus {
    outline: none
}
body header .container #tabs {
    height: 40px
}
body header .container #tabs li {
    height: 40px;
    width: 50%;
    text-align: center
}
body header .container #tabs li a {
    height: 40px;
    line-height: 40px;
    padding: 0;
    border-radius: 0;
    color: #e6d5b8;
    font-size: 24px;
    background: rgba(75, 0, 130, 0.8);
    border: none;
    margin: 0;
    font-family: Bebas Neue Bold, sans-serif
}
body header .container #tabs li.active a {
    background: rgba(138, 43, 226, 0.9);
    box-sizing: border-box;
    border: 1px solid rgba(138, 43, 226, 0.95);
    border-bottom: 1px solid rgba(138, 43, 226, 0.9);
    height: 41px
}
body header .container .tab-content {
    background: rgba(138, 43, 226, 0.9);
    border: 1px solid rgba(138, 43, 226, 0.95);
    box-sizing: border-box
}
body header .container .tab-content .tab-pane form .form-group {
    margin: 10px 15px 0
}
body header .container .tab-content .tab-pane form .form-group input {
    height: 36px;
    font-family: Bebas Neue, sans-serif;
    background: rgba(138, 43, 226, 0.95);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(138, 43, 226, 0.95)), color-stop(100%, rgba(138, 43, 226, 0.9)));
    background: -webkit-linear-gradient(top, rgba(138, 43, 226, 0.95) 0%, rgba(138, 43, 226, 0.9) 100%);
    background: -webkit-linear-gradient(top, rgba(138, 43, 226, 0.95) 0%, rgba(138, 43, 226, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(138, 43, 226, 0.95) 0%, rgba(138, 43, 226, 0.9) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='rgba(138, 43, 226, 0.95)', endColorstr='rgba(138, 43, 226, 0.9)', GradientType=0);
    border-radius: 5px;
    border: none;
    box-shadow: inset 0 3px 0 0 rgba(138, 43, 226, 0.9), inset 0 -1px 0 0 rgba(138, 43, 226, 0.95);
    color: #fff
}
body header .container .tab-content .tab-pane form .form-group::-webkit-input-placeholder {
    color: rgba(138, 43, 226, 0.95)
}
body header .container .tab-content .tab-pane form .btn {
    margin: 10px auto;
    font-family: Bebas Neue, sans-serif;
    display: block;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #d7d7d7));
    background: -webkit-linear-gradient(top, #ffffff 0%, #d7d7d7 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #d7d7d7 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #d7d7d7 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d7d7d7', GradientType=0);
    border: none;
    outline: none;
    height: 34px;
    color: #4e4c4c;
    font-size: 18px
}
body .logged-account .tab-content {
    background: rgba(16, 16, 16, .48)!important
}
body .logged-account .center-block {
    display: table;
    margin-top: 15px
}
body .logged-account .tab-pane {
    box-sizing: border-box;
    padding: 20px
}
body .logged-account .tab-pane span {
    font-family: Bebas Neue, sans-serif;
    color: #e6d5b8;
    text-shadow: 0 1px 0 rgba(75, 0, 130, 0.8);
    font-size: 18px
}
body .logged-account .tab-pane span.value {
    font-family: Bebas Neue Bold, sans-serif
}
body .btn-blue {
    font-family: Bebas Neue Bold, sans-serif;
    height: 28px;
    line-height: 14px;
    color: #e6d5b8;
    background: rgba(138, 43, 226, 0.9);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(138, 43, 226, 0.9)), color-stop(100%, rgba(75, 0, 130, 0.8)));
    background: -webkit-linear-gradient(top, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='rgba(138, 43, 226, 0.9)', endColorstr='rgba(75, 0, 130, 0.8)', GradientType=0);
    border-radius: 5px;
    margin: 0 5px
}
body .btn-silver {
    font-family: Bebas Neue Bold, sans-serif;
    height: 28px;
    line-height: 14px;
    color: #464646;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #d7d7d7));
    background: -webkit-linear-gradient(top, #ffffff 0%, #d7d7d7 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #d7d7d7 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #d7d7d7 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d7d7d7', GradientType=0);
    border-radius: 5px;
    margin: 0 5px
}
.who-is-online .country {
    width: 10%
}
.who-is-online .name {
    width: 30%
}
.who-is-online .guild {
    width: 30%
}
.who-is-online .level {
    width: 10%
}
.who-is-online .vocation {
    width: 20%
}
.who-is-online tr {
    height: 30px
}
.who-is-online tr:nth-child(2n) {
    background: #dbe2e4
}
.table-heading-separator {
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 1px 0 0 rgba(230, 213, 184, 0.08);
    margin-bottom: 10px;
    display: block
}
.Table3,
.Table5 {
    width: 100%
}
.BigButton {
    height: 25px
}
.TableContentAndRightShadow {
    background-image: none!important
}
.main-content table images {
    max-width: 450px
}
.buypoints .box-content {
    overflow: hidden
}
.buypoints a {
    margin-bottom: 30px;
    display: block;
    width: 30%;
    margin-right: 5%;
    float: left
}
.buypoints a images {
    width: 100%
}
.buypoints a:nth-child(3) {
    margin-right: 0%
}
.countdown {
    font-family: Bebas Neue, sans-serif;
    font-size: 18px;
    color: #556873
}
.countdownspecial {
    font-family: Bebas Neue, sans-serif;
    font-size: 18px;
    position: relative;
    top: 0;
    color: #556873
}
.countdown #cntdwn {
    font-family: Bebas Neue Bold, sans-serif;
    font-size: 24px;
    color: #556873
}
.countdownspecial #cntdwnspecial {
    font-family: Bebas Neue, sans-serif;
    font-size: 18px;
    color: #556873;
    padding-top: 0;
    font-family: Bebas Neue Bold, sans-serif;
    font-size: 24px;
    color: green
}
buypoints a {
    margin-bottom: 30px
}
.error {
    font-style: normal;
    color: red;
    font-weight: 700
}
.record {
    margin-bottom: 20px;
    font-family: Bebas Neue Bold, sans-serif
}
.record .title {
    color: rgba(138, 43, 226, 0.95);
    font-size: 14px;
    text-transform: uppercase
}
.record .value {
    color: #556873;
    font-family: Bebas Neue, sans-serif;
    font-size: 20px
}
.record .input-value {
    display: block;
    background: #fff;
    width: 100%;
    border: none!important;
    height: 32px;
    border-radius: 3px
}
.record .radio-value {
    color: #556873;
    font-family: Bebas Neue, sans-serif;
    line-height: 24px
}
.no-padding {
    padding: 0!important
}
.negative {
    color: #e74c3c!important
}
.positive {
    color: rgba(138, 43, 226, 0.95)!important
}
.btn.btn-positive {
    font-family: Bebas Neue Bold, sans-serif;
    color: #e6d5b8;
    background: rgba(138, 43, 226, 0.9);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(138, 43, 226, 0.9)), color-stop(100%, rgba(75, 0, 130, 0.8)));
    background: -webkit-linear-gradient(top, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(138, 43, 226, 0.9) 0%, rgba(75, 0, 130, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='rgba(138, 43, 226, 0.9)', endColorstr='rgba(75, 0, 130, 0.8)', GradientType=0)
}
.aac-management td,
.aac-management th {
    border-top: none!important;
    border-bottom: none!important;
    font-family: Bebas Neue, sans-serif;
    color: #556873
}
.aac-management th {
    font-family: Bebas Neue Bold, sans-serif;
    color: rgba(138, 43, 226, 0.95)
}
.aac-management td {
    vertical-align: middle!important
}
.green-notification {
    color: green;
    font-size: 20px;
    text-align: center
}
.red-notification {
    color: red;
    font-size: 20px;
    text-align: center
}
.centered {
    text-align: center
}
.font-big {
    font-weight: 700;
    font-size: 30px
}
.guild-list {
    border: 1px
}
.guild-list th {
    background-color: rgba(138, 43, 226, 0.9)
}
.guild-list .table-heading {
    height: 30px
}
.guild-list .guild-logo {
    width: 10%;
    text-align: center;
    padding: 5px
}
.guild-list .name {
    width: 55%
}
.guild-list .view {
    text-align: center;
    padding: 5px;
    width: 15%
}
.guild-list tr:nth-child(2n) {
    background: #dbe2e4
}
.guild-list tr:nth-child(2n-1) {
    background: #c5d0d3
}
.guild-list td {
    height: 25px
}
.guild-list {
    border: 1px
}
.guild-list th {
    background-color: rgba(138, 43, 226, 0.9)
}
.guild-show-list .table-heading {
    height: 30px
}
.guild-show-list .guild-logo {
    width: 10%;
    text-align: center;
    padding: 5px
}
.guild-show-list .name {
    width: 55%
}
.guild-show-list .view {
    text-align: center;
    padding: 5px;
    width: 15%
}
.guild-show-list td {
    height: 25px
}
.guild-show-list {
    border: 1px
}
.guild-show-list th {
    background-color: rgba(138, 43, 226, 0.9)
}
.guild-show-list .even {
    background: #dbe2e4
}
.guild-show-list .odd {
    background: #c5d0d3
}
.death-list,
th,
td {
    padding-left: 5px
}
.create-guild th {
    background-color: rgba(138, 43, 226, 0.9)
}
.create-guild td {
    height: 30px;
    padding: 7px
}
.create-guild th {
    padding: 6px
}
.create-guild tr .header {
    height: 20px
}
.create-guild tr:nth-child(2n) {
    background: #dbe2e4
}
.guild-information .guild-name {
    font-size: 25px;
    font-weight: 700
}
.guild-information {
    padding-left: 30px
}
#comment {
    max-width: 80%;
    width: 80%
}
.help-block {
    color: red
}
.gunz-table {
    border-collapse: collapse
}
.gunz-table,
th,
td {
    border-collapse: collapse;
    border: 1px solid #efedef;
    padding-left: 5px
}
.gunz-table td {
    height: 30px
}
.gunz-table tr:nth-child(2n) {
    background: #dbe2e4
}
.gunz-table tr:nth-child(2n-1) {
    background: #c5d0d3
}
.gunz-table th {
    background-color: rgba(138, 43, 226, 0.9);
    border: none
}
.gunz-table .gunz-table-head td {
    font-weight: 700;
    text-align: center
}
.gunz-table .gunz-table-centered {
    text-align: center
}
.forum-table {
    border-collapse: collapse
}
.forum-table,
th,
td {
    border-collapse: collapse;
    border: 1px solid #efedef;
    padding-left: 5px
}
.forum-table td {
    height: 30px
}
.forum-table .even {
    background: #dbe2e4
}
.forum-table .odd {
    background: #c5d0d3
}
.forum-table th {
    background-color: rgba(138, 43, 226, 0.9);
    border: none
}
.forum-table .forum-post {
    height: 150px
}
.forum-table .post-author {
    vertical-align: top;
    width: 30%
}
.forum-table .post-text {
    vertical-align: top;
    width: 70%
}
.forum-table .post-info {
    vertical-align: top;
    height: 50px
}
.forum-pages {
    text-align: center;
    font-size: 15px
}
.borderless td,
.borderless th {
    border: none
}
.btn-margin {
    margin-top: 5px!important;
    margin-left: 5px!important;
    margin-bottom: 5px!important
}

.outfitter-container {
  width: 64px;
  height: 64px;
  position: relative;
  margin-left: -24px;
  margin-top: -23px;
}

.Table30 {
  padding: 2px;
  background: rgba(30, 15, 45, 0.65);
  border-spacing: 0;
  margin: 0 6px 6px 0;
  border: 1px solid rgba(20, 10, 30, 0.85) !important;
  -webkit-box-shadow: 2px 2px 5px 0 rgb(74, 151, 228);
  -moz-box-shadow: 2px 2px 5px 0 rgb(74, 151, 228);
  box-shadow: 2px 2px 5px 0 rgb(74, 151, 228);
  float: left;
}

.Table30 td {
  padding: 4px;
}

.progress-bar {
  font-size: 11px;
  line-height: 16px;
}

.progress {
  height: 18px;
  margin-bottom: 0;
  border: 1px solid;
}

.SkillIcon {
  width: 40px;
  border: 2px solid rgba(20, 10, 30, 0.85) !important;
  border-radius: 5px;
  overflow: hidden;
}

.CharItems {
  width: 32px;
  margin: 3px;
}

/* ============================================ */
/* TELARA THEME - POPRAWKI I ROZSZERZENIA */
/* Dodane: $(date +%Y-%m-%d) */
/* ============================================ */

/* NAPRAWA CONTENT-WRAPPER - rozciÄ…ganie do peĹ‚nej wysokoĹ›ci */
body .content .container .content-wrapper {
    min-height: 100%;
}

body .content .container .content-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

/* Poprawki dla stopki w content-wrapper */
body .content .container .content-wrapper .centered.small {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(230, 213, 184, 0.08);
    clear: both;
}

/* Poprawki dla tabel */
.table-content {
    margin-bottom: 0;
}

.table-content tbody tr:last-child td {
    border-bottom: none;
}

/* Poprawki dla zakĹ‚adek Stats */
.nav-tabs > li > a {
    cursor: pointer;
}

.tab-content {
    padding-top: 15px;
}

/* Poprawki dla Latest Posts */
.box.latest-posts .table td {
    vertical-align: middle;
    padding: 8px;
}

.box.latest-posts .table tr {
    transition: background-color 0.2s;
}

.box.latest-posts .table tr:hover {
    background-color: #f5f5f5;
}

/* Poprawki dla Top Frag */
#topfrag .table td {
    vertical-align: middle;
}

/* Poprawa czytelnoĹ›ci linkĂłw */
.box-content a {
    color: rgba(138, 43, 226, 0.9);
    text-decoration: none;
}

.box-content a:hover {
    color: rgba(75, 0, 130, 0.8);
    text-decoration: underline;
}

/* Poprawki dla formularzy */
.form-control:focus {
    border-color: rgba(138, 43, 226, 0.9);
    box-shadow: 0 0 8px rgba(90, 170, 215, 0.6);
}

/* Poprawki dla przyciskĂłw */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================ */
/* RESPONSIVE DESIGN - MEDIA QUERIES */
/* ============================================ */

@media (max-width: 1200px) {
    .container {
        width: 100% !important;
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    body .logo {
        height: 100px;
        background-size: contain;
    }
    
    .navbar-nav {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .col-xs-8, 
    .col-xs-4 {
        width: 100%;
        padding: 0;
    }
    
    body .content .container .main-content,
    body .content .container .right-panel {
        padding: 10px;
    }
    
    body .content .container .content-wrapper {
        padding: 15px;
    }
    
    .status-bar .item {
        font-size: 12px;
        padding: 5px;
    }
    
    .navbar-form {
        margin: 10px 0;
    }
    
    body .content .container .corner-top-left,
    body .content .container .corner-top-right {
        display: none;
    }
}

/* ============================================ */
/* NEWS TICKER & NEWS STYLING - GUNZODUS STYLE */
/* Dodane: 2026-01-17 */
/* ============================================ */

/* News Ticker Header */
.news-ticker-header {
    background: linear-gradient(to bottom, rgba(138, 43, 226, 0.9) 0%, rgba(138, 43, 226, 0.95) 100%);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-family: 'Bebas Neue Bold', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* News Ticker Container */
.news-ticker-container {
    background: #ffffff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    padding: 0;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* News Ticker Items */
.news-ticker-item {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(30, 15, 45, 0.65);
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
    font-family: Arial, sans-serif;
}

.news-ticker-item:last-child {
    border-bottom: none;
}

.news-ticker-item:hover {
    background-color: rgba(230, 213, 184, 0.08);
}

/* Ticker Date */
.ticker-date {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    min-width: 100px;
    margin-right: 15px;
}

/* Ticker Title */
.ticker-title {
    font-weight: bold;
    color: rgba(75, 0, 130, 0.8);
    margin-right: 8px;
    font-size: 14px;
}

/* Ticker Content */
.ticker-content {
    color: #555;
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

/* Ticker Icon/Badge */
.ticker-icon {
    margin-left: auto;
    width: 20px;
    height: 20px;
    background-color: rgba(138, 43, 226, 0.95);
    border-radius: 3px;
    flex-shrink: 0;
}

/* News Ticker Archive Link */
.news-ticker-archive {
    padding: 12px 20px;
    text-align: left;
    background-color: rgba(230, 213, 184, 0.08);
    border-radius: 0 0 5px 5px;
}

.news-ticker-archive a {
    color: rgba(138, 43, 226, 0.9);
    font-style: italic;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-ticker-archive a:hover {
    color: rgba(138, 43, 226, 0.9);
    text-decoration: underline;
}

/* ============================================ */
/* NEWS BOX STYLING - GUNZODUS STYLE */
/* ============================================ */

/* News Header (Title + Date) */
.news-header {
    background: linear-gradient(to bottom, rgba(30, 15, 45, 0.65) 0%, #d8e0e3 100%);
    padding: 20px 25px;
    border-bottom: 1px solid #ccc;
}

.news-header h3 {
    font-family: 'Bebas Neue Bold', sans-serif;
    font-size: 26px;
    color: rgba(75, 0, 130, 0.8);
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-header .news-date {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #7f8c8d;
    text-align: right;
    margin-top: -5px;
}

/* News Content */
.news-content {
    background: #ffffff;
    padding: 25px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.news-content p {
    margin-bottom: 15px;
}

.news-content p:last-child {
    margin-bottom: 0;
}

/* News with Images */
.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* News Links */
.news-content a {
    color: rgba(138, 43, 226, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.news-content a:hover {
    color: rgba(138, 43, 226, 0.9);
    text-decoration: underline;
}

/* News Footer (Author, Comments) */
.news-footer {
    background: rgba(230, 213, 184, 0.08);
    padding: 15px 25px;
    border-top: 1px solid rgba(30, 15, 45, 0.65);
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #7f8c8d;
}

.news-footer .author {
    display: inline-block;
    margin-right: 20px;
}

.news-footer .author strong {
    color: rgba(75, 0, 130, 0.8);
    font-weight: 600;
}

.news-footer .comments {
    display: inline-block;
}

.news-footer .comments a {
    color: rgba(138, 43, 226, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-footer .comments a:hover {
    color: rgba(138, 43, 226, 0.9);
    text-decoration: underline;
}

/* Responsive adjustments dla tickerĂłw */
@media (max-width: 768px) {
    .news-ticker-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ticker-date {
        margin-bottom: 5px;
    }
    
    .ticker-icon {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .news-header h3 {
        font-size: 22px;
    }
}

/* ============================================ */
/* NADPISANIE DOMYĹšLNYCH STYLĂ“W NEWSĂ“W */
/* ============================================ */

/* Ukryj stare style newsĂłw */
body .content .container .main-content .news {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
}

/* Indywidualne boksy newsĂłw */
body .content .container .main-content .news.news-item {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Wrapper dla wszystkich newsĂłw */
.news-wrapper .news {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Stare tabele z newsĂłw - ukryj */
.news table {
    display: none;
}

/* ============================================ */
/* ROZWIJANIE TICKERĂ“W */
/* ============================================ */

/* Ticker ktĂłry moĹĽna rozwinÄ…Ä‡ */
.news-ticker-item.expandable {
    cursor: pointer;
    position: relative;
}

.news-ticker-item.expandable:hover {
    background-color: #e8f4f8;
}

/* Ticker po rozwiniÄ™ciu */
.news-ticker-item.expanded {
    background-color: #f0f8ff;
}

.news-ticker-item.expanded .ticker-content {
    white-space: normal;
    line-height: 1.6;
}

/* Dodaj ikonÄ™ wskazujÄ…cÄ… ĹĽe moĹĽna rozwinÄ…Ä‡ */
.news-ticker-item.expandable::after {
    content: "â–Ľ";
    position: absolute;
    right: 50px;
    color: rgba(138, 43, 226, 0.9);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.news-ticker-item.expanded::after {
    content: "â–˛";
}

/* Animacja przejĹ›cia */
.news-ticker-item {
    transition: all 0.3s ease;
}

.ticker-content {
    transition: all 0.3s ease;
}

/* Tooltip dla tickerĂłw ktĂłre moĹĽna rozwinÄ…Ä‡ */
.news-ticker-item.expandable {
    position: relative;
}

.news-ticker-item.expandable:hover::before {
    content: "Click to expand";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 0.3s ease 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ============================================ */
/* FIX DLA WYĹšWIETLANIA NEWSĂ“W */
/* ============================================ */

/* Wrapper dla wszystkich newsĂłw */
.news-wrapper {
    width: 100%;
}

/* KaĹĽdy news osobno */
.news-wrapper > div {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* ============================================ */
/* ULEPSZONE STYLE NEWSĂ“W - GUNZODUS PREMIUM */
/* ============================================ */

/* Pojedynczy news */
.news-article {
    background: #ffffff;
    border: 1px solid #d0d7dd;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-article:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* News Header */
.news-header {
    background: linear-gradient(135deg, rgba(30, 15, 45, 0.65) 0%, #d8e2e6 100%);
    padding: 25px 30px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
}

.news-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.news-header h3 {
    font-family: 'Bebas Neue Bold', sans-serif;
    font-size: 28px;
    color: rgba(75, 0, 130, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    flex: 1;
    line-height: 1.2;
}

.news-date {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 12px;
    border-radius: 4px;
    margin-left: 15px;
    white-space: nowrap;
}

/* News Meta (Author + Time) */
.news-meta {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(195, 207, 213, 0.5);
}

.news-author,
.news-time {
    font-size: 13px;
    color: #5a6c7d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-icon,
.time-icon {
    font-style: normal;
    opacity: 0.7;
}

/* News Content */
.news-content {
    background: #ffffff;
    padding: 30px;
    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(75, 0, 130, 0.8);
}

.news-content p {
    margin-bottom: 18px;
}

.news-content p:last-child {
    margin-bottom: 0;
}

/* Formatting wewnÄ…trz contentu */
.news-content strong,
.news-content b {
    color: rgba(75, 0, 130, 0.8);
    font-weight: 600;
}

.news-content em,
.news-content i {
    font-style: italic;
    color: #34495e;
}

.news-content a {
    color: rgba(138, 43, 226, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.news-content a:hover {
    color: rgba(138, 43, 226, 0.9);
    border-bottom-color: rgba(138, 43, 226, 0.9);
}

/* Obrazki w newsach */
.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Listy w newsach */
.news-content ul,
.news-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.news-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Cytaty w newsach */
.news-content blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background: rgba(230, 213, 184, 0.08);
    border-left: 4px solid rgba(138, 43, 226, 0.9);
    font-style: italic;
    color: #5a6c7d;
}

/* News Footer */
.news-footer {
    background: rgba(230, 213, 184, 0.08);
    padding: 18px 30px;
    border-top: 1px solid rgba(30, 15, 45, 0.65);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.news-footer-left {
    flex: 1;
}

.footer-author {
    color: #7f8c8d;
}

.footer-author strong {
    color: rgba(75, 0, 130, 0.8);
    font-weight: 600;
}

.news-footer-right {
    display: flex;
    gap: 15px;
}

.comments-link {
    color: rgba(138, 43, 226, 0.9);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(90, 170, 215, 0.1);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.comments-link:hover {
    background: rgba(90, 170, 215, 0.2);
    color: rgba(138, 43, 226, 0.9);
    transform: translateX(3px);
}

.comment-icon {
    font-style: normal;
}

/* ============================================ */
/* RESPONSYWNOĹšÄ† */
/* ============================================ */

@media (max-width: 768px) {
    .news-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-date {
        margin-left: 0;
    }
    
    .news-header h3 {
        font-size: 22px;
    }
    
    .news-content {
        padding: 20px;
        font-size: 14px;
    }
    
    .news-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================ */
/* DODATKOWE ULEPSZENIA */
/* ============================================ */

/* Badge dla "NEW" */
.news-article.new-post::before {
    content: "NEW";
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
}

.news-article {
    position: relative;
}

/* Separator miÄ™dzy newsami */
.news-wrapper > .news-article:not(:last-child) {
    margin-bottom: 30px;
}

/* Loading animation dla obrazkĂłw */
.news-content img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.news-content img[src] {
    animation: none;
    background: none;
}

/* Hover effect dla caĹ‚ego newsa */
.news-article {
    cursor: default;
}

/* Print styles */
@media print {
    .news-footer,
    .comments-link {
        display: none;
    }
    
    .news-article {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}

/* Dark Fantasy Input Styles */
input[type="text"],
input[type="password"],
input[type="email"],
.form-control {
    background: rgba(15, 10, 25, 0.7) !important;
    border: 1px solid rgba(138, 43, 226, 0.4) !important;
    color: #e6d5b8 !important;
    padding: 8px 12px;
    border-radius: 4px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
.form-control:focus {
    background: rgba(20, 15, 35, 0.8) !important;
    border-color: rgba(138, 43, 226, 0.6) !important;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4) !important;
    outline: none !important;
}

/* Buttons Dark Fantasy */
.btn-primary,
button[type="submit"] {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.9) 0%, rgba(106, 13, 173, 0.9) 100%) !important;
    border: 1px solid rgba(138, 43, 226, 0.5) !important;
    color: #e6d5b8 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.btn-primary:hover,
button[type="submit"]:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9) 0%, rgba(106, 13, 173, 0.9) 100%) !important;
    border-color: rgba(138, 43, 226, 0.6) !important;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.btn-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(22, 163, 74, 0.9) 100%) !important;
    border: 1px solid rgba(34, 197, 94, 0.5) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.btn-info {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%) !important;
    border: 1px solid rgba(168, 85, 247, 0.5) !important;
    color: #e6d5b8 !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}
/* ========================================
   XANTABRA PREMIUM DARK FANTASY ENHANCEMENTS
   ======================================== */

/* ===== ENHANCED BOX HEADERS ===== */
body .content .container .main-content .box .head,
body .content .container .right-panel .box .head {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.95) 0%, rgba(106, 13, 173, 0.95) 100%) !important;
    color: #1a0a2e !important;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8), 0 2px 4px rgba(0,0,0,0.9), 0 0 40px rgba(138, 43, 226, 0.4) !important;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.6), inset 0 1px 0 rgba(255,255,255,0.3), 0 4px 0 rgba(75, 0, 130, 0.5) !important;
    border-bottom: 2px solid rgba(138, 43, 226, 0.5) !important;
    position: relative;
    overflow: hidden;
}

/* Gold shine animation effect */
body .content .container .main-content .box .head::before,
body .content .container .right-panel .box .head::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;
}

body .content .container .main-content .box .head:hover::before,
body .content .container .right-panel .box .head:hover::before {
    left: 100%;
}

/* ===== ENHANCED BOX CONTENT ===== */
body .content .container .main-content .box .box-content,
body .content .container .right-panel .box .box-content {
    background: rgba(20, 10, 35, 0.92) !important;
    border: 1px solid rgba(138, 43, 226, 0.5) !important;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.4), inset 0 0 50px rgba(0, 0, 0, 0.6), 0 8px 16px rgba(0, 0, 0, 0.4) !important;
    position: relative;
}

/* Purple glow effect on box content */
body .content .container .main-content .box .box-content::before,
body .content .container .right-panel .box .box-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== ENHANCED TEXT STYLING ===== */
body .content .container .main-content .box .box-content,
body .content .container .right-panel .box .box-content {
    color: #e6d5b8 !important;
}

body .content .container .main-content .box .box-content strong,
body .content .container .right-panel .box .box-content strong {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* ===== LINKS - GOLD WITH GLOW ===== */
a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(138, 43, 226, 0.4);
}

a:hover {
    color: #FFA500 !important;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.8), 0 0 25px rgba(138, 43, 226, 0.4);
}

/* ===== ENHANCED INPUTS ===== */
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select,
.form-control {
    background: rgba(10, 5, 20, 0.8) !important;
    border: 2px solid rgba(138, 43, 226, 0.5) !important;
    color: #e6d5b8 !important;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(138, 43, 226, 0.2);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus,
.form-control:focus {
    background: rgba(15, 10, 30, 0.9) !important;
    border-color: rgba(138, 43, 226, 0.7) !important;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6), 0 0 30px rgba(138, 43, 226, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.6) !important;
    outline: none !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(230, 213, 184, 0.4) !important;
}

/* ===== PREMIUM BUTTONS ===== */
.btn,
button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    border: none !important;
}

/* Primary Button - Purple */
.btn-primary,
button[type="submit"] {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.95) 0%, rgba(106, 13, 173, 0.95) 100%) !important;
    border: 2px solid rgba(138, 43, 226, 0.6) !important;
    color: #e6d5b8 !important;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover,
button[type="submit"]:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.95) 0%, rgba(106, 13, 173, 0.95) 100%) !important;
    border-color: rgba(138, 43, 226, 0.7) !important;
    color: #1a0a2e !important;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.7), 0 6px 12px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* Success Button - Green */
.btn-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(22, 163, 74, 0.95) 100%) !important;
    border: 2px solid rgba(34, 197, 94, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
}

.btn-success:hover {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.7), 0 6px 12px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* Info Button - Light Purple */
.btn-info {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%) !important;
    border: 2px solid rgba(168, 85, 247, 0.6) !important;
    color: #e6d5b8 !important;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
}

.btn-info:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.7), 0 6px 12px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* Button shine effect */
.btn::before,
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before,
button:hover::before {
    left: 100%;
}

/* ===== TABLES ===== */
table {
    background: rgba(20, 10, 35, 0.6) !important;
    border: 1px solid rgba(138, 43, 226, 0.4);
}

table thead tr {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.8) 0%, rgba(106, 13, 173, 0.8) 100%) !important;
    color: #ffffff !important;
}

table thead th {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.6);
    border-bottom: 2px solid rgba(138, 43, 226, 0.4) !important;
}

table tbody tr {
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

table tbody tr:hover {
    background: rgba(138, 43, 226, 0.15) !important;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

table tbody td {
    color: #e6d5b8 !important;
}

/* ===== NEWS TICKER ENHANCEMENTS ===== */
.news-ticker-header {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.95) 0%, rgba(106, 13, 173, 0.95) 100%) !important;
    color: #1a0a2e !important;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8), 0 2px 4px rgba(0,0,0,0.9) !important;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.6), inset 0 1px 0 rgba(255,255,255,0.3) !important;
    border-bottom: 2px solid rgba(138, 43, 226, 0.5);
}

.news-ticker-container {
    background: rgba(20, 10, 35, 0.92) !important;
    border: 1px solid rgba(138, 43, 226, 0.5);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.4), inset 0 0 50px rgba(0, 0, 0, 0.6);
}

.news-ticker-item {
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.news-ticker-item:hover {
    background: rgba(138, 43, 226, 0.15);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.ticker-date {
    color: #c084fc !important;
}

.ticker-title {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(138, 43, 226, 0.4);
}

.news-ticker-archive a {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* ===== STATS ENHANCEMENTS ===== */
.record .title {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.record .input-value {
    color: #e6d5b8 !important;
}

/* Level badges */
.badge,
.label {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.6);
}

/* ===== WELCOME BOX ENHANCEMENTS ===== */
.box-content .alert-info {
    background: rgba(60, 30, 90, 0.6) !important;
    border-left: 4px solid rgba(138, 43, 226, 0.8) !important;
    color: #e6d5b8 !important;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

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

::-webkit-scrollbar-track {
    background: rgba(10, 5, 20, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.8) 0%, rgba(75, 0, 130, 0.8) 100%);
    border-radius: 6px;
    border: 1px solid rgba(138, 43, 226, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.9) 0%, rgba(106, 13, 173, 0.9) 100%);
}

/* ===== MENU ENHANCEMENTS ===== */
body .menu nav {
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6), inset 0 1px 0 rgba(138, 43, 226, 0.4), 0 6px 0 rgba(20, 10, 30, 0.9) !important;
}

body .menu nav a {
    transition: all 0.3s ease;
}

body .menu nav a:hover {
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.8);
    background: rgba(138, 43, 226, 0.15);
}

/* ===== STATUS BAR ===== */
body .status-bar {
    background: rgba(15, 10, 25, 0.95) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(138, 43, 226, 0.3);
}

body .status-bar .item {
    border-right: 1px solid rgba(138, 43, 226, 0.5) !important;
}

/* ===== TABS ===== */
.nav-tabs > li > a {
    background: rgba(20, 10, 35, 0.7) !important;
    border: 1px solid rgba(138, 43, 226, 0.4) !important;
    color: #e6d5b8 !important;
}

.nav-tabs > li.active > a,
.nav-tabs > li > a:hover {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.9) 0%, rgba(106, 13, 173, 0.9) 100%) !important;
    color: #ffffff !important;
    border-color: rgba(138, 43, 226, 0.6) !important;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
    body .content .container .main-content .box .head,
    body .content .container .right-panel .box .head {
        font-size: 20px;
        padding: 8px 12px;
    }
    
    input[type="text"],
    input[type="password"],
    .form-control {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ===== PREMIUM GLOW PULSE ANIMATION ===== */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(138, 43, 226, 0.6), 0 0 50px rgba(138, 43, 226, 0.3);
    }
}

body .content .container .main-content .box,
body .content .container .right-panel .box {
    animation: glow-pulse 4s ease-in-out infinite;
}

/* ===== TEXT SELECTION ===== */
::selection {
    background: rgba(138, 43, 226, 0.4);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(138, 43, 226, 0.4);
    color: #ffffff;
}
/* ========================================
   XANTABRA GLASSMORPHISM ENHANCEMENTS
   Modern Glass Effect with Visible Background
   ======================================== */

/* ===== GLASS EFFECT FOR MAIN BOXES ===== */
body .content .container .main-content .box .box-content,
body .content .container .right-panel .box .box-content {
    background: rgba(20, 10, 35, 0.35) !important; /* Much more transparent! */
    backdrop-filter: blur(6px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(6px) saturate(150%) !important;
    border: 1px solid rgba(138, 43, 226, 0.3) !important;
    box-shadow: 
        0 8px 32px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(138, 43, 226, 0.15) !important;
}

/* ===== GLASS EFFECT FOR CONTENT WRAPPER ===== */
body .content .container .content-wrapper {
    background: rgba(15, 10, 25, 0.25) !important; /* Much more transparent! */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 
        0 0 40px rgba(138, 43, 226, 0.4), 
        inset 0 0 80px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(138, 43, 226, 0.25) !important;
}

/* ===== BORDERFIX GLASS ===== */
body .content .container .borderfix {
    background: rgba(15, 10, 25, 0.25) !important; /* Transparent */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* ===== NEWS TICKER GLASS ===== */
.news-ticker-container {
    background: rgba(20, 10, 35, 0.35) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 
        0 8px 32px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ===== WELCOME BOX GLASS ===== */
body .content .container .main-content .box .box-content .alert-info,
body .content .container .main-content .box .box-content [style*="background"] {
    background: rgba(60, 30, 90, 0.25) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* ===== INPUTS GLASS EFFECT ===== */
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select,
.form-control {
    background: rgba(10, 5, 20, 0.4) !important; /* More transparent */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 2px solid rgba(138, 43, 226, 0.4) !important;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.3), 
        0 0 15px rgba(138, 43, 226, 0.15) !important;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus,
.form-control:focus {
    background: rgba(15, 10, 30, 0.5) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* ===== TABLES GLASS ===== */
table {
    background: rgba(20, 10, 35, 0.3) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

table tbody tr {
    background: rgba(30, 15, 45, 0.15) !important;
}

table tbody tr:nth-child(even) {
    background: rgba(40, 20, 55, 0.2) !important;
}

table tbody tr:hover {
    background: rgba(138, 43, 226, 0.15) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* ===== STATUS BAR GLASS ===== */
body .status-bar {
    background: rgba(15, 10, 25, 0.45) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3), 
        0 0 20px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ===== MENU GLASS (subtle) ===== */
body .menu nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* ===== ENHANCED GLASS BORDERS ===== */
body .content .container .main-content .box .box-content::after,
body .content .container .right-panel .box .box-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

/* ===== FROSTED GLASS OVERLAY ===== */
body .content .container .main-content .box .box-content::before {
    background: radial-gradient(
        ellipse at top left, 
        rgba(138, 43, 226, 0.08) 0%, 
        transparent 50%
    );
    mix-blend-mode: overlay;
}

/* ===== TEXT READABILITY ON GLASS ===== */
body .content .container .main-content .box .box-content,
body .content .container .right-panel .box .box-content {
    color: #e6d5b8 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.5);
}

body .content .container .main-content .box .box-content strong,
body .content .container .right-panel .box .box-content strong {
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(138, 43, 226, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.9);
}

/* ===== STATS TABLE GLASS ===== */
.record {
    background: rgba(30, 15, 45, 0.25) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* ===== BUTTONS - Keep solid for visibility ===== */
.btn,
button {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* ===== ENHANCE BACKGROUND VISIBILITY ===== */
body {
    /* Background bÄ™dzie widoczny przez wszystkie glass elements */
    background-attachment: fixed !important;
}

/* ===== GLASS SHIMMER EFFECT ===== */
@keyframes glass-shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

body .content .container .main-content .box .box-content::after,
body .content .container .right-panel .box .box-content::after {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    background-size: 200% 100%;
    animation: glass-shimmer 8s linear infinite;
}

/* ===== RESPONSIVE GLASS ===== */
@media (max-width: 768px) {
    /* Stronger blur on mobile for better readability */
    body .content .container .main-content .box .box-content,
    body .content .container .right-panel .box .box-content {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* ===== GLASS COMPATIBILITY FALLBACK ===== */
@supports not (backdrop-filter: blur(10px)) {
    /* Fallback for browsers without backdrop-filter support */
    body .content .container .main-content .box .box-content,
    body .content .container .right-panel .box .box-content {
        background: rgba(20, 10, 35, 0.85) !important;
    }
}
/* ========================================
   XANTABRA COMPLETE ORNAMENTAL BOXES
   Using box-content.png as box background
   ======================================== */

/* ===== BOX CONTENT WITH ORNAMENTAL FRAME ===== */
body .content .container .right-panel .box .box-content,
body .content .container .main-content .box .box-content {
    background: transparent !important;
    backdrop-filter: blur(6px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(6px) saturate(150%) !important;
    border: none !important;
    padding: 50px 30px 30px 30px !important;
    position: relative !important;
    min-height: 200px !important;
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.6),
        0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

/* ===== BOX STRUCTURE (remove default borders) ===== */
body .content .container .right-panel .box,
body .content .container .main-content .box {
    border: none !important;
    background: transparent !important;
    margin-bottom: 20px !important;
}

/* ===== BOX HEADER ON TOP OF ORNAMENTAL FRAME ===== */
body .content .container .right-panel .box .head,
body .content .container .main-content .box .head {
     
                linear-gradient(135deg, rgba(75, 0, 130, 0.95) 0%, rgba(106, 13, 173, 0.95) 100%) !important;
    color: #ffffff !important;
    text-align: center;
    line-height: 68px !important;
    height: 50px !important;
    padding: 0 20px !important;
    font-family: 'Bebas Neue Bold', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    text-shadow: 
        0 0 25px rgba(138, 43, 226, 0.9), 
        0 3px 6px rgba(0, 0, 0, 1.0),
        0 0 50px rgba(138, 43, 226, 0.5) !important;
    border: none !important;
    border-radius: 0 !important;
    position: relative !important;
    z-index: 10 !important;
    margin-bottom: -10px !important;
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.7),
        0 5px 20px rgba(0, 0, 0, 0.6) !important;
}

/* ===== TEXT READABILITY ON ORNAMENTAL BACKGROUND ===== */
body .content .container .right-panel .box .box-content,
body .content .container .main-content .box .box-content {
    color: #e6d5b8 !important;
}

body .content .container .right-panel .box .box-content strong,
body .content .container .main-content .box .box-content strong {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5), 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* ===== INPUTS ON ORNAMENTAL BACKGROUND ===== */
body .content .container .right-panel .box .box-content input[type="text"],
body .content .container .right-panel .box .box-content input[type="password"],
body .content .container .main-content .box .box-content input[type="text"],
body .content .container .main-content .box .box-content input[type="password"] {
    background: rgba(10, 5, 20, 0.7) !important;
    border: 2px solid rgba(138, 43, 226, 0.6) !important;
    color: #e6d5b8 !important;
    padding: 10px 14px !important;
    border-radius: 4px !important;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(138, 43, 226, 0.3) !important;
}

body .content .container .right-panel .box .box-content input:focus,
body .content .container .main-content .box .box-content input:focus {
    background: rgba(15, 10, 30, 0.8) !important;
    border-color: rgba(138, 43, 226, 0.8) !important;
    box-shadow: 
        0 0 25px rgba(138, 43, 226, 0.6),
        0 0 35px rgba(138, 43, 226, 0.4),
        inset 0 2px 8px rgba(0, 0, 0, 0.7) !important;
    outline: none !important;
}

/* ===== BUTTONS ON ORNAMENTAL BACKGROUND ===== */
body .content .container .right-panel .box .box-content .btn,
body .content .container .right-panel .box .box-content button,
body .content .container .main-content .box .box-content .btn,
body .content .container .main-content .box .box-content button {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.95) 0%, rgba(106, 13, 173, 0.95) 100%) !important;
    border: 2px solid rgba(138, 43, 226, 0.7) !important;
    color: #e6d5b8 !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 0 20px rgba(138, 43, 226, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.5) !important;
}

body .content .container .right-panel .box .box-content .btn:hover,
body .content .container .right-panel .box .box-content button:hover,
body .content .container .main-content .box .box-content .btn:hover,
body .content .container .main-content .box .box-content button:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.95) 0%, rgba(106, 13, 173, 0.95) 100%) !important;
    border-color: rgba(138, 43, 226, 0.8) !important;
    color: #1a0a2e !important;
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.7),
        0 6px 15px rgba(0, 0, 0, 0.6) !important;
    transform: translateY(-2px);
}

/* ===== TABLES ON ORNAMENTAL BACKGROUND ===== */
body .content .container .right-panel .box .box-content table,
body .content .container .main-content .box .box-content table {
    background: rgba(10, 5, 20, 0.4) !important;
    border: 1px solid rgba(138, 43, 226, 0.4) !important;
}

body .content .container .right-panel .box .box-content table thead tr,
body .content .container .main-content .box .box-content table thead tr {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.8) 0%, rgba(106, 13, 173, 0.8) 100%) !important;
}

body .content .container .right-panel .box .box-content table tbody tr,
body .content .container .main-content .box .box-content table tbody tr {
    background: rgba(20, 10, 35, 0.3) !important;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

body .content .container .right-panel .box .box-content table tbody tr:hover,
body .content .container .main-content .box .box-content table tbody tr:hover {
    background: rgba(138, 43, 226, 0.2) !important;
}

/* ===== LINKS ON ORNAMENTAL BACKGROUND ===== */
body .content .container .right-panel .box .box-content a,
body .content .container .main-content .box .box-content a {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

body .content .container .right-panel .box .box-content a:hover,
body .content .container .main-content .box .box-content a:hover {
    color: #FFA500 !important;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
}

/* ===== WELCOME BOX SPECIAL STYLING ===== */
body .content .container .main-content .box .box-content .alert-info {
    background: rgba(60, 30, 90, 0.3) !important;
    border-left: 4px solid rgba(138, 43, 226, 0.8) !important;
    color: #e6d5b8 !important;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
    padding: 15px !important;
}

/* ===== STATS/RECORD BOXES ===== */
body .content .container .right-panel .box .box-content .record,
body .content .container .main-content .box .box-content .record {
    background: rgba(20, 10, 35, 0.4) !important;
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 10px;
}

body .content .container .right-panel .box .box-content .record .title,
body .content .container .main-content .box .box-content .record .title {
    color: #c084fc !important;
}

body .content .container .right-panel .box .box-content .record .input-value,
body .content .container .main-content .box .box-content .record .input-value {
    color: #ffffff !important;
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body .content .container .right-panel .box .box-content,
    body .content .container .main-content .box .box-content {
        padding: 40px 20px 20px 20px !important;
        min-height: 150px !important;
    }
    
    body .content .container .right-panel .box .head,
    body .content .container .main-content .box .head {
        font-size: 18px !important;
        height: 45px !important;
        line-height: 45px !important;
    }
}

/* ===== HOVER EFFECT ON ENTIRE BOX ===== */
body .content .container .right-panel .box:hover .box-content,
body .content .container .main-content .box:hover .box-content {
    box-shadow: 
        0 0 40px rgba(138, 43, 226, 0.8),
        0 10px 40px rgba(0, 0, 0, 0.6) !important;
}

/* ===== ALTERNATIVE: No blur on ornamental (if you prefer) ===== */
/*
body .content .container .right-panel .box .box-content,
body .content .container .main-content .box .box-content {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
*/
/* ========================================
   FIX: NAPISY WEWNÄ„TRZ ORNAMENTAL BOX
   Header musi byÄ‡ INSIDE box-content
   ======================================== */

/* ===== REMOVE SEPARATE HEAD OUTSIDE BOX ===== */
body .content .container .right-panel .box > .head,
body .content .container .main-content .box > .head {
    display: none !important;
}

/* ===== BOX-CONTENT WITH INTEGRATED HEADER ===== */
body .content .container .right-panel .box .box-content,
body .content .container .main-content .box .box-content {
    background: transparent !important;
    backdrop-filter: blur(6px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(6px) saturate(150%) !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    min-height: 200px !important;
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.6),
        0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

/* ===== HEADER INSIDE BOX-CONTENT (using ::before) ===== */
body .content .container .right-panel .box .box-content::before,
body .content .container .main-content .box .box-content::before {
    content: attr(data-title);
    display: block;
    
    /* Gradient background: */
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.85) 0%, 
        rgba(106, 13, 173, 0.85) 50%,
        rgba(75, 0, 130, 0.85) 100%);
    
    /* Positioning: */
    width: 100%;
    height: 50px;
    line-height: 50px;
    
    /* Text styling: */
    color: #ffffff;
    text-align: center;
    font-family: 'Bebas Neue Bold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    
    text-shadow: 
        0 0 25px rgba(138, 43, 226, 0.9), 
        0 3px 6px rgba(0, 0, 0, 1.0),
        0 0 50px rgba(138, 43, 226, 0.5),
        0 2px 0 rgba(0, 0, 0, 0.8);
    
    /* Bottom border: */
    border-bottom: 2px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    
    margin-bottom: 0;
}

/* ===== ACTUAL CONTENT AREA (inside box-content) ===== */
body .content .container .right-panel .box .box-content > *,
body .content .container .main-content .box .box-content > * {
    padding: 20px 30px;
}

/* ===== ALTERNATIVE: Real element instead of ::before ===== */
/* If you can add HTML, use this instead: */

body .content .container .right-panel .box .box-content .box-header,
body .content .container .main-content .box .box-content .box-header {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.85) 0%, 
        rgba(106, 13, 173, 0.85) 50%,
        rgba(75, 0, 130, 0.85) 100%);
    
    height: 50px;
    line-height: 50px;
    text-align: center;
    
    color: #ffffff;
    font-family: 'Bebas Neue Bold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    
    text-shadow: 
        0 0 25px rgba(138, 43, 226, 0.9), 
        0 3px 6px rgba(0, 0, 0, 1.0),
        0 0 50px rgba(138, 43, 226, 0.5);
    
    border-bottom: 2px solid rgba(138, 43, 226, 0.4);
    margin: 0;
    padding: 0 20px;
}

body .content .container .right-panel .box .box-content .box-body,
body .content .container .main-content .box .box-content .box-body {
    padding: 20px 30px 30px 30px;
}

/* ===== NEWS TICKER SPECIFIC ===== */
body .content .container .main-content .box.news-ticker-box .box-content::before {
    height: 55px;
    line-height: 55px;
    font-size: 24px;
}

body .content .container .main-content .box.news-ticker-box .box-content .box-header {
    height: 55px;
    line-height: 55px;
    font-size: 24px;
}

/* ===== BOX WRAPPER ===== */
body .content .container .right-panel .box,
body .content .container .main-content .box {
    border: none !important;
    background: transparent !important;
    margin-bottom: 20px !important;
    overflow: visible !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body .content .container .right-panel .box .box-content::before,
    body .content .container .right-panel .box .box-content .box-header {
        height: 45px;
        line-height: 45px;
        font-size: 18px;
    }
    
    body .content .container .main-content .box .box-content::before,
    body .content .container .main-content .box .box-content .box-header {
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
}
/* ========================================
   NEWS TICKER - XANTABRA ORNAMENTAL STYLE
   Dopasowany do ornamental theme
   ======================================== */

/* ===== NEWS TICKER BOX (caĹ‚oĹ›Ä‡ z ornamental frame) ===== */
body .content .container .main-content .box.news-ticker-box {
    margin-bottom: 30px;
    overflow: visible;
}

/* ===== NEWS TICKER HEADER (ornamental) ===== */
body .content .container .main-content .box.news-ticker-box .head,
.news-ticker-header {
     
                linear-gradient(135deg, rgba(75, 0, 130, 0.95) 0%, rgba(106, 13, 173, 0.95) 100%) !important;
    color: #ffffff !important;
    text-align: center;
    height: 70px !important;
    min-height: 70px !important;
    padding: 25px 20px 20px 20px !important;
    font-family: 'Bebas Neue Bold', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    text-shadow: 
        0 0 25px rgba(138, 43, 226, 0.9), 
        0 3px 6px rgba(0, 0, 0, 1.0),
        0 0 50px rgba(138, 43, 226, 0.5) !important;
    border: none !important;
    border-radius: 0 !important;
    margin-bottom: -10px !important;
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.7),
        0 5px 20px rgba(0, 0, 0, 0.6) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: normal !important;
}

/* ===== NEWS TICKER CONTAINER (ornamental content frame) ===== */
body .content .container .main-content .box.news-ticker-box .box-content,
.news-ticker-container {
    background: transparent !important;
    backdrop-filter: blur(6px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(6px) saturate(150%) !important;
    border: none !important;
    padding: 50px 30px 30px 30px !important;
    position: relative !important;
    min-height: 200px !important;
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.6),
        0 8px 32px rgba(0, 0, 0, 0.5) !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

/* ===== NEWS TICKER ITEMS ===== */
.news-ticker-item {
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    font-family: Arial, sans-serif !important;
    background: rgba(20, 10, 35, 0.3) !important;
    margin-bottom: 10px !important;
    border-radius: 4px !important;
}

.news-ticker-item:last-child {
    border-bottom: none !important;
}

.news-ticker-item:hover {
    background: rgba(138, 43, 226, 0.2) !important;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4) !important;
    transform: translateX(5px);
}

/* ===== TICKER DATE ===== */
.ticker-date {
    font-size: 13px !important;
    color: #c084fc !important;
    font-weight: 600 !important;
    min-width: 110px !important;
    margin-right: 15px !important;
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 1px !important;
}

/* ===== TICKER TITLE ===== */
.ticker-title {
    font-weight: bold !important;
    color: #ffffff !important;
    margin-right: 10px !important;
    font-size: 15px !important;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5) !important;
}

/* ===== TICKER CONTENT ===== */
.ticker-content {
    color: #e6d5b8 !important;
    flex: 1 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
}

/* ===== TICKER ICON/BADGE ===== */
.ticker-icon {
    margin-left: auto !important;
    width: 24px !important;
    height: 24px !important;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9) 0%, rgba(106, 13, 173, 0.9) 100%) !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5) !important;
}

/* ===== NEWS TICKER ARCHIVE LINK ===== */
.news-ticker-archive {
    padding: 15px 20px !important;
    text-align: left !important;
    background: rgba(60, 30, 90, 0.3) !important;
    border-radius: 4px !important;
    margin-top: 10px !important;
    border: 1px solid rgba(138, 43, 226, 0.3) !important;
}

.news-ticker-archive a {
    color: #ffffff !important;
    font-style: italic !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5) !important;
}

.news-ticker-archive a:hover {
    color: #FFA500 !important;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8) !important;
    text-decoration: none !important;
}

/* ===== RESPONSIVE - NEWS TICKER ===== */
@media (max-width: 768px) {
    body .content .container .main-content .box.news-ticker-box .head,
    .news-ticker-header {
        height: 60px !important;
        padding: 20px 15px 17px 15px !important;
        font-size: 20px !important;
    }
    
    body .content .container .main-content .box.news-ticker-box .box-content,
    .news-ticker-container {
        padding: 40px 20px 20px 20px !important;
        min-height: 150px !important;
    }
    
    .news-ticker-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 12px 15px !important;
    }
    
    .ticker-date {
        min-width: auto !important;
        margin-bottom: 5px !important;
    }
    
    .ticker-icon {
        display: none !important;
    }
}

/* ===== ENHANCED HOVER EFFECTS ===== */
.news-ticker-item {
    position: relative;
    overflow: hidden;
}

.news-ticker-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.8) 0%, rgba(106, 13, 173, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-ticker-item:hover::before {
    opacity: 1;
}

/* ===== ALTERNATIVE: Without ornamental images (pure CSS) ===== */
/*
body .content .container .main-content .box.news-ticker-box .head {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.95) 0%, 
        rgba(106, 13, 173, 0.95) 100%) !important;
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-bottom: 3px solid rgba(138, 43, 226, 1.0);
}

body .content .container .main-content .box.news-ticker-box .box-content {
    background: rgba(20, 10, 35, 0.85) !important;
    border: 2px solid rgba(138, 43, 226, 0.4);
}
*/
/* ========================================
   FIX BOX-BODY PADDING
   Content byĹ‚ przykryty przez header gradient
   ======================================== */

/* ===== BOX-HEADER HEIGHT ===== */
body .content .container .right-panel .box .box-content .box-header,
body .content .container .main-content .box .box-content .box-header {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.85) 0%, 
        rgba(106, 13, 173, 0.85) 50%,
        rgba(75, 0, 130, 0.85) 100%);
    
    height: 50px !important;
    line-height: 50px !important;
    text-align: center;
    
    color: #ffffff;
    font-family: 'Bebas Neue Bold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    
    text-shadow: 
        0 0 25px rgba(138, 43, 226, 0.9), 
        0 3px 6px rgba(0, 0, 0, 1.0),
        0 0 50px rgba(138, 43, 226, 0.5);
    
    border-bottom: 2px solid rgba(138, 43, 226, 0.4);
    margin: 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ===== BOX-BODY PADDING (content area below header) ===== */
body .content .container .right-panel .box .box-content .box-body,
body .content .container .main-content .box .box-content .box-body {
    padding: 20px 30px 30px 30px !important;
    position: relative;
    z-index: 5;
    margin-top: 0 !important;
}

/* ===== BOX-CONTENT (ornamental frame) ===== */
body .content .container .right-panel .box .box-content,
body .content .container .main-content .box .box-content {
    background: transparent !important;
    backdrop-filter: blur(6px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(6px) saturate(150%) !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    min-height: 200px !important;
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.6),
        0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

/* ===== NEWS TICKER SPECIFIC ===== */
body .content .container .main-content .box.news-ticker-box .box-content .box-header {
    height: 55px !important;
    line-height: 55px !important;
    font-size: 24px !important;
}

body .content .container .main-content .box.news-ticker-box .box-content .box-body {
    padding: 20px 30px 30px 30px !important;
}

/* ===== MAKE SURE NO OVERLAP ===== */
body .content .container .right-panel .box .box-content > *:not(.box-header):not(.box-body),
body .content .container .main-content .box .box-content > *:not(.box-header):not(.box-body) {
    margin-top: 0 !important;
}

/* ===== TABLES INSIDE BOX-BODY ===== */
body .content .container .right-panel .box .box-content .box-body table,
body .content .container .main-content .box .box-content .box-body table {
    margin-top: 0 !important;
}

/* ===== FORMS/INPUTS INSIDE BOX-BODY ===== */
body .content .container .right-panel .box .box-content .box-body .form-group:first-child,
body .content .container .main-content .box .box-content .box-body .form-group:first-child {
    margin-top: 0 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body .content .container .right-panel .box .box-content .box-header {
        height: 45px !important;
        line-height: 45px !important;
        font-size: 18px !important;
    }
    
    body .content .container .main-content .box .box-content .box-header {
        height: 50px !important;
        line-height: 50px !important;
        font-size: 20px !important;
    }
    
    body .content .container .right-panel .box .box-content .box-body,
    body .content .container .main-content .box .box-content .box-body {
        padding: 15px 20px 20px 20px !important;
    }
}
/* ========================================
   BLUR EDGES - BOXES BLEND INTO BACKGROUND
   Soft blur on box edges for smooth integration
   ======================================== */

/* ===== BOX-CONTENT WITH EDGE BLUR ===== */
body .content .container .right-panel .box .box-content,
body .content .container .main-content .box .box-content {
    background: transparent !important;
    backdrop-filter: blur(6px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(6px) saturate(150%) !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    min-height: 200px !important;
    
    /* Soft shadow with blur for edge blending: */
    box-shadow: 
        0 0 40px rgba(138, 43, 226, 0.6),
        0 8px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(0, 0, 0, 0.3) !important;
    
    /* Edge blur effect using filter: */
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.4));
}

/* ===== ALTERNATIVE: Soft edges with pseudo-element ===== */
body .content .container .right-panel .box .box-content::after,
body .content .container .main-content .box .box-content::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: inherit;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/* ===== SOFT GLOW AROUND BOXES ===== */
body .content .container .right-panel .box,
body .content .container .main-content .box {
    position: relative;
    filter: drop-shadow(0 0 25px rgba(138, 43, 226, 0.5));
}

/* ===== EDGE FADE WITH GRADIENT MASK ===== */
body .content .container .right-panel .box .box-content::before,
body .content .container .main-content .box .box-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 70%,
        rgba(10, 5, 20, 0.3) 90%,
        rgba(10, 5, 20, 0.6) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* ===== ENSURE CONTENT STAYS ON TOP ===== */
body .content .container .right-panel .box .box-content .box-header,
body .content .container .main-content .box .box-content .box-header,
body .content .container .right-panel .box .box-content .box-body,
body .content .container .main-content .box .box-content .box-body {
    position: relative;
    z-index: 10;
}

/* ===== SOFT OUTER GLOW ===== */
@keyframes soft-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(138, 43, 226, 0.6));
    }
}

body .content .container .right-panel .box,
body .content .container .main-content .box {
    animation: soft-glow 4s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body .content .container .right-panel .box .box-content::after,
    body .content .container .main-content .box .box-content::after {
        filter: blur(15px);
    }
}
/* ========================================
   FIX NEWS TICKER HEADER POSITION
   Header jest za nisko w ornamental frame
   ======================================== */

/* ===== NEWS TICKER - SPECIAL POSITIONING ===== */
body .content .container .main-content .box.news-ticker-box .box-content {
    /* Ornamental frame stays same: */
    background: transparent !important;
    backdrop-filter: blur(6px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(6px) saturate(150%) !important;
    border: none !important;
    
    /* IMPORTANT: Add top padding to push header up: */
    padding-top: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    
    position: relative !important;
    min-height: 200px !important;
    box-shadow: 
        0 0 40px rgba(138, 43, 226, 0.6),
        0 8px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(0, 0, 0, 0.3) !important;
}

/* ===== NEWS TICKER HEADER (higher position) ===== */
body .content .container .main-content .box.news-ticker-box .box-content .box-header {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.85) 0%, 
        rgba(106, 13, 173, 0.85) 50%,
        rgba(75, 0, 130, 0.85) 100%);
    
    /* Adjusted height and position: */
    height: 50px !important;
    line-height: 50px !important;
    
    /* IMPORTANT: Negative margin to move up: */
    margin-top: -5px !important;
    margin-bottom: 0 !important;
    
    text-align: center;
    color: #ffffff;
    font-family: 'Bebas Neue Bold', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    
    text-shadow: 
        0 0 25px rgba(138, 43, 226, 0.9), 
        0 3px 6px rgba(0, 0, 0, 1.0),
        0 0 50px rgba(138, 43, 226, 0.5);
    
    border-bottom: 2px solid rgba(138, 43, 226, 0.4);
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ===== NEWS TICKER BODY (content area) ===== */
body .content .container .main-content .box.news-ticker-box .box-content .box-body {
    padding: 15px 30px 30px 30px !important;
    position: relative;
    z-index: 5;
}

/* ===== ALTERNATIVE: Absolute positioning ===== */
/*
body .content .container .main-content .box.news-ticker-box .box-content .box-header {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
}

body .content .container .main-content .box.news-ticker-box .box-content .box-body {
    padding-top: 75px;
}
*/

/* ===== RIGHT PANEL BOXES - KEEP SAME ===== */
body .content .container .right-panel .box .box-content {
    padding: 0 !important;
}

body .content .container .right-panel .box .box-content .box-header {
    height: 50px !important;
    line-height: 50px !important;
    font-size: 22px !important;
    margin-top: 0 !important;
}

body .content .container .right-panel .box .box-content .box-body {
    padding: 20px 30px 30px 30px !important;
}

/* ========================================
   ONLINE/OFFLINE STATUS BUTTON STYLING
   Added by Claude - Beautiful status indicators
   ======================================== */

/* ===== ONLINE STATUS (Green) ===== */
.status-online,
.label-success.status-online {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.95) 0%,    /* Bright green */
        rgba(22, 163, 74, 0.95) 100%) !important;
    
    color: #ffffff !important;
    border: 2px solid rgba(34, 197, 94, 0.8) !important;
    
    box-shadow: 
        0 0 20px rgba(34, 197, 94, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.4) !important;
    
    padding: 8px 20px !important;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    
    text-shadow: 
        0 0 15px rgba(34, 197, 94, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.8) !important;
    
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    margin-left: 0 !important;
}

.status-online:hover {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 1.0) 0%, 
        rgba(22, 163, 74, 1.0) 100%) !important;
    
    box-shadow: 
        0 0 30px rgba(34, 197, 94, 0.8),
        0 6px 16px rgba(0, 0, 0, 0.5) !important;
    
    transform: translateY(-2px) !important;
}

/* ===== ONLINE - Pulsing animation ===== */
@keyframes pulse-green {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(34, 197, 94, 0.6),
            0 4px 12px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 
            0 0 35px rgba(34, 197, 94, 0.9),
            0 4px 12px rgba(0, 0, 0, 0.4);
    }
}

.status-online {
    animation: pulse-green 2s ease-in-out infinite !important;
}

/* ===== ONLINE - Status dot indicator ===== */
.status-online::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: blink-dot 1.5s ease-in-out infinite;
    position: relative;
    top: -1px;
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===== OFFLINE STATUS (Gray) ===== */
.status-offline,
.label-danger.status-offline {
    background: linear-gradient(135deg, 
        rgba(107, 114, 128, 0.8) 0%,   /* Gray */
        rgba(75, 85, 99, 0.8) 100%) !important;
    
    color: rgba(255, 255, 255, 0.7) !important;
    border: 2px solid rgba(107, 114, 128, 0.6) !important;
    
    box-shadow: 
        0 0 15px rgba(107, 114, 128, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.4) !important;
    
    padding: 8px 20px !important;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8) !important;
    
    border-radius: 4px !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    display: inline-block !important;
}

/* ===== OFFLINE - Status dot indicator ===== */
.status-offline::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    top: -1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .status-online,
    .status-offline {
        font-size: 14px !important;
        padding: 6px 16px !important;
    }
}

/* ===== Status bar link (remove default styling) ===== */
.status-bar .item a {
    text-decoration: none !important;
}

.status-bar .item a:hover .status-online {
    text-decoration: none !important;
}
/* ========================================
   INFORMATIONS BOX - BEAUTIFUL TABLE STYLING
   Medieval fantasy tables
   ======================================== */

/* ===== INFORMATIONS BOX SPECIFIC ===== */
.box.informations .box-body {
    padding: 25px 30px 30px 30px !important;
}

/* ===== TABLE STYLING ===== */
.box.informations table.table {
    width: 100%;
    margin: 0 0 20px 0;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(20, 10, 35, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(138, 43, 226, 0.2);
}

/* ===== TABLE ROWS ===== */
.box.informations table.table tbody tr {
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.box.informations table.table tbody tr:last-child {
    border-bottom: none;
}

.box.informations table.table tbody tr:hover {
    background: rgba(138, 43, 226, 0.15);
    box-shadow: inset 0 0 20px rgba(138, 43, 226, 0.1);
}

/* ===== TABLE CELLS ===== */
.box.informations table.table tbody td {
    padding: 15px 20px;
    color: #e6d5b8;
    font-size: 15px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    vertical-align: middle;
}

/* First column (labels) */
.box.informations table.table tbody td:first-child {
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    width: 40%;
    font-family: 'Bebas Neue', sans-serif;
    text-shadow: 
        0 0 10px rgba(138, 43, 226, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Second column (values) */
.box.informations table.table tbody td:last-child {
    color: #ffffff;
    font-weight: 500;
}

/* ===== TABLE CELL <b> TAGS ===== */
.box.informations table.table tbody td b {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
    text-shadow: 
        0 0 10px rgba(138, 43, 226, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

/* ===== LINKS IN TABLE ===== */
.box.informations table.table tbody td a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(167, 139, 250, 0.4);
}

.box.informations table.table tbody td a:hover {
    color: #c4b5fd;
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.6);
    text-decoration: none;
}

/* ===== ROW HOVER EFFECTS ===== */
.box.informations table.table tbody tr {
    position: relative;
}

.box.informations table.table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(138, 43, 226, 0) 0%,
        rgba(138, 43, 226, 0.8) 50%,
        rgba(138, 43, 226, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.box.informations table.table tbody tr:hover::before {
    opacity: 1;
}

/* ===== FIRST ROW SPECIAL STYLING ===== */
.box.informations table.table tbody tr:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.box.informations table.table tbody tr:first-child td:first-child {
    border-top-left-radius: 8px;
}

.box.informations table.table tbody tr:first-child td:last-child {
    border-top-right-radius: 8px;
}

/* ===== LAST ROW SPECIAL STYLING ===== */
.box.informations table.table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.box.informations table.table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

/* ===== DOWNLOAD BUTTON STYLING ===== */
.box.informations .btn-info {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.9) 0%,
        rgba(106, 13, 173, 0.9) 100%) !important;
    
    color: #ffffff !important;
    border: 2px solid rgba(138, 43, 226, 0.8) !important;
    
    box-shadow: 
        0 0 20px rgba(138, 43, 226, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.4) !important;
    
    padding: 12px 25px !important;
    font-family: 'Bebas Neue Bold', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    
    text-shadow: 
        0 0 15px rgba(138, 43, 226, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.8) !important;
    
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    display: block !important;
    width: 100% !important;
    margin-top: 20px !important;
}

.box.informations .btn-info:hover {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 1.0) 0%,
        rgba(106, 13, 173, 1.0) 100%) !important;
    
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.8),
        0 6px 16px rgba(0, 0, 0, 0.5) !important;
    
    transform: translateY(-2px) !important;
}

/* ===== DOWNLOAD BUTTON ANIMATION ===== */
@keyframes pulse-purple {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(138, 43, 226, 0.6),
            0 4px 12px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(138, 43, 226, 0.8),
            0 4px 12px rgba(0, 0, 0, 0.4);
    }
}

.box.informations .btn-info {
    animation: pulse-purple 3s ease-in-out infinite !important;
}

/* ===== DOWNLOAD ICON (optional) ===== */
.box.informations .btn-info::before {
    content: 'â¬‡ ';
    margin-right: 8px;
    font-size: 20px;
}

/* ===== ALTERNATIVE: Striped rows ===== */
.box.informations table.table tbody tr:nth-child(odd) {
    background: rgba(30, 15, 45, 0.2);
}

.box.informations table.table tbody tr:nth-child(even) {
    background: rgba(20, 10, 35, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .box.informations .box-body {
        padding: 20px 15px 20px 15px !important;
    }
    
    .box.informations table.table tbody td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .box.informations table.table tbody td:first-child {
        font-size: 12px;
    }
    
    .box.informations .btn-info {
        font-size: 16px !important;
        padding: 10px 20px !important;
    }
}

/* ===== SPECIAL VALUE STYLING ===== */
.box.informations table.table tbody td:last-child {
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(138, 43, 226, 0.2);
}

/* ===== GLOW ON HOVER (entire table) ===== */
.box.informations table.table:hover {
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(138, 43, 226, 0.3),
        inset 0 1px 0 rgba(138, 43, 226, 0.2);
}

/* ========================================
   FIX: REMOVE WHITE TABLE BORDER
   ======================================== */

/* Remove white borders from Informations table */
.box.informations table.table,
.box.informations table.table tbody,
.box.informations table.table tbody tr,
.box.informations table.table tbody td {
    border: none !important;
    border-color: transparent !important;
}

/* Keep only purple dividers between rows */
.box.informations table.table tbody tr {
    border-bottom: 1px solid rgba(138, 43, 226, 0.2) !important;
}

.box.informations table.table tbody tr:last-child {
    border-bottom: none !important;
}

/* Remove table-striped default borders */
.box.informations .table-striped tbody tr {
    border: none !important;
}

/* Remove table-condensed default borders */
.box.informations .table-condensed tbody tr td {
    border: none !important;
    border-top: none !important;
}

/* Only vertical separator between columns */
.box.informations table.table tbody td:last-child {
    border-left: 1px solid rgba(138, 43, 226, 0.2) !important;
}

/* ========================================
   FIX: ACCOUNT BOX BUTTONS ALIGNMENT
   ======================================== */

/* Account box form styling */
.box.teamspeak .box-body form,
.box.teamspeak .box-body .tab-pane {
    width: 100%;
}

/* Form groups - proper spacing */
.box.teamspeak .box-body .form-group {
    margin-bottom: 15px !important;
    width: 100% !important;
}

/* Input fields - full width */
.box.teamspeak .box-body .form-control {
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* Sign In button - full width, proper styling */
.box.teamspeak .box-body button[type="submit"],
.box.teamspeak .box-body .btn-primary {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 12px 20px !important;
    
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.9) 0%,
        rgba(106, 13, 173, 0.9) 100%) !important;
    
    color: #ffffff !important;
    border: 2px solid rgba(138, 43, 226, 0.8) !important;
    
    box-shadow: 
        0 0 20px rgba(138, 43, 226, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.4) !important;
    
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    
    text-shadow: 
        0 0 15px rgba(138, 43, 226, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.8) !important;
    
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
}

.box.teamspeak .box-body button[type="submit"]:hover,
.box.teamspeak .box-body .btn-primary:hover {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 1.0) 0%,
        rgba(106, 13, 173, 1.0) 100%) !important;
    
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.8),
        0 6px 16px rgba(0, 0, 0, 0.5) !important;
    
    transform: translateY(-2px) !important;
}

/* Register button - full width, proper styling */
.box.teamspeak .box-body .btn-success {
    width: 100% !important;
    display: block !important;
    margin-top: 10px !important;
    padding: 12px 20px !important;
    
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.9) 0%,
        rgba(22, 163, 74, 0.9) 100%) !important;
    
    color: #ffffff !important;
    border: 2px solid rgba(34, 197, 94, 0.8) !important;
    
    box-shadow: 
        0 0 20px rgba(34, 197, 94, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.4) !important;
    
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    
    text-shadow: 
        0 0 15px rgba(34, 197, 94, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.8) !important;
    
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
}

.box.teamspeak .box-body .btn-success:hover {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 1.0) 0%,
        rgba(22, 163, 74, 1.0) 100%) !important;
    
    box-shadow: 
        0 0 30px rgba(34, 197, 94, 0.8),
        0 6px 16px rgba(0, 0, 0, 0.5) !important;
    
    transform: translateY(-2px) !important;
}

/* Remove any conflicting Bootstrap classes */
.box.teamspeak .box-body .btn-block {
    width: 100% !important;
    display: block !important;
}

/* Form wrapper */
.box.teamspeak .box-body form.form {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure no weird margins/padding */
.box.teamspeak .box-body {
    padding: 20px 25px 25px 25px !important;
}

/* Fix any bootstrap btn sizing issues */
.box.teamspeak .box-body .btn {
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: center !important;
}

/* Responsive */
@media (max-width: 768px) {
    .box.teamspeak .box-body button[type="submit"],
    .box.teamspeak .box-body .btn-primary,
    .box.teamspeak .box-body .btn-success {
        font-size: 16px !important;
        padding: 10px 18px !important;
    }
}

/* ========================================
   FIX: DOWNLOAD CLIENT BUTTON
   Full width, proper styling
   ======================================== */

/* Download Client button - full width */
.box.informations .btn-info,
.box.informations a.btn-info,
.box.informations .btn.btn-info,
.box.informations a.btn.btn-info.form-control {
    /* Full width */
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    
    /* Remove form-control conflicts */
    height: auto !important;
    
    /* Styling */
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.95) 0%,
        rgba(106, 13, 173, 0.95) 100%) !important;
    
    color: #ffffff !important;
    border: 2px solid rgba(138, 43, 226, 0.8) !important;
    
    box-shadow: 
        0 0 25px rgba(138, 43, 226, 0.7),
        0 5px 15px rgba(0, 0, 0, 0.5) !important;
    
    /* Spacing */
    padding: 14px 25px !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    
    /* Typography */
    font-family: 'Bebas Neue Bold', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-align: center !important;
    
    text-shadow: 
        0 0 20px rgba(138, 43, 226, 0.9),
        0 3px 6px rgba(0, 0, 0, 1.0),
        0 0 40px rgba(138, 43, 226, 0.6) !important;
    
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    
    /* Remove any weird spacing */
    line-height: 1.4 !important;
    vertical-align: middle !important;
}

/* Download button hover */
.box.informations .btn-info:hover,
.box.informations a.btn-info:hover {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 1.0) 0%,
        rgba(106, 13, 173, 1.0) 100%) !important;
    
    box-shadow: 
        0 0 35px rgba(138, 43, 226, 0.9),
        0 7px 20px rgba(0, 0, 0, 0.6) !important;
    
    transform: translateY(-3px) !important;
    text-decoration: none !important;
}

/* Pulsing animation */
@keyframes pulse-download {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(138, 43, 226, 0.7),
            0 5px 15px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(138, 43, 226, 0.95),
            0 5px 15px rgba(0, 0, 0, 0.5);
    }
}

.box.informations .btn-info {
    animation: pulse-download 3s ease-in-out infinite !important;
}

/* Download icon */
.box.informations .btn-info::before,
.box.informations a.btn-info::before {
    content: 'â¬‡ ';
    font-size: 22px;
    margin-right: 8px;
    display: inline-block;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Remove any Bootstrap conflicts */
.box.informations .form-control.btn-info {
    padding: 14px 25px !important;
    height: auto !important;
}

/* Responsive */
@media (max-width: 768px) {
    .box.informations .btn-info {
        font-size: 18px !important;
        padding: 12px 20px !important;
    }
    
    .box.informations .btn-info::before {
        font-size: 20px;
    }
}

/* ========================================
   FIX: REMOVE BOUNCING ARROW ON HOVER
   ======================================== */

/* Remove bouncing animation from arrow */
.box.informations .btn-info::before,
.box.informations a.btn-info::before {
    content: 'â¬‡ ';
    font-size: 22px;
    margin-right: 8px;
    display: inline-block;
    animation: none !important; /* Remove bounce */
}

/* OR: Remove arrow completely */
/*
.box.informations .btn-info::before,
.box.informations a.btn-info::before {
    content: '' !important;
}
*/

/* Keep button hover effect but fix arrow */
.box.informations .btn-info:hover::before,
.box.informations a.btn-info:hover::before {
    animation: none !important;
    transform: none !important;
}

/* ========================================
   FIX: REMOVE CURSOR ARROW ICON
   ======================================== */

/* Remove cursor pointer icon/arrow */
.box.informations .btn-info,
.box.informations a.btn-info {
    cursor: pointer !important;
}

/* Remove any ::after pseudo-element that might show arrow */
.box.informations .btn-info::after,
.box.informations a.btn-info::after {
    content: none !important;
    display: none !important;
}

/* Remove any background-image arrows */
.box.informations .btn-info,
.box.informations a.btn-info {
    background-image: none !important;
}

/* If it's a Bootstrap glyphicon or icon */
.box.informations .btn-info .glyphicon,
.box.informations .btn-info .fa,
.box.informations .btn-info .icon {
    display: none !important;
}

/* Remove any child elements with arrow */
.box.informations .btn-info > *:not(:first-child),
.box.informations a.btn-info > *:not(:first-child) {
    display: none !important;
}

/* Keep only text content */
.box.informations .btn-info,
.box.informations a.btn-info {
    position: relative;
    overflow: hidden;
}

/* ========================================
   NEW CLEAN DOWNLOAD CLIENT BUTTON
   No Bootstrap, no conflicts, no arrows!
   ======================================== */

/* Reset all possible conflicts */
.download-client-btn {
    /* Remove ALL Bootstrap/inherited styles */
    all: unset;
    
    /* Display */
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    
    /* Spacing */
    margin: 20px 0 0 0 !important;
    padding: 14px 25px !important;
    
    /* Background */
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.95) 0%,
        rgba(106, 13, 173, 0.95) 100%) !important;
    
    /* Border */
    border: 2px solid rgba(138, 43, 226, 0.8) !important;
    border-radius: 6px !important;
    
    /* Shadow */
    box-shadow: 
        0 0 25px rgba(138, 43, 226, 0.7),
        0 5px 15px rgba(0, 0, 0, 0.5) !important;
    
    /* Text */
    color: #ffffff !important;
    font-family: 'Bebas Neue Bold', 'Bebas Neue', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-align: center !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    
    /* Text shadow */
    text-shadow: 
        0 0 20px rgba(138, 43, 226, 0.9),
        0 3px 6px rgba(0, 0, 0, 1.0),
        0 0 40px rgba(138, 43, 226, 0.6) !important;
    
    /* Cursor */
    cursor: pointer !important;
    
    /* Transition */
    transition: all 0.3s ease !important;
    
    /* Remove any pseudo-elements */
    position: relative;
    overflow: visible;
}

/* Remove ALL pseudo-elements */
.download-client-btn::before,
.download-client-btn::after {
    content: none !important;
    display: none !important;
}

/* Hover state */
.download-client-btn:hover {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 1.0) 0%,
        rgba(106, 13, 173, 1.0) 100%) !important;
    
    box-shadow: 
        0 0 35px rgba(138, 43, 226, 0.9),
        0 7px 20px rgba(0, 0, 0, 0.6) !important;
    
    transform: translateY(-3px) !important;
    text-decoration: none !important;
}

/* Focus state (remove outline) */
.download-client-btn:focus {
    outline: none !important;
    text-decoration: none !important;
}

/* Active state */
.download-client-btn:active {
    transform: translateY(-1px) !important;
}

/* Pulsing animation */
@keyframes pulse-clean-btn {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(138, 43, 226, 0.7),
            0 5px 15px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(138, 43, 226, 0.95),
            0 5px 15px rgba(0, 0, 0, 0.5);
    }
}

.download-client-btn {
    animation: pulse-clean-btn 3s ease-in-out infinite !important;
}

/* Stop animation on hover */
.download-client-btn:hover {
    animation: none !important;
}

/* Make sure no child elements */
.download-client-btn * {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .download-client-btn {
        font-size: 18px !important;
        padding: 12px 20px !important;
    }
}

/* Override ANY Bootstrap styles that might conflict */
a.download-client-btn,
a.download-client-btn:link,
a.download-client-btn:visited,
a.download-client-btn:hover,
a.download-client-btn:active,
a.download-client-btn:focus {
    text-decoration: none !important;
    color: #ffffff !important;
}

/* ========================================
   DOWNLOAD PAGE (moved from download.html.twig)
   ======================================== */
.download-section {
    max-width: 1200px;
    margin: 40px auto 80px;
    background: rgba(138,43,226,.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138,43,226,.35);
    border-radius: 22px;
    box-shadow:
        0 10px 40px rgba(0,0,0,.6),
        0 0 80px rgba(138,43,226,.35);
    overflow: hidden;
}

.download-header {
    padding: 70px 40px;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgba(138,43,226,.35),
        rgba(138,43,226,.10),
        rgba(138,43,226,0)
    );
}

.download-header h1 {
    font-family: 'Bebas Neue Bold', sans-serif;
    font-size: 44px;
    letter-spacing: 4px;
    color: #fff;
    text-shadow:
        0 0 25px rgba(255,255,255,.5),
        0 0 60px rgba(138,43,226,.9);
}

.download-sub {
    margin-top: 10px;
    color: rgba(255,255,255,.7);
    letter-spacing: 1.5px;
}

.download-body {
    padding: 50px;
    text-align: center;
    color: rgba(255,255,255,.85);
}

.download-desc {
    max-width: 720px;
    margin: 0 auto 35px;
    line-height: 1.7;
    color: rgba(255,255,255,.75);
}

/* MAIN BUTTON */
.download-btn {
    display: inline-block;
    margin: 25px 0 10px;
    padding: 18px 46px;
    font-family: 'Bebas Neue Bold', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    background: linear-gradient(135deg,#8a2be2,#5a189a);
    box-shadow: 0 0 35px rgba(138,43,226,.9);
    transition: .25s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 45px rgba(218,165,32,.9),
        0 0 80px rgba(218,165,32,.6);
    color: #ffd700;
}

.download-meta {
    font-size: 13px;
    color: rgba(255,255,255,.6);
}

/* MIRRORS */
.mirror-box {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,.7);
}

.mirror-links {
    margin-top: 10px;
}

.mirror-links a {
    display: inline-block;
    margin: 6px 8px;
    padding: 8px 18px;
    border-radius: 12px;
    background: rgba(138,43,226,.18);
    border: 1px solid rgba(138,43,226,.35);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: .2s;
}

.mirror-links a:hover {
    background: rgba(138,43,226,.35);
    color: #ffd700;
}

/* REQUIREMENTS */
.requirements-box {
    margin: 60px auto 0;
    max-width: 700px;
    background: rgba(138,43,226,.14);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(138,43,226,.3);
    border-radius: 18px;
    padding: 35px;
    box-shadow: inset 0 0 40px rgba(0,0,0,.45);
}

.requirements-box h3 {
    font-family: 'Bebas Neue Bold', sans-serif;
    letter-spacing: 3px;
    font-size: 26px;
    color: #ffd700;
    margin-bottom: 20px;
}

/* ===== ALERTS (XANTABRA STYLE) ===== */
body .content .container .main-content .box .box-content .alert,
body .content .container .right-panel .box .box-content .alert {
    background: rgba(20, 10, 35, 0.55) !important;
    border: 1px solid rgba(138, 43, 226, 0.45) !important;
    border-left: 4px solid rgba(138, 43, 226, 0.85) !important;
    color: #e6d5b8 !important;
    box-shadow: 0 0 18px rgba(138, 43, 226, 0.25);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

body .content .container .main-content .box .box-content .alert-success,
body .content .container .right-panel .box .box-content .alert-success {
    background: rgba(34, 197, 94, 0.18) !important;
    border-left-color: rgba(34, 197, 94, 0.9) !important;
    color: #d4ffdf !important;
}

body .content .container .main-content .box .box-content .alert-danger,
body .content .container .right-panel .box .box-content .alert-danger {
    background: rgba(231, 76, 60, 0.18) !important;
    border-left-color: rgba(231, 76, 60, 0.9) !important;
    color: #ffd0c9 !important;
}

body .content .container .main-content .box .box-content .alert-warning,
body .content .container .right-panel .box .box-content .alert-warning {
    background: rgba(255, 193, 7, 0.16) !important;
    border-left-color: rgba(255, 193, 7, 0.9) !important;
    color: #ffe8a3 !important;
}

body .content .container .main-content .box .box-content .alert-info,
body .content .container .right-panel .box .box-content .alert-info {
    background: rgba(60, 30, 90, 0.35) !important;
    border-left-color: rgba(138, 43, 226, 0.85) !important;
    color: #e6d5b8 !important;
}

body .content .container .main-content .box .box-content .alert a,
body .content .container .right-panel .box .box-content .alert a {
    color: #ffd700 !important;
    text-decoration: none;
}

/* ========================================
   HOMEPAGE CTA HOVER UNIFICATION
   ======================================== */
.box-content a.account-btn:hover,
.box.informations .btn-info:hover,
.box.informations a.btn-info:hover,
.download-client-btn:hover,
.navbar-form .btn:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
}

/* ========================================
   RIGHT PANEL CONSOLIDATION
   ======================================== */
.right-panel .account-welcome-title {
    margin: 0 0 15px;
}

.right-panel .account-meta {
    margin-bottom: 10px;
}

.right-panel .account-meta-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.right-panel .account-meta-value {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.right-panel .account-meta-label-spaced {
    margin-bottom: 5px;
}

.right-panel .account-coins-block {
    margin-bottom: 15px;
}

.right-panel .account-coins-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.right-panel .account-coins-value {
    color: #daa520;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

.right-panel .account-actions-row {
    display: flex;
    gap: 10px;
}

.right-panel .account-actions-row-bottom {
    margin-bottom: 10px;
}

.right-panel .account-input {
    width: 100%;
    padding: 10px 15px;
    background: rgba(32, 12, 58, 0.82);
    border: 2px solid rgba(162, 92, 255, 0.65);
    border-radius: 6px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-transform: none !important;
    transition: all 0.3s ease;
    outline: none;
}

.right-panel .account-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.right-panel .account-input:focus {
    border-color: rgba(255, 212, 120, 0.95);
    box-shadow: 0 0 18px rgba(218, 165, 32, 0.45);
    background: rgba(38, 16, 68, 0.92);
}

.right-panel input.account-input[type="email"],
.right-panel input.account-input[type="password"] {
    background: rgba(32, 12, 58, 0.82) !important;
    border: 2px solid rgba(162, 92, 255, 0.65) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    text-transform: none !important;
}

body .content .container .right-panel .box .box-content input.account-input[type="email"],
body .content .container .right-panel .box .box-content input.account-input[type="password"] {
    background: rgba(32, 12, 58, 0.82) !important;
    border: 2px solid rgba(162, 92, 255, 0.65) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    text-transform: none !important;
}

.right-panel input.account-input[type="email"]:focus,
.right-panel input.account-input[type="password"]:focus {
    border-color: rgba(255, 212, 120, 0.95) !important;
    box-shadow: 0 0 18px rgba(218, 165, 32, 0.45) !important;
    background: rgba(38, 16, 68, 0.92) !important;
}

body .content .container .right-panel .box .box-content input.account-input[type="email"]:focus,
body .content .container .right-panel .box .box-content input.account-input[type="password"]:focus {
    border-color: rgba(255, 212, 120, 0.95) !important;
    box-shadow: 0 0 18px rgba(218, 165, 32, 0.45) !important;
    background: rgba(38, 16, 68, 0.92) !important;
}

.right-panel input.account-input[type="email"]:-webkit-autofill,
.right-panel input.account-input[type="email"]:-webkit-autofill:hover,
.right-panel input.account-input[type="email"]:-webkit-autofill:focus,
.right-panel input.account-input[type="password"]:-webkit-autofill,
.right-panel input.account-input[type="password"]:-webkit-autofill:hover,
.right-panel input.account-input[type="password"]:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(26, 14, 46, 0.95) inset !important;
    transition: background-color 9999s ease-out 0s;
}

.right-panel .account-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    box-sizing: border-box;
    min-height: 42px;
}

.right-panel .account-btn-block {
    display: block;
    text-align: center;
}

.right-panel .account-btn-battlepass {
    margin-top: 12px;
    padding: 13px 18px;
    font-family: 'Bebas Neue Bold', 'Bebas Neue', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.9) 0%, rgba(184, 134, 11, 0.92) 100%) !important;
    border: 2px solid rgba(218, 165, 32, 0.75) !important;
    border-radius: 8px;
    box-shadow:
        0 0 24px rgba(218, 165, 32, 0.42),
        0 6px 14px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.7),
        0 0 16px rgba(255, 230, 160, 0.45);
}

.right-panel .account-btn-battlepass:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    border-color: rgba(218, 165, 32, 0.95) !important;
    box-shadow:
        0 0 32px rgba(218, 165, 32, 0.6),
        0 8px 18px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.right-panel .account-btn-sm {
    padding: 5px 12px;
    font-size: 11px;
    flex: none;
}

.right-panel .account-btn-primary {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.7) 0%, rgba(106, 13, 173, 0.7) 100%) !important;
    border-color: rgba(138, 43, 226, 0.5) !important;
    color: #ffffff !important;
}

.right-panel .account-btn-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.7) 0%, rgba(167, 29, 42, 0.7) 100%) !important;
    border-color: rgba(220, 53, 69, 0.5) !important;
    color: #ffffff !important;
}

.right-panel .account-btn-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.7) 0%, rgba(32, 134, 55, 0.7) 100%) !important;
    border-color: rgba(40, 167, 69, 0.5) !important;
    color: #ffffff !important;
}

.right-panel .account-btn-primary:hover,
.right-panel .account-btn-danger:hover,
.right-panel .account-btn-success:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
}

.right-panel .account-btn-primary:hover {
    border-color: rgba(138, 43, 226, 0.85) !important;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.right-panel .account-btn-danger:hover {
    border-color: rgba(220, 53, 69, 0.85) !important;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.5);
}

.right-panel .account-btn-success:hover {
    border-color: rgba(40, 167, 69, 0.85) !important;
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.5);
}

.right-panel .featured-auction-body {
    padding: 15px !important;
}

.right-panel .featured-auction-layout {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.right-panel .featured-auction-info {
    flex: 1;
    min-width: 0;
}

.right-panel .featured-auction-avatar {
    width: 70px;
    height: 70px;
    background: rgba(20, 10, 35, 0.7);
    border: 2px solid rgba(218, 165, 32, 0.5);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.right-panel .featured-auction-outfit {
    transform: scale(1.3) translate(-8px, -5px);
    filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.5));
}

.right-panel .featured-auction-name {
    color: #daa520 !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    display: block;
    margin-bottom: 3px;
}

.right-panel .featured-auction-name:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

.right-panel .featured-auction-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-bottom: 8px;
}

.right-panel .featured-auction-bid {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(184, 134, 11, 0.2) 100%);
    border: 1px solid rgba(218, 165, 32, 0.4);
    border-radius: 6px;
    padding: 8px 12px;
    display: inline-block;
}

.right-panel .featured-auction-bid-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.right-panel .featured-auction-bid-value {
    color: #daa520;
    font-size: 16px;
    font-weight: 700;
}

.right-panel .featured-auction-cta,
.right-panel .featured-auction-empty-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.8) 0%, rgba(184, 134, 11, 0.8) 100%);
    border: 2px solid rgba(218, 165, 32, 0.6);
    border-radius: 8px;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.right-panel .featured-auction-cta:hover,
.right-panel .featured-auction-empty-cta:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.55);
}

.right-panel .featured-auction-empty {
    text-align: center;
    padding: 18px 8px 8px;
    color: rgba(255, 255, 255, 0.75);
}

.right-panel .featured-auction-empty-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(218, 165, 32, 0.45);
    color: #daa520;
    background: rgba(218, 165, 32, 0.12);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.right-panel .featured-auction-empty-text {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.right-panel .uptime-body {
    padding: 0 !important;
}

.right-panel .uptime-display {
    padding: 20px;
    text-align: center;
}

.right-panel .uptime-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border-radius: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.right-panel .uptime-status.online {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #86efac;
}

.right-panel .uptime-status.offline {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #fca5a5;
}

.right-panel .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: right-panel-pulse 2s infinite;
}

@keyframes right-panel-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.right-panel .uptime-status.online .status-dot {
    background: #86efac;
    box-shadow: 0 0 10px #86efac;
}

.right-panel .uptime-status.offline .status-dot {
    background: #fca5a5;
    box-shadow: 0 0 10px #fca5a5;
}

.right-panel .uptime-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.right-panel .uptime-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.right-panel .uptime-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    min-width: 50px;
}

.right-panel .uptime-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #daa520;
    line-height: 1;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.6);
}

.right-panel .uptime-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.right-panel .uptime-separator {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #daa520;
    font-weight: 700;
}

.right-panel .stats-body {
    padding: 0 !important;
    background: transparent;
}

.right-panel .stats-section {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    position: relative;
}

.right-panel .stats-section-last {
    border-bottom: none;
}

.right-panel .stats-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.right-panel .stats-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.right-panel .stats-avatar {
    width: 64px;
    height: 64px;
    background: rgba(20, 10, 35, 0.4);
    border: 2px solid rgba(138, 43, 226, 0.4);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.right-panel .stats-avatar img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.right-panel .stats-avatar img.outfit-img {
    transform: scale(1.3) translate(-8px, -5px);
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.4));
    max-width: none;
    max-height: none;
}

/* Match outfit visuals in Stats with Featured Auction */
.right-panel .stats-avatar.stats-avatar--outfit {
    width: 70px;
    height: 70px;
    background: rgba(20, 10, 35, 0.7);
    border: 2px solid rgba(218, 165, 32, 0.5);
}

.right-panel .stats-avatar.stats-avatar--outfit img.outfit-img {
    transform: scale(1.3) translate(-14px, -11px);
    filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.5));
    object-fit: initial;
    display: block;
}

.right-panel .stats-info {
    flex: 1;
    min-width: 80px;
    padding-top: 5px;
}

.right-panel .stats-name {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}

.right-panel .stats-name:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

.right-panel .stats-value {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    margin-top: 2px;
}

.right-panel .stats-btn {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.6) 0%, rgba(106, 13, 173, 0.6) 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    bottom: 15px;
}

.right-panel .stats-btn:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

/* ========================================
   NEWS TICKER CLEAN OVERRIDE
   ======================================== */
body .content .container .main-content .box.news-ticker-box .box-content .box-body {
    padding: 12px 14px 14px !important;
}

.news-ticker-item {
    display: grid !important;
    grid-template-columns: 78px 1fr !important;
    gap: 6px 10px !important;
    align-items: start !important;
    padding: 10px 12px !important;
    margin-bottom: 8px !important;
    border: 1px solid rgba(138, 43, 226, 0.28) !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(70, 35, 120, 0.2)) !important;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease !important;
}

.news-ticker-item:last-child {
    margin-bottom: 0 !important;
}

.news-ticker-item .ticker-date {
    grid-column: 1 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 10px !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    padding-top: 2px !important;
}

.news-ticker-item .ticker-title {
    grid-column: 2 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-right: 6px !important;
}

.news-ticker-item .ticker-content {
    grid-column: 2 !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-top: 2px !important;
    word-break: break-word !important;
}

.news-ticker-item.expandable {
    cursor: pointer !important;
    position: relative !important;
    padding-right: 30px !important;
}

.news-ticker-item.expandable::after {
    content: "+" !important;
    position: absolute !important;
    right: 10px !important;
    top: 10px !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(218, 165, 32, 0.6) !important;
    color: #daa520 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 14px !important;
    text-align: center !important;
    background: rgba(218, 165, 32, 0.12) !important;
}

.news-ticker-item.expandable.expanded::after {
    content: "-" !important;
}

.news-ticker-item.expandable::before,
.news-ticker-item.expandable:hover::before {
    content: none !important;
    display: none !important;
}

/* ========================================
   ACCOUNT LOGIN BUTTON HOVER FIX
   ======================================== */
body .content .container .right-panel .box.teamspeak .box-content .box-body a.account-btn-primary:hover,
body .content .container .right-panel .box.teamspeak .box-content .box-body button.account-btn-primary:hover {
    color: #daa520 !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
}

.news-ticker-item:hover,
.news-ticker-item.expandable.expanded {
    border-color: rgba(218, 165, 32, 0.52) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32), 0 0 18px rgba(138, 43, 226, 0.32) !important;
}

@media (max-width: 768px) {
    .news-ticker-item {
        grid-template-columns: 1fr !important;
        gap: 4px !important;
    }

    .news-ticker-item .ticker-date,
    .news-ticker-item .ticker-title,
    .news-ticker-item .ticker-content {
        grid-column: 1 !important;
    }
}

