/* ===================================
   Custom Metin2 Legends Styles
   =================================== */

/* Color Palette Variables */
:root {
    --primary-gold: #c9a961;
    --primary-gold-light: #d4b36a;
    --primary-gold-dark: #b89850;
    --dark-bg: #2d2f32;
    --dark-bg-alt: #23252 8;
    --border-light: rgba(201, 169, 97, 0.3);
    --border-subtle: rgba(255, 255, 255, 0.08);
}

/* Bootstrap Button Overrides */
.btn-primary {
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%) !important;
    border-color: #c9a961 !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, #d4b36a 0%, #c9a961 100%) !important;
    border-color: #d4b36a !important;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4) !important;
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%) !important;
    border-color: #c9a961 !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background: linear-gradient(135deg, #d4b36a 0%, #c9a961 100%) !important;
    border-color: #d4b36a !important;
}

/* Back to News Button */
.btn-back-news {
    background: #222a32 !important;
    border-color: #222a32 !important;
    color: #fff !important;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-back-news:hover,
.btn-back-news:focus,
.btn-back-news:active {
    background: #2d3742 !important;
    border-color: #2d3742 !important;
    color: #c9a961 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 42, 50, 0.4) !important;
}

.btn-back-news i {
    transition: transform 0.3s ease;
}

.btn-back-news:hover i {
    transform: translateX(-5px);
}

/* Badge Overrides */
.badge.bg-success,
.badge.text-bg-success {
    background-color: #c9a961 !important;
}

.badge.bg-danger,
.badge.text-bg-danger {
    background-color: #c9a961 !important;
}

/* Border Overrides */
.border-danger {
    border-color: #c9a961 !important;
}

.border-primary {
    border-color: #c9a961 !important;
}

/* Link Colors */
a {
    color: #c9a961;
}

a:hover {
    color: #d4b36a;
}

/* Form Controls */
.form-control:focus {
    border-color: #c9a961 !important;
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 97, 0.25) !important;
}

.form-check-input:checked {
    background-color: #c9a961 !important;
    border-color: #c9a961 !important;
}

.form-check-input:focus {
    border-color: #c9a961 !important;
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 97, 0.25) !important;
}

/* Pagination */
.pagination .page-link {
    color: #c9a961 !important;
}

.pagination .page-item.active .page-link {
    background-color: #c9a961 !important;
    border-color: #c9a961 !important;
}

.pagination .page-link:hover {
    color: #d4b36a !important;
    background-color: rgba(201, 169, 97, 0.1) !important;
}

/* Nav Link Overrides */
a.nav-link:hover {
    border-bottom: 2px solid #c9a961 !important;
}

div > ul > li.nav-item > a.nav-link {
    border-bottom: 2px solid transparent !important;
}

/* Smooth Animations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Preloader */
.js-preloader {
    background: linear-gradient(135deg, #1f2122 0%, #27292a 100%);
}

.js-preloader .preloader-inner .dot {
    background: #c9a961 !important; /* Dourado */
    animation: pulse 1.5s ease-in-out infinite;
}

.js-preloader .preloader-inner .dots span {
    background: #c9a961 !important; /* Dourado */
}

.js-preloader .preloader-text {
    margin-top: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    opacity: 0.85;
    animation: fadeInUp 1s ease-in-out;
}

.js-preloader .preloader-text strong {
    font-weight: 600;
    color: #e75e8d;
}

.js-preloader .preloader-text a {
    color: #e75e8d;
    text-decoration: none;
    transition: opacity 0.3s;
}

.js-preloader .preloader-text a:hover {
    opacity: 0.7;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.85;
        transform: translateY(0);
    }
}

/* Header Enhancements */
.header-area {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background: transparent !important;
}

/* Header Menu - Last Item (ENTRAR Button) */
.header-area .main-nav .nav li:last-child a {
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%) !important;
    text-transform: uppercase;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.header-area .main-nav .nav li:last-child:hover a {
    background: linear-gradient(135deg, #d4b36a 0%, #c9a961 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.background-header .main-nav .nav li:last-child a {
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%) !important;
}

.header-area.header-sticky {
    background: rgba(31, 33, 34, 0.85) !important;
    backdrop-filter: blur(10px);
}

.header-area.header-sticky.is-scrolled {
    background: rgba(31, 33, 34, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Remove qualquer cor azul do header */
.header-area .background-header,
.header-area.background-header {
    background: rgba(31, 33, 34, 0.95) !important;
}

.header-area .header-sticky,
.background-header .header-sticky {
    background: transparent !important;
}

/* Override de todas as cores azuis do template original */
.header-area *[style*="background: #0071f8"],
.header-area *[style*="background-color: #0071f8"],
.header-area *[style*="background: #008af8"],
.header-area *[style*="background-color: #008af8"] {
    background: transparent !important;
    background-color: transparent !important;
}

/* Garante que o header sempre tenha fundo escuro ou transparente */
.header-area,
.header-area .header-top,
.header-area .nav-wrapper {
    background: transparent !important;
}

.main-nav ul.nav li a {
    transition: all 0.3s ease;
    position: relative;
}

.main-nav ul.nav li a:hover {
    color: #c9a961 !important;
    transform: translateY(-2px);
}

.main-nav ul.nav li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a961 0%, #d4b36a 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav ul.nav li a:hover::after {
    width: 80%;
}

/* Main Banner Improvements */
.main-banner {
    background: linear-gradient(135deg, #1f2122 0%, #27292a 100%);
    position: relative;
    overflow: hidden;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/lugx/banner-bg.jpg') center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.main-banner .container {
    position: relative;
    z-index: 1;
}

.main-banner .right-image img {
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(231, 94, 141, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.main-banner .caption h2 em {
    background: linear-gradient(90deg, #c9a961 0%, #d4b36a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features .item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.features .item:hover {
    transform: translateY(-10px);
}

.features .item .image {
    background-color: #c9a961 !important;
}

.features .item:hover .image {
    background-color: #d4b36a !important;
}

.features .item:hover .image img {
    transform: scale(1.1) rotate(5deg);
}

.features .item .image img {
    transition: all 0.3s ease;
}

/* Counter Boxes */
.counter-box {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.counter-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #c9a961, #d4b36a, #c9a961);
    background-size: 300% 300%;
    border-radius: 23px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

.counter-box:hover::before {
    opacity: 1;
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 94, 141, 0.3);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.counter-box i {
    transition: all 0.3s ease;
}

.counter-box:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Top Players Cards */
.most-played .item {
    transition: all 0.3s ease;
    position: relative;
}

.most-played .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 94, 141, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 23px;
    z-index: 1;
}

.most-played .item:hover::before {
    opacity: 1;
}

.most-played .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.most-played .item .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 23px;
    background: linear-gradient(135deg, #1f2122 0%, #27292a 100%);
}

.most-played .item .thumb img {
    transition: transform 0.5s ease;
}

.most-played .item:hover .thumb img {
    transform: scale(1.1);
}

.most-played .item:hover .thumb::after {
    content: '👑';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.3;
    animation: crownPulse 1s ease-in-out;
    z-index: 2;
}

.most-played .down-content {
    position: relative;
    z-index: 2;
}

@keyframes crownPulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
}

/* News Items */
.news-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.news-item:hover {
    background: rgba(231, 94, 141, 0.1) !important;
    border-left-color: #c9a961;
    transform: translateX(5px);
}

/* Carousel Improvements */
.carousel-item img {
    transition: transform 0.5s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta .shop,
.cta .subscribe {
    transition: all 0.3s ease;
}

.cta .shop:hover,
.cta .subscribe:hover {
    transform: translateY(-5px);
}

/* Footer Enhancements */
footer {
    background: linear-gradient(135deg, #1f2122 0%, #27292a 100%);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/lugx/footer-bg.jpg') center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer .footer-widget {
    text-align: center;
}

footer .footer-widget img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

footer .footer-widget p {
    text-align: center;
}

footer .social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: #c9a961;
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

/* Buttons Enhancement */
.main-button a {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main-button a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.main-button a:hover::before {
    width: 300px;
    height: 300px;
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1f2122;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c9a961 0%, #d4b36a 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d4b36a 0%, #c9a961 100%);
}

/* Loading Animation for Stats */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.counter {
    animation: countUp 0.5s ease;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .main-banner .right-image {
        margin-top: 30px;
    }
    
    .counter-box {
        margin-bottom: 20px;
    }
}

/* Particle Background Effect */
.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

/* Glow Effects */
.glow-text {
    text-shadow: 0 0 10px rgba(231, 94, 141, 0.5),
                 0 0 20px rgba(231, 94, 141, 0.3),
                 0 0 30px rgba(231, 94, 141, 0.2);
}

/* Section Transitions */
.section {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Player Card Classes - Character Backgrounds */
.player-bg-card {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.player-bg-card:hover {
    transform: scale(1.05);
}

/* Tooltip Style */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-bottom: 5px;
}

[data-tooltip]:hover::after {
    opacity: 1;
}

/* Shine Effect on Hover */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    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 ease;
}

.shine-effect:hover::after {
    left: 100%;
}

/* ===================================
   Ranking Button Style
   =================================== */
.ranking-button {
    position: relative;
    display: inline-block;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.ranking-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b89850 0%, #a88640 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.ranking-button:hover::before {
    left: 0;
}

.ranking-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.6);
    color: #fff;
}

.ranking-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.button-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.button-content i:first-child {
    font-size: 20px;
    animation: trophy-bounce 2s ease-in-out infinite;
}

.button-content i:last-child {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ranking-button:hover .button-content i:last-child {
    transform: translateX(5px);
}

@keyframes trophy-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.ranking-button:hover .button-glow {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* Ripple effect on click */
@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.ranking-button:active .button-glow {
    animation: ripple 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .ranking-button {
        padding: 15px 35px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    
    .button-content i:first-child {
        font-size: 18px;
    }
}

/* ===================================
   News Button Style
   =================================== */
.news-button {
    position: relative;
    display: inline-block;
    padding: 16px 45px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.news-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b89850 0%, #a88640 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.news-button:hover::before {
    left: 0;
}

.news-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.6);
    color: #fff;
}

.news-button .button-content i:first-child {
    font-size: 18px;
    animation: newspaper-pulse 2s ease-in-out infinite;
}

.news-button:hover .button-content i:last-child {
    transform: translateX(5px);
}

@keyframes newspaper-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===================================
   Events Button Style
   =================================== */
.events-button {
    position: relative;
    display: inline-block;
    padding: 16px 45px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.events-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b89850 0%, #d4b36a 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.events-button:hover::before {
    left: 0;
}

.events-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
    color: #fff;
}

.events-button .button-content i:first-child {
    font-size: 18px;
    animation: calendar-shake 2s ease-in-out infinite;
}

.events-button:hover .button-content i:last-child {
    transform: translateX(5px);
}

@keyframes calendar-shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

/* Responsive for News and Events Buttons */
@media (max-width: 768px) {
    .news-button,
    .events-button {
        padding: 14px 30px;
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .news-button .button-content i:first-child,
    .events-button .button-content i:first-child {
        font-size: 16px;
    }
}

/* ===================================
   Hall Fame Style - News Section
   =================================== */
.hall-fame-container {
    background: linear-gradient(145deg, rgba(45, 47, 50, 0.95) 0%, rgba(35, 37, 40, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hall-fame-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hall-fame-title {
    color: #c9a961;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    text-transform: none;
}

.hall-fame-content {
    padding: 0;
}

.hall-fame-table {
    display: flex;
    flex-direction: column;
}

.hall-fame-table-header {
    display: grid;
    grid-template-columns: 80px 1fr 180px 140px;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #888;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hall-fame-row {
    display: grid;
    grid-template-columns: 80px 1fr 180px 140px;
    gap: 15px;
    padding: 20px 30px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    align-items: center;
}

.hall-fame-row:last-child {
    border-bottom: none;
}

.hall-fame-row:hover {
    background: rgba(201, 169, 97, 0.08);
    border-left: 3px solid #c9a961;
    padding-left: 27px;
}

.hall-fame-col-number {
    display: flex;
    align-items: center;
}

.hall-fame-rank {
    font-size: 18px;
    font-weight: 700;
    color: #c9a961;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hall-fame-rank .crown-gold {
    color: #ffd700;
    font-size: 20px;
    animation: crown-shine 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.hall-fame-rank .crown-silver {
    color: #c0c0c0;
    font-size: 18px;
    animation: crown-shine 2s ease-in-out infinite 0.3s;
    filter: drop-shadow(0 0 6px rgba(192, 192, 192, 0.6));
}

.hall-fame-rank .crown-bronze {
    color: #cd7f32;
    font-size: 16px;
    animation: crown-shine 2s ease-in-out infinite 0.6s;
    filter: drop-shadow(0 0 5px rgba(205, 127, 50, 0.5));
}

@keyframes crown-shine {
    0%, 100% {
        transform: rotate(-5deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(5deg) scale(1.1);
        opacity: 0.9;
    }
}

.hall-fame-col-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hall-fame-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(201, 169, 97, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a961;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hall-fame-row:hover .hall-fame-icon {
    background: rgba(201, 169, 97, 0.25);
    transform: rotate(10deg) scale(1.1);
}

.hall-fame-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hall-fame-col-category {
    display: flex;
    align-items: center;
}

.hall-fame-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    color: #c9a961;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hall-fame-col-date {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

/* Hover Effects */
.hall-fame-row:hover .hall-fame-name {
    color: #c9a961;
}

.hall-fame-row:hover .hall-fame-badge {
    background: rgba(201, 169, 97, 0.25);
    border-color: rgba(201, 169, 97, 0.5);
    color: #d4b36a;
}

.hall-fame-row:hover .hall-fame-col-date {
    color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
    .hall-fame-table-header,
    .hall-fame-row {
        grid-template-columns: 60px 1fr 140px;
        gap: 10px;
    }
    
    .hall-fame-col-date {
        display: none;
    }
    
    .hall-fame-table-header .hall-fame-col-date {
        display: none;
    }
}

@media (max-width: 768px) {
    .hall-fame-container {
        border-radius: 15px;
    }
    
    .hall-fame-header {
        padding: 20px;
    }
    
    .hall-fame-title {
        font-size: 22px;
    }
    
    .hall-fame-table-header,
    .hall-fame-row {
        grid-template-columns: 50px 1fr;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .hall-fame-col-category {
        display: none;
    }
    
    .hall-fame-table-header .hall-fame-col-category {
        display: none;
    }
    
    .hall-fame-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 14px;
    }
    
    .hall-fame-name {
        font-size: 14px;
    }
    
    .hall-fame-rank {
        font-size: 16px;
    }
}

/* ===================================
   Ranking Tabs
   =================================== */
.ranking-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.ranking-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: rgba(45, 47, 50, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #aaa;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.ranking-tab i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.ranking-tab:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: rgba(201, 169, 97, 0.3);
    color: #c9a961;
    transform: translateY(-2px);
}

.ranking-tab:hover i {
    transform: scale(1.2);
}

.ranking-tab.active {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    border-color: #c9a961;
    color: #c9a961;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.ranking-tab.active i {
    animation: tabIconPulse 2s ease-in-out infinite;
}

@keyframes tabIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.ranking-content {
    display: none;
}

.ranking-content.active {
    display: flex;
}

/* Ranking Table Wrapper */
.hall-fame-wrapper {
    background: linear-gradient(145deg, rgba(45, 47, 50, 0.95) 0%, rgba(35, 37, 40, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hall-fame-wrapper .hall-fame-table {
    width: 100%;
}

.hall-fame-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.hall-fame-wrapper thead {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hall-fame-wrapper thead th {
    padding: 20px 25px;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.hall-fame-wrapper tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.hall-fame-wrapper tbody tr:last-child {
    border-bottom: none;
}

.hall-fame-wrapper tbody tr:hover {
    background: rgba(201, 169, 97, 0.08);
    border-left: 3px solid #c9a961;
}

.hall-fame-wrapper tbody td {
    padding: 20px 25px;
    color: #fff;
    font-size: 15px;
    vertical-align: middle;
}

/* Player Info Styles */
.class-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.class-avatar {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    object-fit: cover;
    transition: all 0.3s ease;
}

.hall-fame-wrapper tbody tr:hover .class-avatar {
    border-color: #c9a961;
    transform: scale(1.05);
}

.player-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}

.hall-fame-wrapper tbody tr:hover .player-name {
    color: #c9a961;
}

/* Badge Styles */
.class-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    color: #c9a961;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hall-fame-wrapper tbody tr:hover .class-badge {
    background: rgba(201, 169, 97, 0.25);
    border-color: rgba(201, 169, 97, 0.5);
    color: #d4b36a;
}

.level-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(184, 152, 80, 0.2));
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 10px;
    color: #c9a961;
    font-size: 14px;
    font-weight: 700;
    min-width: 45px;
    text-align: center;
}

.stat-value {
    color: #aaa;
    font-size: 14px;
    font-weight: 600;
}

.gold-value {
    color: #c9a961;
    font-size: 15px;
    font-weight: 700;
}

.achievement-value {
    color: #f4d03f;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.rank-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(45, 47, 50, 0.8);
    border: 2px solid;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px currentColor;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hall-fame-wrapper tbody tr:hover .rank-badge {
    transform: scale(1.05);
    box-shadow: 0 0 15px currentColor;
}

.win-value {
    color: #4caf50;
    font-size: 14px;
    font-weight: 700;
}

.loss-value {
    color: #f44336;
    font-size: 14px;
    font-weight: 600;
}

.empire-badge-small {
    width: 32px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(201, 169, 97, 0.4);
    object-fit: cover;
    transition: all 0.3s ease;
}

.hall-fame-wrapper tbody tr:hover .empire-badge-small {
    border-color: #c9a961;
    transform: scale(1.1);
}

/* Responsive Tables */
@media (max-width: 992px) {
    .hall-fame-wrapper thead th,
    .hall-fame-wrapper tbody td {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .class-avatar {
        width: 40px;
        height: 40px;
    }
    
    .player-name {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hall-fame-wrapper {
        border-radius: 15px;
    }
    
    .hall-fame-wrapper thead th,
    .hall-fame-wrapper tbody td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .class-info {
        gap: 10px;
    }
    
    .class-avatar {
        width: 35px;
        height: 35px;
    }
    
    .player-name {
        font-size: 14px;
    }
    
    .class-badge,
    .level-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .stat-value,
    .gold-value {
        font-size: 13px;
    }
}

/* Responsive for Ranking Tabs */
@media (max-width: 768px) {
    .ranking-tabs {
        gap: 10px;
    }
    
    .ranking-tab {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .ranking-tab i {
        font-size: 16px;
    }
    
    .ranking-tab span {
        display: none;
    }
    
    .ranking-tab {
        width: 60px;
        height: 60px;
        justify-content: center;
        border-radius: 50%;
        padding: 0;
    }
}

/* ===================================
   CTA Cards (Call to Action)
   =================================== */
.cta-card {
    position: relative;
    background: linear-gradient(145deg, rgba(45, 47, 50, 0.95) 0%, rgba(35, 37, 40, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 169, 97, 0.3);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.cta-icon i {
    font-size: 36px;
    color: #c9a961;
    transition: all 0.4s ease;
}

.cta-card:hover .cta-icon {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.3) 0%, rgba(201, 169, 97, 0.15) 100%);
    transform: rotate(10deg) scale(1.1);
}

.cta-card:hover .cta-icon i {
    transform: scale(1.2);
    color: #d4b36a;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cta-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c9a961;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.highlight-gold {
    color: #c9a961;
    position: relative;
}

.highlight-purple {
    color: #c9a961;
    position: relative;
}

.cta-description {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b89850 0%, #a88640 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.5);
    color: #fff;
}

.cta-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.4s ease;
}

.cta-card:hover .cta-decoration {
    transform: scale(1.5);
    opacity: 0.5;
}

/* Alternative button style for shop */
.cta-shop .cta-button {
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.cta-shop .cta-button::before {
    background: linear-gradient(135deg, #b89850 0%, #a88640 100%);
}

.cta-shop .cta-button:hover {
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .cta-card {
        min-height: 380px;
        padding: 30px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
    }
    
    .cta-icon i {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .cta-card {
        min-height: auto;
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .cta-icon i {
        font-size: 28px;
    }
}

/* ===================================
   Form Styles - Register/Login Pages
   =================================== */

.home-content {
    padding-top: 150px !important;
    padding-bottom: 80px;
    min-height: calc(100vh - 200px);
}

.user-forms {
    max-width: 600px;
    margin: 0 auto;
}

.user-forms .input-group {
    position: relative;
    margin-bottom: 20px;
}

.user-forms .form-control {
    background: rgba(35, 37, 40, 0.8);
    border: 2px solid rgba(201, 169, 97, 0.4);
    color: #fff;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.user-forms .form-control::placeholder {
    color: rgba(201, 169, 97, 0.6);
    font-weight: 400;
}

.user-forms .form-control:focus {
    background: rgba(45, 47, 50, 0.9);
    border-color: #c9a961;
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 97, 0.25) !important;
    color: #fff;
}

.user-forms .input-group-text {
    background: rgba(201, 169, 97, 0.3);
    border: 2px solid rgba(201, 169, 97, 0.4);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: help;
    transition: all 0.3s ease;
}

.user-forms .input-group-text:hover {
    background: rgba(201, 169, 97, 0.5);
    border-color: #c9a961;
    transform: scale(1.05);
}

.user-forms .form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.25em;
    cursor: pointer;
    background-color: rgba(35, 37, 40, 0.8);
    border: 2px solid rgba(201, 169, 97, 0.4);
}

.user-forms .form-check-label {
    color: #ddd;
    margin-left: 8px;
    cursor: pointer;
    font-size: 15px;
}

.user-forms .form-check-label a {
    color: #c9a961;
    font-weight: 600;
    text-decoration: none;
}

.user-forms .form-check-label a:hover {
    color: #d4b36a;
    text-decoration: underline;
}

.content-bg {
    background: rgba(25, 27, 30, 0.95);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Article Post Background */
article.content-bg {
    background: rgba(172, 141, 70, 0.95);
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: #fff;
}

article.content-bg a {
    color: #fff;
    text-decoration: underline;
}

article.content-bg a:hover {
    color: #f5e6c8;
}

article.content-bg h1,
article.content-bg h2,
article.content-bg h3,
article.content-bg h4,
article.content-bg h5,
article.content-bg h6 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

article.content-bg p {
    color: #f5f5f5;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

article.content-bg ul,
article.content-bg ol {
    color: #f5f5f5;
    line-height: 1.8;
    padding-left: 30px;
}

article.content-bg li {
    margin-bottom: 0.8rem;
}

article.content-bg img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px;
    margin: 20px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: block;
}

.article-content img {
    max-width: 100% !important;
    height: auto !important;
}

article.content-bg blockquote {
    border-left: 4px solid #fff;
    padding-left: 20px;
    margin: 20px 0;
    color: #fff;
    font-style: italic;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 5px;
}

article.content-bg code {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

article.content-bg pre {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

article.content-bg table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

article.content-bg table th,
article.content-bg table td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    text-align: left;
    color: #fff;
}

article.content-bg table th {
    background: rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

article.content-bg table tr:hover {
    background: rgba(0, 0, 0, 0.2);
}

.article-meta {
    font-size: 14px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.article-meta i {
    color: #c9a961;
    margin-right: 5px;
}

/* Article Content Formatting */
.article-content {
    font-size: 16px;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content * {
    max-width: 100%;
}

.article-content > * {
    margin-bottom: 1.5rem;
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content > *:last-child {
    margin-bottom: 0;
}

/* Ensure proper spacing for nested elements */
.article-content p {
    margin-bottom: 1.2rem;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-content h1 { font-size: 2.5rem; }
.article-content h2 { font-size: 2rem; }
.article-content h3 { font-size: 1.75rem; }
.article-content h4 { font-size: 1.5rem; }
.article-content h5 { font-size: 1.25rem; }
.article-content h6 { font-size: 1.1rem; }

.article-content strong,
.article-content b {
    font-weight: 700;
    color: #fff;
}

.article-content em,
.article-content i {
    font-style: italic;
}

.article-content hr {
    border: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}

/* Image alignment classes */
.article-content img[style*="text-align: center"],
.article-content p[style*="text-align: center"] img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.article-content img[style*="text-align: left"],
.article-content p[style*="text-align: left"] img {
    display: block;
    margin-right: auto;
}

.article-content img[style*="text-align: right"],
.article-content p[style*="text-align: right"] img {
    display: block;
    margin-left: auto;
}

/* Paragraph alignment */
.article-content p[style*="text-align: center"] {
    text-align: center;
}

.article-content p[style*="text-align: left"] {
    text-align: left;
}

.article-content p[style*="text-align: right"] {
    text-align: right;
}

.article-content p[style*="text-align: justify"] {
    text-align: justify;
}

/* Blockquote specific styling */
.article-content blockquote,
.article-content .blockquote {
    border-left: 4px solid #fff;
    padding: 20px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 1.1rem;
}

.article-content blockquote p,
.article-content .blockquote p {
    margin-bottom: 0.5rem;
}

.article-content blockquote p:last-child,
.article-content .blockquote p:last-child {
    margin-bottom: 0;
}

/* Lists styling */
.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
}

.article-content ul ul,
.article-content ol ol,
.article-content ul ol,
.article-content ol ul {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.content-title {
    margin-bottom: 30px;
    background: transparent !important;
    padding: 0 !important;
}

.content-title h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-title h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b89850 0%, #c9a961 50%, #d4b36a 100%);
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.5);
}

.content-title p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .content-bg {
        padding: 25px;
    }
    
    .user-forms .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .content-title h1 {
        font-size: 28px;
    }
}

/* ===================================
   Category Filters - Posts Page
   =================================== */

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.category-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(35, 37, 40, 0.8);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-filter i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.category-filter:hover {
    color: #fff;
    border-color: #c9a961;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.category-filter:hover::before {
    left: 0;
}

.category-filter:hover i {
    transform: scale(1.2) rotate(5deg);
}

.category-filter.active {
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%);
    border-color: #c9a961;
    color: #fff;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.category-filter.active i {
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@media (max-width: 768px) {
    .category-filters {
        gap: 10px;
    }
    
    .category-filter {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .category-filter i {
        font-size: 16px;
    }
    
    .category-filter span {
        display: none;
    }
    
    .category-filter {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ===================================
   Player Search Box
   =================================== */
.player-search-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    backdrop-filter: blur(10px);
}

.player-search-box .input-group {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.player-search-box .input-group-text {
    background: #222a32;
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: #c9a961;
    padding: 12px 15px;
}

.player-search-box .form-control {
    background: #1a1f25;
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: #fff;
    padding: 12px 20px;
    font-size: 15px;
}

.player-search-box .form-control::placeholder {
    color: #888;
}

.player-search-box .form-control:focus {
    background: #222a32;
    border-color: #c9a961;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
}

.player-search-box .btn {
    padding: 12px 30px;
    font-weight: 600;
}

/* Suggestions List */
.suggestions-list {
    position: relative;
    margin-top: 10px;
    background: rgba(26, 31, 37, 0.98);
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 1000;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateX(5px);
}

.suggestion-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    margin-right: 12px;
    object-fit: cover;
}

.suggestion-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.suggestion-name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.suggestion-details {
    color: #888;
    font-size: 12px;
}

.suggestion-empire {
    display: flex;
    align-items: center;
}

.suggestion-empire-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 97, 0.3);
}

/* Cache Info Banner */
.cache-info-banner {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9a961;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.cache-info-banner i {
    font-size: 16px;
}

.cache-info-banner span:first-of-type {
    flex: 1;
}

/* Recent Searches */
.recent-searches {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.recent-label {
    color: #c9a961;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

#recentSearchTags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.search-tag {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: #c9a961;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.search-tag:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.3), rgba(201, 169, 97, 0.2));
    border-color: #c9a961;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.search-tag i {
    font-size: 10px;
}

/* Search Results */
.search-results {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results h3 {
    color: #c9a961;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-results h3 i {
    font-size: 24px;
}

.player-result-card {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.6) 0%, rgba(26, 31, 37, 0.6) 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.player-result-card:hover {
    transform: translateY(-3px);
    border-color: #c9a961;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.2);
}

.player-result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.player-result-header .class-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #c9a961;
}

.player-result-info h4 {
    color: #c9a961;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.player-result-info p {
    color: #aaa;
    margin: 5px 0 0 0;
    font-size: 14px;
}

.ranking-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.ranking-stat-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid #c9a961;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ranking-stat-label {
    color: #aaa;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ranking-stat-label i {
    color: #c9a961;
    font-size: 16px;
}

.ranking-stat-value {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.ranking-stat-value.gold {
    color: #c9a961;
}

.ranking-stat-value.rank {
    background: linear-gradient(135deg, #c9a961 0%, #b89850 100%);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 14px;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
}

.no-results i {
    font-size: 60px;
    color: #555;
    margin-bottom: 15px;
}

.no-results h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.no-results p {
    font-size: 14px;
    margin: 0;
}

/* Botão de limpar pesquisa */
.btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c0392b, #922b21);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid #c9a961;
    color: #c9a961;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #c9a961;
    color: #1a1f26;
    border-color: #c9a961;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

@media (max-width: 768px) {
    .player-search-box {
        padding: 15px;
    }
    
    .ranking-stats {
        grid-template-columns: 1fr;
    }
    
    .player-result-header {
        flex-direction: column;
        text-align: center;
    }
    
    .recent-searches {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cache-info-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .search-tag {
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* ========================================
   DOWNLOADS PAGE STYLES
   ======================================== */

.download-info-banner {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.info-item i {
    font-size: 32px;
    color: #c9a961;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    color: #c9a961;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-item span {
    color: #fff;
    font-size: 16px;
}

/* Main Download Section */
.main-download-section {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.main-download-card {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.95), rgba(26, 31, 38, 0.95));
    border: 3px solid #c9a961;
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.3);
}

.main-download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.download-icon-large {
    font-size: 80px;
    color: #c9a961;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.main-download-card h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

.download-description {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.download-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    text-align: left;
}

.highlight-item i {
    color: #4ade80;
    font-size: 22px;
    flex-shrink: 0;
}

.btn-main-download {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 25px 60px;
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: #1a1f26;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.btn-main-download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-main-download:hover::before {
    width: 300px;
    height: 300px;
}

.btn-main-download:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.6);
    background: linear-gradient(135deg, #d4af37, #e5c158);
    color: #000;
}

.btn-main-download i {
    font-size: 28px;
}

.btn-main-download span {
    position: relative;
    z-index: 1;
}

.btn-main-download small {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* System Requirements */
.system-requirements {
    margin: 50px 0;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.system-requirements h3 {
    color: #c9a961;
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirements-box {
    background: rgba(34, 42, 50, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    height: 100%;
}

.requirements-box h4 {
    color: #c9a961;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.3);
}

.requirements-box ul {
    list-style: none;
    padding: 0;
}

.requirements-box ul li {
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.requirements-box ul li strong {
    color: #c9a961;
    margin-right: 5px;
}

/* Installation Guide */
.installation-guide {
    margin: 50px 0;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.installation-guide h3 {
    color: #c9a961;
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.install-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(34, 42, 50, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.install-step:hover {
    border-color: #c9a961;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: #1a1f26;
    font-size: 24px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h4 {
    color: #c9a961;
    font-size: 16px;
    margin-bottom: 10px;
}

.step-content p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

/* Download Notice */
.download-notice {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(234, 179, 8, 0.05));
    border: 2px solid rgba(234, 179, 8, 0.3);
    border-radius: 15px;
    margin-top: 40px;
}

.download-notice i {
    font-size: 32px;
    color: #eab308;
    flex-shrink: 0;
}

.download-notice strong {
    color: #eab308;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.download-notice p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* ========================================
   MY ACCOUNT PAGE STYLES
   ======================================== */

.account-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.account-card {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.95), rgba(26, 31, 38, 0.95));
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c9a961, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.account-card:hover {
    border-color: #c9a961;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.account-card:hover::before {
    opacity: 1;
}

.balance-card {
    border-color: #c9a961;
}

.card-icon {
    font-size: 50px;
    color: #c9a961;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    color: #c9a961;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-amount {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
}

.info-text {
    color: #aaa;
    font-size: 16px;
    margin: 10px 0;
}

.btn-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    color: #c9a961;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-card-action:hover {
    background: rgba(201, 169, 97, 0.2);
    border-color: #c9a961;
    color: #d4af37;
    transform: translateX(5px);
}

/* Admin Cards - Destaque dourado */
.admin-card {
    border: 2px solid #c9a961;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(212, 175, 55, 0.1));
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.2);
}

.admin-card:hover {
    border-color: #d4af37;
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.4);
    transform: translateY(-5px);
}

.admin-card .card-icon {
    background: rgba(201, 169, 97, 0.2);
    border-radius: 15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Action Sections */
.action-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.action-section h3 {
    color: #c9a961;
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.action-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(34, 42, 50, 0.5);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.action-item:hover {
    background: rgba(34, 42, 50, 0.8);
    border-color: #c9a961;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.2);
}

.action-item.highlight {
    border: 2px solid #c9a961;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
}

.action-icon {
    font-size: 32px;
    color: #c9a961;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 12px;
}

.action-content {
    flex: 1;
}

.action-content h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.action-content p {
    color: #aaa;
    font-size: 13px;
    margin: 0;
}

.action-item > .fa-chevron-right {
    color: #c9a961;
    font-size: 18px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.action-item:hover > .fa-chevron-right {
    opacity: 1;
    transform: translateX(5px);
}

/* Action Item Half - Botões menores lado a lado */
.action-item-half {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    min-height: 120px;
    height: 100%;
    justify-content: center;
}

.action-item-half .action-icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
    margin: 0 auto 12px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-item-half .action-content {
    flex: none;
}

.action-item-half .action-content h4 {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}

.action-item-half .action-content p {
    font-size: 12px;
}

.action-item-half:hover {
    transform: translateY(-3px);
}

/* Garantir altura igual nos cards lado a lado */
.action-list .row .col-6 {
    display: flex;
}

.action-list .row .col-6 .action-item-half {
    width: 100%;
}

.badge-promo {
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: #1a1f26;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Logout Button */
.btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background: rgba(190, 57, 40, 0.2);
    border: 2px solid #be3928;
    border-radius: 10px;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(190, 57, 40, 0.3);
    border-color: #ff6b6b;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(190, 57, 40, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .account-info-cards {
        grid-template-columns: 1fr;
    }
    
    .account-card {
        flex-direction: column;
        text-align: center;
    }
    
    .action-section {
        padding: 20px;
    }
    
    .action-item {
        flex-direction: column;
        text-align: center;
    }
    
    .action-item > .fa-chevron-right {
        display: none;
    }
    
    .action-item-half {
        min-height: 120px;
        padding: 12px;
    }
    
    .action-item-half .action-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .action-item-half .action-content h4 {
        font-size: 13px;
    }
    
    .action-item-half .action-content p {
        font-size: 10px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .download-info-banner {
        flex-direction: column;
        padding: 20px;
    }
    
    .info-item {
        width: 100%;
        padding: 15px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
    
    .installation-steps {
        grid-template-columns: 1fr;
    }
    
    .system-requirements,
    .installation-guide {
        padding: 20px;
    }
    
    .main-download-card {
        padding: 40px 25px;
    }
    
    .main-download-card h2 {
        font-size: 28px;
    }
    
    .download-description {
        font-size: 16px;
    }
    
    .download-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .highlight-item {
        font-size: 14px;
    }
    
    .btn-main-download {
        padding: 20px 40px;
        font-size: 18px;
    }
    
    .download-icon-large {
        font-size: 60px;
    }
}

/* ========================================
   CUSTOM SWEETALERT2 MODALS
   ======================================== */

.custom-swal-popup {
    border: 2px solid rgba(201, 169, 97, 0.5) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

.custom-swal-title {
    color: #c9a961 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    padding: 20px 20px 10px !important;
}

.custom-swal-confirm {
    background: linear-gradient(135deg, #c9a961, #d4af37) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4) !important;
}

.custom-swal-confirm:hover {
    background: linear-gradient(135deg, #d4af37, #e5c158) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6) !important;
}

.custom-swal-cancel {
    background: rgba(85, 85, 85, 0.8) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.custom-swal-cancel:hover {
    background: rgba(100, 100, 100, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Estilo dos inputs dentro do modal */
.swal2-input,
.swal2-textarea {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(201, 169, 97, 0.3) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
}

.swal2-input:focus,
.swal2-textarea:focus {
    border-color: #c9a961 !important;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1) !important;
}

.swal2-input::placeholder,
.swal2-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Validação de erro */
.swal2-validation-message {
    background: rgba(190, 57, 40, 0.2) !important;
    border: 1px solid #be3928 !important;
    color: #ff6b6b !important;
    border-radius: 8px !important;
    padding: 10px !important;
    font-size: 13px !important;
}

/* Loading */
.swal2-loader {
    border-color: #c9a961 transparent #c9a961 transparent !important;
}

/* HTML content styling */
.swal2-html-container {
    color: #aaa !important;
    font-size: 14px !important;
}

.swal2-html-container .text-start {
    color: #bbb !important;
}

/* ========================================
   UNSTUCK CHARACTER PAGE STYLES
   ======================================== */

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 10px;
    color: #c9a961;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(201, 169, 97, 0.2);
    border-color: #c9a961;
    color: #d4af37;
    transform: translateX(-5px);
}

.char-info-banner {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    margin-bottom: 40px;
}

.char-info-banner i {
    font-size: 32px;
    color: #3b82f6;
    flex-shrink: 0;
}

.char-info-banner strong {
    color: #3b82f6;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.char-info-banner p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* No Characters State */
.no-characters {
    text-align: center;
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 2px dashed rgba(201, 169, 97, 0.3);
}

.no-characters i {
    font-size: 80px;
    color: rgba(201, 169, 97, 0.5);
    margin-bottom: 20px;
}

.no-characters h3 {
    color: #c9a961;
    font-size: 28px;
    margin-bottom: 15px;
}

.no-characters p {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #c9a961, #d4af37);
    border: none;
    border-radius: 10px;
    color: #1a1f26;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #d4af37, #e5c158);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.6);
    color: #000;
}

/* Characters Grid */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.character-card {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.95), rgba(26, 31, 38, 0.95));
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c9a961, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.character-card:hover {
    border-color: #c9a961;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.character-card:hover::before {
    opacity: 1;
}

.character-avatar {
    position: relative;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    padding: 30px;
    text-align: center;
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.character-avatar img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(201, 169, 97, 0.5));
}

.character-level {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: #1a1f26;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(201, 169, 97, 0.4);
}

.character-info {
    padding: 25px;
    text-align: center;
}

.character-info h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.character-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 14px;
}

.detail-item i {
    color: #c9a961;
}

.character-actions {
    padding: 0 25px 25px;
}

.btn-unstuck {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 2px solid #3b82f6;
    border-radius: 12px;
    color: #60a5fa;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-unstuck:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.2));
    border-color: #60a5fa;
    color: #93c5fd;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.btn-unstuck.disabled,
.btn-unstuck:disabled {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.2), rgba(80, 80, 80, 0.1));
    border-color: #666;
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-unstuck.disabled:hover,
.btn-unstuck:disabled:hover {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.2), rgba(80, 80, 80, 0.1));
    border-color: #666;
    color: #888;
    transform: none;
    box-shadow: none;
}

/* Help Section */
.help-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
}

.help-section h3 {
    color: #c9a961;
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.help-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(34, 42, 50, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.help-item:hover {
    border-color: #c9a961;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.2);
}

.help-number {
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: #1a1f26;
    font-size: 20px;
    font-weight: bold;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-content h4 {
    color: #c9a961;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.help-content p {
    color: #aaa;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .characters-grid {
        grid-template-columns: 1fr;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .char-info-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .help-section {
        padding: 25px;
    }
}

/* ==========================================
   ORDER LIST PAGE STYLES
   ========================================== */

/* Empty State */
.no-orders {
    text-align: center;
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(201, 169, 97, 0.3);
    border-radius: 20px;
    margin: 40px 0;
}

.no-orders i {
    font-size: 80px;
    color: rgba(201, 169, 97, 0.5);
    margin-bottom: 25px;
    display: block;
}

.no-orders h3 {
    color: #c9a961;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-orders p {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Orders Container */
.orders-container {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

/* Order Card */
.order-card {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.95), rgba(26, 31, 38, 0.95));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.5);
}

/* Order Header */
.order-header {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.order-id {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #c9a961;
}

.order-id i {
    font-size: 20px;
}

/* Order Status */
.order-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-status i {
    font-size: 14px;
}

.status-completed {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-processing {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Order Body */
.order-body {
    padding: 25px;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.order-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.order-info-item i {
    font-size: 24px;
    color: #c9a961;
    margin-top: 2px;
}

.order-info-item > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.info-value.golden {
    color: #c9a961;
}

.info-value.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value.status-badge i {
    font-size: 13px;
}

.status-badge.status-success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.status-badge.status-warning {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.status-badge.status-processing {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.status-badge.status-error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.status-badge.status-expired {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.status-badge.status-info {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.4);
}

/* Order Expiration */
.order-expiration {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fbbf24;
    font-size: 14px;
}

.order-expiration i {
    font-size: 20px;
    color: #fbbf24;
}

.order-expiration strong {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

/* Order Footer */
.order-footer {
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
}

.btn-view-details {
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    border: 2px solid #c9a961;
    border-radius: 10px;
    color: #c9a961;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: linear-gradient(135deg, #c9a961, #b8985a);
    color: #1a1f26;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

/* Info Section */
.info-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
}

.info-section h3 {
    color: #c9a961;
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-section h3 i {
    font-size: 28px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.8), rgba(26, 31, 38, 0.8));
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.info-card i {
    font-size: 40px;
    color: #c9a961;
    margin-bottom: 15px;
    display: block;
}

.info-card h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .order-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .order-info-grid {
        grid-template-columns: 1fr;
    }
    
    .order-footer {
        justify-content: center;
    }
    
    .btn-view-details {
        width: 100%;
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-section {
        padding: 25px;
    }
}

/* ==========================================
   ORDER DETAILS PAGE STYLES
   ========================================== */

/* Order Details Header */
.order-details-header {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.order-details-id {
    display: flex;
    align-items: center;
    gap: 20px;
}

.order-details-id i {
    font-size: 50px;
    color: #c9a961;
}

.order-details-id .label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.order-details-id h2 {
    font-size: 32px;
    color: #c9a961;
    margin: 0;
    font-weight: 700;
}

.order-details-status {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-details-status i {
    font-size: 18px;
}

.status-concluido, .status-completed {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 2px solid rgba(34, 197, 94, 0.4);
}

.status-pendente, .status-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 2px solid rgba(251, 191, 36, 0.4);
}

.status-em-processamento, .status-processing {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 2px solid rgba(59, 130, 246, 0.4);
}

/* Order Details Grid Compact */
.order-details-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.order-info-compact {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.95), rgba(26, 31, 38, 0.95));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.order-info-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.5);
}

.order-info-compact i {
    font-size: 28px;
    color: #c9a961;
    margin-top: 2px;
}

.order-info-compact > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.info-label-compact {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-value-compact {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
}

.info-value-compact.golden {
    color: #c9a961;
    font-size: 18px;
}

.info-value-compact.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.status-badge.status-warning {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.status-badge.status-processing {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.status-badge.status-error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.status-badge.status-info {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.4);
}

/* Order Details Grid */
.order-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.order-details-card {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.95), rgba(26, 31, 38, 0.95));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.5);
}

.card-header {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    padding: 20px 25px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header i {
    font-size: 24px;
    color: #c9a961;
}

.card-header h3 {
    font-size: 20px;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.card-body {
    padding: 25px;
}

/* Item Display */
.item-display {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    margin-bottom: 15px;
}

.item-display i {
    font-size: 50px;
    color: #c9a961;
}

.item-display > div {
    display: flex;
    flex-direction: column;
}

.item-amount {
    font-size: 32px;
    font-weight: 700;
    color: #c9a961;
    line-height: 1;
}

.item-label {
    font-size: 14px;
    color: #aaa;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bonus-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #f87171;
    font-size: 15px;
}

.bonus-display i {
    font-size: 22px;
}

/* Payment Info */
.payment-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-row .label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.payment-row .value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.payment-row .value.golden {
    color: #c9a961;
    font-size: 20px;
}

/* Payment Section */
.payment-section {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.95), rgba(26, 31, 38, 0.95));
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.payment-header {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    padding: 25px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-header i {
    font-size: 32px;
    color: #c9a961;
}

.payment-header h3 {
    font-size: 22px;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.payment-body {
    padding: 40px;
}

.payment-instructions {
    text-align: center;
    color: #aaa;
    font-size: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-instructions i {
    color: #c9a961;
    font-size: 20px;
}

/* QR Code */
.qr-code-container {
    text-align: center;
    margin-bottom: 30px;
}

.qr-code-container img {
    max-width: 350px;
    width: 100%;
    height: auto;
    border: 3px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    padding: 20px;
    background: #fff;
}

/* PIX Code */
.pix-code-container {
    max-width: 600px;
    margin: 0 auto;
}

.pix-code-container label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9a961;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pix-code-container label i {
    font-size: 18px;
}

.pix-code-box {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 15px;
}

.pix-code-box code {
    flex: 1;
    color: #fff;
    font-size: 14px;
    word-break: break-all;
    user-select: all;
    background: transparent;
    padding: 0;
}

.btn-copy-pix {
    padding: 10px 20px;
    background: linear-gradient(135deg, #c9a961, #b8985a);
    border: none;
    border-radius: 8px;
    color: #1a1f26;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

/* Expiration Alert */
.expiration-alert {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.05));
    border: 2px solid rgba(251, 191, 36, 0.4);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.expiration-alert i {
    font-size: 40px;
    color: #fbbf24;
}

.expiration-alert strong {
    color: #fbbf24;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.expiration-alert p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.expiration-alert.alert-expired {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    border-color: rgba(239, 68, 68, 0.4);
}

.expiration-alert.alert-expired i {
    color: #f87171;
}

.expiration-alert.alert-expired strong {
    color: #f87171;
}

.countdown-large {
    font-size: 18px;
    font-weight: 700;
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

/* Activation Info */
.activation-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.activation-info i {
    font-size: 40px;
    color: #60a5fa;
}

.activation-info strong {
    color: #60a5fa;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.activation-info p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Order Details Responsive */
@media (max-width: 768px) {
    .order-details-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-details-id {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-details-id i {
        font-size: 40px;
    }
    
    .order-details-id h2 {
        font-size: 24px;
    }
    
    .order-details-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .order-details-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-body {
        padding: 25px;
    }
    
    .qr-code-container img {
        max-width: 280px;
    }
    
    .pix-code-box {
        flex-direction: column;
    }
    
    .btn-copy-pix {
        width: 100%;
        justify-content: center;
    }
    
    
    .activation-info {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   SHOP COIN PAGE STYLES
   ========================================== */

/* Shop Info Banner */
.shop-info-banner {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.shop-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9a961;
    font-size: 15px;
    font-weight: 600;
}

.shop-info-item i {
    font-size: 22px;
}

/* Coins Grid */
.coins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

/* Coin Pack Card */
.coin-pack-card {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.95), rgba(26, 31, 38, 0.95));
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.coin-pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
    border-color: rgba(201, 169, 97, 0.6);
}

/* Coin Pack Header */
.coin-pack-header {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    padding: 30px;
    text-align: center;
    position: relative;
}

.coin-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #c9a961, #b8985a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.coin-icon i {
    font-size: 40px;
    color: #1a1f26;
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.bonus-badge i {
    font-size: 12px;
}

/* Coin Pack Body */
.coin-pack-body {
    padding: 30px;
    text-align: center;
}

.coin-amount {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.coin-amount .amount {
    font-size: 48px;
    font-weight: 700;
    color: #c9a961;
    line-height: 1;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
}

.coin-amount .label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 8px;
}

.bonus-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #f87171;
    font-size: 14px;
    font-weight: 600;
}

.bonus-info i {
    font-size: 16px;
}

/* Coin Pack Footer */
.coin-pack-footer {
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.price .currency {
    font-size: 18px;
    color: #c9a961;
    font-weight: 600;
}

.price .value {
    font-size: 32px;
    color: #c9a961;
    font-weight: 700;
    margin-left: 5px;
}

.btn-buy-pack {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #c9a961, #b8985a);
    border: none;
    border-radius: 10px;
    color: #1a1f26;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-buy-pack:hover {
    background: linear-gradient(135deg, #d4b36a, #c9a961);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    color: #1a1f26;
}

.btn-buy-pack i {
    font-size: 18px;
}

/* Payment Methods Section */
.payment-methods-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
}

.payment-methods-section h3 {
    color: #c9a961;
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-methods-section h3 i {
    font-size: 26px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.payment-method-item {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.8), rgba(26, 31, 38, 0.8));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.payment-method-item:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.payment-method-item i {
    font-size: 40px;
    color: #c9a961;
}

.payment-method-item span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Shop FAQ Section */
.shop-faq-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 15px;
    padding: 35px;
}

.shop-faq-section h3 {
    color: #c9a961;
    font-size: 22px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-faq-section h3 i {
    font-size: 26px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(34, 42, 50, 0.8), rgba(26, 31, 38, 0.8));
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-question i {
    font-size: 24px;
    color: #c9a961;
}

.faq-question h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.faq-item p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-info-banner {
        gap: 20px;
        padding: 20px;
    }
    
    .shop-info-item {
        font-size: 13px;
    }
    
    .coins-grid {
        grid-template-columns: 1fr;
    }
    
    .coin-amount .amount {
        font-size: 36px;
    }
    
    .price .value {
        font-size: 24px;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-section,
    .shop-faq-section {
        padding: 25px;
    }
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid #c9a961;
    color: #c9a961;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #c9a961;
    color: #0a0a0a;
    transform: translateX(-5px);
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Resumo do Pedido */
.checkout-summary {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.95), rgba(25, 25, 25, 0.95));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.summary-header {
    background: linear-gradient(135deg, #c9a961, #b8944d);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-header i {
    font-size: 28px;
    color: #0a0a0a;
}

.summary-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
}

.summary-body {
    padding: 30px;
}

/* Item Principal */
.checkout-item-main {
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c9a961, #b8944d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4);
}

.item-icon i {
    font-size: 32px;
    color: #0a0a0a;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-amount {
    font-size: 32px;
    font-weight: 700;
    color: #c9a961;
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.5);
}

.item-label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Itens Premium */
.premium-items {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.premium-items h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #c9a961;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-items-grid {
    display: grid;
    gap: 12px;
}

.premium-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.premium-item img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.premium-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-name {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.item-quantity {
    color: #c9a961;
    font-size: 12px;
}

/* Bônus Section */
.bonus-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(185, 28, 28, 0.1));
    border: 2px solid rgba(220, 38, 38, 0.4);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.bonus-section i {
    font-size: 32px;
    color: #ef4444;
}

.bonus-section div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bonus-label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount {
    font-size: 24px;
    font-weight: 700;
    color: #ef4444;
    text-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
}

/* Preço Total */
.total-price {
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.total-label {
    font-size: 16px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.currency {
    font-size: 20px;
    color: #c9a961;
    font-weight: 600;
}

.value {
    font-size: 36px;
    font-weight: 700;
    color: #c9a961;
    text-shadow: 0 2px 12px rgba(201, 169, 97, 0.6);
}

/* Checkout Alert */
.checkout-alert {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #3b82f6;
}

.checkout-alert i {
    font-size: 20px;
}

.checkout-alert span {
    font-size: 14px;
}

/* Métodos de Pagamento */
.payment-methods-checkout {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.95), rgba(25, 25, 25, 0.95));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.payment-header {
    background: linear-gradient(135deg, #c9a961, #b8944d);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-header i {
    font-size: 28px;
    color: #0a0a0a;
}

.payment-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
}

.payment-options {
    padding: 30px;
    display: grid;
    gap: 20px;
}

.payment-option {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: #c9a961;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.pix-option .payment-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

.paypal-option .payment-icon {
    background: linear-gradient(135deg, #0070ba, #003087);
    color: #fff;
}

.payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.payment-info p {
    margin: 0;
    font-size: 14px;
    color: #aaa;
}

.payment-bonus {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 20px;
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.payment-arrow {
    color: #c9a961;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.payment-option:hover .payment-arrow {
    transform: translateX(5px);
}

/* Security Badges */
.security-badges {
    padding: 0 30px 30px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.security-badge {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.security-badge i {
    font-size: 24px;
    color: #22c55e;
}

.security-badge span {
    font-size: 12px;
    color: #aaa;
}

/* Captcha Container */
.captcha-container {
    padding: 0 30px 30px 30px;
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-container {
        padding: 0 10px;
    }

    .summary-header,
    .payment-header {
        padding: 15px 20px;
    }

    .summary-header h2,
    .payment-header h2 {
        font-size: 20px;
    }

    .summary-header i,
    .payment-header i {
        font-size: 24px;
    }

    .summary-body,
    .payment-options {
        padding: 20px;
    }

    .checkout-item-main {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .item-amount {
        font-size: 28px;
    }

    .value {
        font-size: 28px;
    }

    .payment-option {
        padding: 15px 20px;
    }

    .payment-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .payment-info h3 {
        font-size: 18px;
    }

    .security-badges {
        grid-template-columns: 1fr;
        padding: 0 20px 20px 20px;
    }

    .captcha-container {
        padding: 0 20px 20px 20px;
    }
}

/* ============================================
   CHECKOUT MODAL (SWEETALERT2) CUSTOMIZATION
   ============================================ */
.checkout-modal-popup {
    border: 2px solid rgba(201, 169, 97, 0.5) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8) !important;
}

.checkout-modal-title {
    color: #c9a961 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
    padding: 30px 30px 20px 30px !important;
}

.checkout-modal-confirm {
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4) !important;
    transition: all 0.3s ease !important;
}

.checkout-modal-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6) !important;
}

.checkout-modal-cancel {
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    border: 2px solid #6c757d !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.checkout-modal-cancel:hover {
    background: #6c757d !important;
    transform: translateY(-2px) !important;
}

/* Input Focus Effects */
.swal2-popup input.swal2-input:focus {
    border-color: #c9a961 !important;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2) !important;
    outline: none !important;
}

.swal2-popup input.swal2-input::placeholder {
    color: #666 !important;
}

/* Validation Message */
.swal2-validation-message {
    background: rgba(239, 68, 68, 0.2) !important;
    border: 1px solid rgba(239, 68, 68, 0.4) !important;
    color: #ef4444 !important;
}

/* ============================================
   PIX CHECKOUT PAGE - NEW LAYOUT
   ============================================ */
.pix-breadcrumb {
    padding: 15px 0;
    margin-bottom: 30px;
    font-size: 14px;
    color: #aaa;
}

.pix-breadcrumb a {
    color: #c9a961;
    text-decoration: none;
    transition: color 0.3s;
}

.pix-breadcrumb a:hover {
    color: #d4b76f;
}

.pix-breadcrumb .separator {
    margin: 0 10px;
    color: #666;
}

.pix-breadcrumb .active {
    color: #fff;
}

/* Layout de 2 Colunas */
.pix-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Coluna Esquerda - Resumo do Pedido */
.pix-order-summary {
    background: rgba(133, 111, 67, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 30px;
}

.pix-order-summary h3 {
    margin: 0 0 25px 0;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

/* Item do Pedido */
.pix-order-item {
    background: rgba(14, 13, 13, 0.8);
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.pix-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pix-item-amount {
    font-size: 24px;
    font-weight: 700;
    color: #c9a961;
}

.pix-item-label {
    font-size: 14px;
    color: #aaa;
}

.pix-item-price {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* Caixas de Alerta */
.pix-alert-box {
    padding: 15px 18px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.pix-alert-box i {
    font-size: 18px;
    flex-shrink: 0;
}

.pix-alert-box.warning {
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: #d4b76f;
}

.pix-alert-box.danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* Coluna Direita - Formulário */
.pix-data-section {
    background: rgba(14, 13, 13, 0.6);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 30px;
}

.pix-data-section h3 {
    margin: 0 0 25px 0;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

/* Form Groups */
.pix-form-group {
    margin-bottom: 20px;
}

.pix-form-group input {
    width: 100%;
    padding: 15px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.pix-form-group input::placeholder {
    color: #666;
}

.pix-form-group input:focus {
    outline: none;
    border-color: #c9a961;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

/* Botão Gerar PIX */
.btn-generate-pix {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2d7f33, #1f5e26);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-generate-pix:hover {
    background: linear-gradient(135deg, #3a9943, #2d7f33);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 127, 51, 0.4);
}

.btn-generate-pix:active {
    transform: translateY(0);
}

/* Captcha Container */
.captcha-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .pix-checkout-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pix-order-summary,
    .pix-data-section {
        padding: 20px;
    }

    .pix-item-amount {
        font-size: 20px;
    }

    .pix-item-price {
        font-size: 24px;
    }

    .btn-generate-pix {
        font-size: 16px;
        padding: 14px;
    }
}

/* ============================================
   FOOTER MOBILE RESPONSIVE FIX
   ============================================ */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px 0;
    }

    footer .footer-widget {
        margin-bottom: 30px;
        text-align: center;
    }

    footer .footer-widget img {
        max-width: 120px !important;
        margin-bottom: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }

    footer .footer-widget p {
        font-size: 14px;
        line-height: 1.6 !important;
        text-align: center;
    }

    footer .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    footer .footer-widget h4 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }

    footer .footer-widget ul li {
        margin-bottom: 8px !important;
        font-size: 14px;
    }

    footer .footer-widget ul li a {
        font-size: 14px;
    }

    footer .social-links {
        margin-top: 20px !important;
    }

    footer .social-links a {
        width: 36px !important;
        height: 36px !important;
        line-height: 36px !important;
        font-size: 14px;
        margin: 0 3px !important;
    }

    footer .col-lg-4,
    footer .col-lg-3,
    footer .col-lg-2 {
        padding-left: 20px;
        padding-right: 20px;
    }

    footer [style*="border-top"] {
        padding-top: 20px !important;
        margin-top: 20px;
    }

    footer [style*="border-top"] p {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }

    footer [style*="border-top"] p small {
        font-size: 11px !important;
        display: block;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 30px 0 15px 0;
    }

    footer .footer-widget {
        margin-bottom: 25px;
        text-align: center;
    }

    footer .footer-widget img {
        max-width: 100px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }

    footer .footer-widget p {
        text-align: center;
    }

    footer .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    footer .footer-widget h4 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    footer .footer-widget ul li {
        margin-bottom: 6px !important;
        font-size: 13px;
    }

    footer .social-links a {
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
        font-size: 12px;
        margin: 0 2px !important;
    }

    footer [style*="border-top"] {
        padding-top: 15px !important;
        margin-top: 15px;
    }

    footer [style*="border-top"] p {
        font-size: 11px !important;
    }

    footer [style*="border-top"] p small {
        font-size: 10px !important;
    }
}

/* ============================================
   SERVER SETTINGS PAGE
   ============================================ */
.server-settings-form {
    max-width: 1200px;
    margin: 0 auto;
}

.settings-section {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.95), rgba(25, 25, 25, 0.95));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.settings-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.settings-header i {
    font-size: 24px;
    color: #c9a961;
}

.settings-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #c9a961;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group textarea {
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a961;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

/* Toggle Switch */
.toggle-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.toggle-label input[type="checkbox"] {
    display: none;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    transition: all 0.3s;
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.toggle-switch::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background: #666;
    transition: all 0.3s;
}

.toggle-label input[type="checkbox"]:checked + .toggle-switch {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

.toggle-label input[type="checkbox"]:checked + .toggle-switch::before {
    left: 26px;
    background: #22c55e;
}

.toggle-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.toggle-group small {
    color: #aaa;
    font-size: 13px;
    margin-left: 62px;
}

/* Footer do Formulário */
.settings-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-save-settings {
    padding: 15px 40px;
    background: linear-gradient(135deg, #c9a961, #b8944d);
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-save-settings:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.last-update {
    color: #aaa;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.last-update i {
    color: #c9a961;
}

/* Responsive */
@media (max-width: 768px) {
    .settings-section {
        padding: 20px;
    }

    .settings-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .settings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .settings-header h3 {
        font-size: 18px;
    }

    .settings-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-save-settings {
        width: 100%;
        justify-content: center;
    }

    .last-update {
        justify-content: center;
    }

    .toggle-group small {
        margin-left: 0;
    }
}

/* ========================================
   FORGOT PASSWORD PAGE
   ======================================== */

.forgot-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 20px;
    padding: 40px;
}

/* Tabs de Navega��o */
.forgot-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.forgot-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: #aaa;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 3px solid transparent;
    position: relative;
}

.forgot-tab i {
    font-size: 18px;
}

.forgot-tab:hover {
    color: #c9a961;
}

.forgot-tab.active {
    color: #c9a961;
    border-bottom-color: #c9a961;
}

.forgot-content {
    position: relative;
}

.forgot-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.forgot-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.forgot-info {
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.forgot-info i {
    color: #c9a961;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.forgot-info p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.forgot-form {
    margin-bottom: 30px;
}

.forgot-form .form-group {
    margin-bottom: 25px;
}

.forgot-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9a961;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forgot-form label i {
    font-size: 16px;
}

.forgot-form .form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(34, 42, 50, 0.5);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.forgot-form .form-input:focus {
    outline: none;
    border-color: #c9a961;
    background: rgba(34, 42, 50, 0.8);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.2);
}

.forgot-form .form-input::placeholder {
    color: #666;
}

.captcha-container {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.forgot-form .btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #c9a961, #d4af37);
    border: none;
    border-radius: 10px;
    color: #1a1f26;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.forgot-form .btn-submit:hover {
    background: linear-gradient(135deg, #d4af37, #c9a961);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(201, 169, 97, 0.4);
}

.forgot-form .btn-submit i {
    font-size: 18px;
}

.forgot-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.link-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c9a961;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-back:hover {
    color: #d4af37;
    transform: translateX(-5px);
}

.link-back i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .forgot-container {
        padding: 25px;
    }

    .forgot-tab {
        flex-direction: column;
        padding: 12px 10px;
        font-size: 13px;
    }

    .forgot-tab span {
        display: none;
    }

    .forgot-info {
        padding: 15px;
    }

    .forgot-form .form-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .forgot-form .btn-submit {
        padding: 12px;
        font-size: 14px;
    }
}

/* ========================================
   QUICK TIME BUTTONS - Server Settings
   ======================================== */

.quick-time-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.quick-time-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    color: #c9a961;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quick-time-btn:hover {
    background: rgba(201, 169, 97, 0.2);
    border-color: #c9a961;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
}

.quick-time-btn:active {
    transform: translateY(0);
}

.quick-time-btn i {
    font-size: 16px;
}

.quick-time-btn.btn-clear {
    background: rgba(190, 57, 40, 0.1);
    border-color: rgba(190, 57, 40, 0.3);
    color: #be3928;
}

.quick-time-btn.btn-clear:hover {
    background: rgba(190, 57, 40, 0.2);
    border-color: #be3928;
}

/* Time Display */
.time-display {
    background: rgba(34, 42, 50, 0.5);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.time-display.active {
    opacity: 1;
    border-color: rgba(201, 169, 97, 0.5);
    background: rgba(201, 169, 97, 0.05);
}

.time-display-icon {
    font-size: 32px;
    color: #c9a961;
    flex-shrink: 0;
}

.time-display-content {
    flex: 1;
}

.time-display-label {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.time-display-value {
    font-size: 16px;
    color: #ccc;
    font-weight: 600;
}

.time-display.active .time-display-label {
    color: #c9a961;
}

.time-display.active .time-display-value {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .quick-time-buttons {
        gap: 8px;
    }

    .quick-time-btn {
        min-width: 100px;
        padding: 10px 15px;
        font-size: 12px;
    }

    .quick-time-btn i {
        font-size: 14px;
    }

    .time-display {
        padding: 15px;
    }

    .time-display-icon {
        font-size: 24px;
    }

    .time-display-value {
        font-size: 14px;
    }
}

/* ========================================
   INPUT DATETIME-LOCAL STYLING
   ======================================== */

input[type='datetime-local'] {
    width: 100%;
    padding: 12px 15px;
    background: rgba(34, 42, 50, 0.5);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

input[type='datetime-local']:hover {
    border-color: rgba(201, 169, 97, 0.5);
    background: rgba(34, 42, 50, 0.7);
}

input[type='datetime-local']:focus {
    outline: none;
    border-color: #c9a961;
    background: rgba(34, 42, 50, 0.8);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

/* Estilizar o calend�rio do datetime-local */
input[type='datetime-local']::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1) brightness(0.8);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

input[type='datetime-local']::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Firefox */
input[type='datetime-local']::-moz-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1) brightness(0.8);
    opacity: 0.7;
}

input[type='datetime-local']::-moz-calendar-picker-indicator:hover {
    opacity: 1;
}

/* ===================================
   EVENT CARDS HOME - Metin2 Style
   =================================== */

.event-card-home {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-card-home:hover {
    transform: translateY(-5px);
    border-color: #c9a961;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.event-corner-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(201, 169, 97, 0.1) 50%);
    border-bottom-left-radius: 15px;
}

.event-corner-decoration::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    border-top: 2px solid rgba(201, 169, 97, 0.3);
    border-right: 2px solid rgba(201, 169, 97, 0.3);
    border-top-right-radius: 3px;
}

.event-icon-container {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    background: rgba(201, 169, 97, 0.1);
    border: 3px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.event-icon-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.event-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.5));
    position: relative;
    z-index: 1;
}

.event-details {
    text-align: center;
    width: 100%;
}

.event-title {
    font-size: 16px;
    font-weight: 700;
    color: #c9a961;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-status {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.event-status.active {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% { box-shadow: 0 0 15px rgba(76, 175, 80, 0.5); }
    50% { box-shadow: 0 0 25px rgba(76, 175, 80, 0.8); }
}

.event-status.upcoming {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
}

.event-time {
    font-size: 13px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.event-time i {
    color: #c9a961;
    font-size: 14px;
}

.event-countdown,
.event-countdown-start {
    color: #c9a961;
    font-weight: 700;
}

.event-info {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.event-info i {
    color: #c9a961;
    font-size: 11px;
}

.btn-view-all-events {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #c9a961 0%, #b89451 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-view-all-events:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    color: #000;
    border-color: #d4b36a;
}

.btn-view-all-events i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .event-card-home {
        min-height: 260px;
        padding: 20px 15px;
    }
    
    .event-icon-container {
        width: 75px;
        height: 75px;
    }
    
    .event-icon {
        width: 50px;
        height: 50px;
    }
    
    .event-title {
        font-size: 14px;
        min-height: 38px;
    }
    
    .event-status {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .event-time {
        font-size: 12px;
    }
}

/* ===================================
   Menu Dropdown Submenu
   =================================== */
.header-area .main-nav .nav li.has-sub {
    position: relative;
}

.header-area .main-nav .nav li.has-sub > a {
    position: relative;
    padding-right: 25px;
}

.header-area .main-nav .nav li.has-sub > a i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.header-area .main-nav .nav li.has-sub:hover > a i {
    transform: rotate(180deg);
}

.header-area .main-nav .nav li.has-sub .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1f2327;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    padding: 8px 0;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.header-area .main-nav .nav li.has-sub:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-area .main-nav .nav li.has-sub .sub-menu li {
    display: block;
    width: 100%;
}

.header-area .main-nav .nav li.has-sub .sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: #c9a961;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.header-area .main-nav .nav li.has-sub .sub-menu li a:hover {
    background: rgba(201, 169, 97, 0.1);
    padding-left: 25px;
    border-left-color: #c9a961;
    color: #d4b36a;
}

.header-area .main-nav .nav li.has-sub .sub-menu li a i {
    margin-right: 8px;
    font-size: 14px;
}

/* Mobile Submenu */
@media (max-width: 1200px) {
    .header-area .main-nav .nav li.has-sub .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .header-area .main-nav .nav li.has-sub:hover .sub-menu,
    .header-area .main-nav .nav li.has-sub.active .sub-menu {
        max-height: 200px;
    }
    
    .header-area .main-nav .nav li.has-sub .sub-menu li a {
        padding-left: 40px;
    }
    
    .header-area .main-nav .nav li.has-sub .sub-menu li a:hover {
        padding-left: 45px;
    }
}
