/* style.css - Estilos StormZ */
:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --blood-red: #8b0000;
    --bright-red: #cc0000;
    --dark-red: #5a0000;
    --text-light: #e0e0e0;
    --text-gray: #b0b0b0;
    --text-dark: #888888;
    --border-red: #4a0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.main-header {
    background: linear-gradient(180deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    border-bottom: 3px solid var(--blood-red);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo a {
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--bright-red);
}

.logo-text .highlight {
    color: var(--blood-red);
}

/* Navegação */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blood-red);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-light);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-light);
}

.nav-link.active::after {
    width: 100%;
    background: var(--bright-red);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-small {
    background: var(--blood-red);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-small:hover {
    background: var(--bright-red);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--secondary-black);
    padding: 20px;
    border-top: 2px solid var(--blood-red);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-list a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid var(--dark-gray);
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--text-light);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    padding: 60px 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 0, 0, 0.15) 0%, transparent 70%),
        var(--primary-black);
}

.hero-section {
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
}

.main-title .highlight {
    color: var(--blood-red);
    text-shadow: 0 0 40px rgba(139, 0, 0, 0.5);
}

.description-box {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-red);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.1);
}

.description-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
}

.description-text:last-of-type {
    margin-bottom: 0;
}

.description-text strong {
    color: var(--text-light);
}

.highlight-text {
    color: var(--bright-red);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid var(--border-red);
    border-bottom: 1px solid var(--border-red);
    margin: 25px 0;
}

.final-message {
    font-size: 22px;
    text-align: center;
    color: var(--text-light);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--blood-red);
}

.final-message strong {
    color: var(--bright-red);
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

/* CTA Buttons */
.cta-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--blood-red);
    color: white;
    border: 2px solid var(--blood-red);
}

.btn-primary:hover {
    background: var(--bright-red);
    border-color: var(--bright-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--dark-gray);
}

.btn-secondary:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(0deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    border-top: 3px solid var(--blood-red);
    padding: 60px 0 20px 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-logo .highlight {
    color: var(--blood-red);
}

.footer-tagline {
    color: var(--text-gray);
    margin-top: 10px;
    font-size: 14px;
}

.footer-title {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--bright-red);
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-disclaimer {
    color: var(--text-dark);
    font-size: 12px;
    opacity: 0.6;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .main-title {
        font-size: 36px;
    }

    .description-box {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-content {
        justify-content: space-between;
    }

    .main-title {
        font-size: 28px;
    }

    .description-text {
        font-size: 16px;
    }

    .highlight-text {
        font-size: 18px;
    }

    .final-message {
        font-size: 18px;
    }

    .cta-section {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header-actions .btn-small {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 24px;
    }

    .description-box {
        padding: 20px;
    }

    .description-text {
        font-size: 14px;
    }
}


/* ===== DOWNLOAD PAGE ===== */
.page-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
}

.page-title .highlight {
    color: var(--blood-red);
    text-shadow: 0 0 40px rgba(139, 0, 0, 0.5);
}

.download-box {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-red);
    border-radius: 20px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(139, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.download-box:hover {
    border-color: var(--blood-red);
    box-shadow: 0 0 80px rgba(139, 0, 0, 0.25);
}

.download-header {
    text-align: center;
    margin-bottom: 30px;
}

.download-icon {
    margin-bottom: 20px;
}

.download-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(204, 0, 0, 0.3));
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.download-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.download-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Info Grid */
.download-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--dark-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    display: block;
    font-size: 12px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-value {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

/* Download Button */
.download-actions {
    text-align: center;
    margin: 35px 0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--blood-red), var(--bright-red));
    color: white;
    padding: 20px 50px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(204, 0, 0, 0.6);
    background: linear-gradient(135deg, var(--bright-red), #ff0000);
}

.btn-download:active {
    transform: translateY(0) scale(0.98);
}

.btn-download svg {
    width: 28px;
    height: 28px;
}

/* Requirements */
.download-requirements {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid var(--dark-gray);
}

.download-requirements h3 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.requirements-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.requirements-list li:hover {
    background: rgba(139, 0, 0, 0.1);
}

.req-icon {
    font-size: 20px;
    min-width: 30px;
}

/* Notes */
.download-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.note-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--dark-gray);
}

.note-box h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 12px;
}

.note-box.warning {
    border-color: var(--blood-red);
    background: rgba(139, 0, 0, 0.1);
}

.note-box.warning h4 {
    color: var(--bright-red);
}

.install-steps {
    padding-left: 20px;
    color: var(--text-gray);
}

.install-steps li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.install-steps li strong {
    color: var(--text-light);
}

.note-box ul {
    list-style: none;
    padding: 0;
}

.note-box ul li {
    color: var(--text-gray);
    font-size: 14px;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.note-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blood-red);
    font-size: 18px;
}

/* Alternative Downloads */
.alternative-downloads {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
}

.alternative-downloads h3 {
    color: var(--text-light);
    font-size: 22px;
    margin-bottom: 20px;
}

.alt-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.alt-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--dark-gray);
    border-radius: 8px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.alt-link:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.2);
}

.alt-icon {
    font-size: 20px;
}

.alt-disclaimer {
    color: var(--text-dark);
    font-size: 14px;
    font-style: italic;
}

/* Download Progress (simulado) */
.download-progress {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--dark-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blood-red), var(--bright-red));
    width: 0%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* ===== RESPONSIVIDADE DOWNLOAD ===== */
@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .requirements-list {
        grid-template-columns: 1fr;
    }

    .download-notes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .download-box {
        padding: 25px;
        margin: 0 10px;
    }

    .download-title {
        font-size: 26px;
    }

    .btn-download {
        padding: 15px 30px;
        font-size: 18px;
        width: 100%;
        justify-content: center;
    }

    .alt-links {
        flex-direction: column;
        align-items: center;
    }

    .alt-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .info-value {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 26px;
    }

    .download-box {
        padding: 15px;
    }

    .download-title {
        font-size: 22px;
    }

    .download-subtitle {
        font-size: 15px;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .info-item {
        padding: 8px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 6px;
    }

    .btn-download {
        font-size: 16px;
        padding: 14px 20px;
    }

    .btn-download svg {
        width: 20px;
        height: 20px;
    }
}
/* ===== RANKING PAGE ===== */

/* Filtros */
.ranking-filters {
    margin-bottom: 30px;
    text-align: center;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    border: 1px solid var(--dark-gray);
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--dark-gray);
    border-radius: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.filter-btn.active {
    background: var(--blood-red);
    border-color: var(--blood-red);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
}

/* Ranking Header */
.ranking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--dark-gray);
}

.ranking-header h2 {
    font-size: 24px;
    color: var(--text-light);
    font-weight: 700;
}

.total-players {
    color: var(--text-gray);
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid var(--dark-gray);
}

/* Ranking Table */
.ranking-table-container {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-red);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.1);
}

.ranking-table-wrapper {
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.ranking-table thead {
    background: rgba(0, 0, 0, 0.4);
}

.ranking-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border-red);
}

.ranking-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.ranking-table tbody tr {
    transition: background 0.3s ease;
}

.ranking-table tbody tr:hover {
    background: rgba(139, 0, 0, 0.1);
}

.ranking-table tbody tr.top-rank-1 {
    background: rgba(255, 215, 0, 0.1);
}

.ranking-table tbody tr.top-rank-2 {
    background: rgba(192, 192, 192, 0.08);
}

.ranking-table tbody tr.top-rank-3 {
    background: rgba(205, 127, 50, 0.08);
}

/* Colunas específicas */
.col-rank {
    width: 70px;
    text-align: center;
}

.col-player {
    min-width: 150px;
}

.col-value {
    min-width: 120px;
}

.col-hardcore {
    width: 120px;
}

.col-status {
    width: 100px;
}

.col-joined {
    width: 130px;
}

/* Rank medals */
.rank-medal {
    font-size: 24px;
    display: inline-block;
}

.rank-number {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
}

.player-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
}

.value-display {
    color: var(--bright-red);
    font-weight: 700;
    font-size: 16px;
}

/* Badges */
.hardcore-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hardcore-badge.normal {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-gray);
    border: 1px solid var(--dark-gray);
}

.hardcore-badge.hardcore {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
    animation: pulseHardcore 2s infinite;
}

@keyframes pulseHardcore {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    }
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.alive {
    background: rgba(0, 255, 0, 0.15);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.status-badge.dead {
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Pagination */
.pagination {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-gray);
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-gray);
    border-radius: 6px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-btn:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--blood-red);
    border-color: var(--blood-red);
    color: white;
}

.page-btn.prev,
.page-btn.next {
    padding: 8px 20px;
}

.page-dots {
    color: var(--text-dark);
    padding: 0 5px;
}

.page-info {
    text-align: center;
    color: var(--text-dark);
    font-size: 14px;
    margin-top: 15px;
}

/* Ranking Info */
.ranking-info {
    max-width: 900px;
    margin: 30px auto 0;
}

.info-box {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 12px;
    padding: 25px;
}

.info-box h3 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
    margin-bottom: 15px;
}

.info-box ul li {
    color: var(--text-gray);
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 14px;
}

.info-box ul li strong {
    color: var(--text-light);
}

.info-note {
    color: var(--text-dark);
    font-size: 13px;
    font-style: italic;
    padding-top: 15px;
    border-top: 1px solid var(--dark-gray);
}

/* Ranking Error/Empty */
.ranking-error,
.ranking-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-gray);
}

.ranking-error p {
    margin-bottom: 10px;
}

.ranking-error p:first-child {
    color: var(--bright-red);
    font-weight: 700;
    font-size: 18px;
}

/* ===== RESPONSIVIDADE RANKING ===== */
@media (max-width: 968px) {
    .filter-group {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .ranking-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .ranking-header h2 {
        font-size: 20px;
    }
    
    .info-box ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ranking-table-container {
        padding: 10px;
        margin: 0 -10px;
        border-radius: 10px;
    }
    
    .ranking-table {
        font-size: 13px;
    }
    
    .ranking-table th,
    .ranking-table td {
        padding: 10px 8px;
    }
    
    .col-hardcore,
    .col-joined {
        display: none;
    }
    
    .col-rank {
        width: 50px;
    }
    
    .col-player {
        min-width: 100px;
    }
    
    .col-value {
        min-width: 80px;
    }
    
    .col-status {
        width: 80px;
    }
    
    .player-name {
        font-size: 14px;
    }
    
    .value-display {
        font-size: 14px;
    }
    
    .pagination-controls {
        gap: 5px;
    }
    
    .page-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .page-btn.prev,
    .page-btn.next {
        padding: 6px 12px;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .ranking-table {
        font-size: 12px;
    }
    
    .ranking-table th,
    .ranking-table td {
        padding: 8px 5px;
    }
    
    .col-status {
        width: 60px;
    }
    
    .col-rank {
        width: 40px;
    }
    
    .rank-medal {
        font-size: 18px;
    }
    
    .rank-number {
        font-size: 12px;
    }
    
    .player-name {
        font-size: 12px;
    }
    
    .value-display {
        font-size: 12px;
    }
    
    .hardcore-badge,
    .status-badge {
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .filter-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .filter-group {
        gap: 5px;
        padding: 10px;
    }
    
    .ranking-header h2 {
        font-size: 18px;
    }
    
    .total-players {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .page-btn {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .page-info {
        font-size: 12px;
    }
}

/* ===== ABOUT PAGE ===== */

.about-section {
    padding: 20px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Intro */
.about-intro {
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--border-red);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.1);
}

.intro-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: rgba(139, 0, 0, 0.1);
    border-left: 4px solid var(--blood-red);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-light);
}

/* Chapters */
.about-chapter {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.about-chapter:hover {
    border-color: var(--border-red);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.1);
}

.chapter-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--dark-gray);
    padding-bottom: 15px;
}

.chapter-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--blood-red);
    min-width: 60px;
}

.chapter-title {
    font-size: 24px;
    color: var(--text-light);
    font-weight: 700;
}

.chapter-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.chapter-content p:last-child {
    margin-bottom: 0;
}

.highlight-text-inline {
    color: var(--bright-red);
    font-weight: 700;
}

/* Problem Box */
.problem-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
    border: 1px solid var(--dark-gray);
}

.problem-box h4 {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 12px;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 15px;
}

.problem-icon {
    font-size: 20px;
    min-width: 30px;
}

.problem-list li strong {
    color: var(--text-light);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--blood-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.feature-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.feature-card h4 {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Evolution List */
.evolution-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.evolution-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 15px;
}

.evolution-list li:last-child {
    margin-bottom: 0;
}

.evo-icon {
    font-size: 18px;
    min-width: 30px;
}

.evolution-list li strong {
    color: var(--text-light);
}

/* Legacy Box */
.legacy-box {
    margin-top: 20px;
}

.legacy-quote {
    background: rgba(139, 0, 0, 0.1);
    border-left: 4px solid var(--blood-red);
    padding: 20px 25px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
}

.legacy-quote p {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
    font-weight: 300;
}

.legacy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
}

.stat-item .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--bright-red);
    margin-bottom: 5px;
}

.stat-item .stat-label {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
}

/* Conclusion */
.about-conclusion {
    margin: 40px 0 30px;
}

.conclusion-box {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
    border: 2px solid var(--blood-red);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 60px rgba(139, 0, 0, 0.2);
}

.conclusion-box h3 {
    font-size: 32px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.conclusion-box p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.conclusion-message {
    font-size: 20px !important;
    font-weight: 600;
    color: var(--text-light) !important;
}

.conclusion-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Timeline */
.timeline-section {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.timeline-section h3 {
    font-size: 24px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blood-red), var(--bright-red));
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--blood-red);
    border-radius: 50%;
    border: 3px solid var(--primary-black);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.4);
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--bright-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.timeline-content h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 3px;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* ===== RESPONSIVIDADE ABOUT ===== */
@media (max-width: 968px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .legacy-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .chapter-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 20px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .about-chapter {
        padding: 20px;
    }
    
    .chapter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .chapter-number {
        font-size: 22px;
        min-width: auto;
    }
    
    .chapter-title {
        font-size: 18px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .legacy-stats {
        grid-template-columns: 1fr;
    }
    
    .conclusion-box {
        padding: 25px;
    }
    
    .conclusion-box h3 {
        font-size: 24px;
    }
    
    .conclusion-box p {
        font-size: 16px;
    }
    
    .conclusion-message {
        font-size: 17px !important;
    }
    
    .conclusion-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .conclusion-cta .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item::before {
        left: -27px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-content h4 {
        font-size: 16px;
    }
    
    .legacy-quote p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .about-intro {
        padding: 15px;
    }
    
    .intro-text {
        font-size: 14px;
    }
    
    .highlight-box {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .about-chapter {
        padding: 15px;
        border-radius: 10px;
    }
    
    .chapter-number {
        font-size: 18px;
    }
    
    .chapter-title {
        font-size: 16px;
    }
    
    .chapter-content p {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card h4 {
        font-size: 15px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .problem-list li {
        font-size: 13px;
    }
    
    .evolution-list li {
        font-size: 13px;
    }
    
    .conclusion-box h3 {
        font-size: 20px;
    }
    
    .conclusion-box p {
        font-size: 14px;
    }
    
    .conclusion-message {
        font-size: 15px !important;
    }
    
    .stat-item .stat-number {
        font-size: 22px;
    }
    
    .stat-item .stat-label {
        font-size: 12px;
    }
    
    .legacy-quote p {
        font-size: 15px;
    }
    
    .timeline-year {
        font-size: 12px;
    }
    
    .timeline-content h4 {
        font-size: 14px;
    }
    
    .timeline-content p {
        font-size: 12px;
    }
}

/* ===== INDEX PAGE - MODERN STYLES ===== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        var(--primary-black);
    overflow: hidden;
    padding: 40px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b0000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--primary-black) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--blood-red);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: pulseBadge 2s infinite;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(204, 0, 0, 0.5);
    }
}

.hero-title {
    display: block;
    margin-bottom: 40px;
}

.hero-subtitle {
    display: block;
    font-size: 20px;
    font-weight: 300;
    color: var(--text-gray);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-main-title {
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 8px;
    text-shadow: 0 0 60px rgba(139, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-main-title .highlight {
    color: var(--blood-red);
    text-shadow: 0 0 80px rgba(139, 0, 0, 0.5);
}

.hero-tagline {
    display: block;
    font-size: 22px;
    font-weight: 300;
    color: var(--text-gray);
    margin-top: 10px;
    letter-spacing: 3px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--bright-red);
}

.hero-stat .stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 18px;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-hero .btn-icon {
    font-size: 20px;
}

.btn-primary.btn-hero {
    background: linear-gradient(135deg, var(--blood-red), var(--bright-red));
    border: none;
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4);
}

.btn-primary.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(204, 0, 0, 0.6);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: var(--secondary-black);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--blood-red);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
}

.section-title .highlight {
    color: var(--blood-red);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--blood-red);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid var(--border-red);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--bright-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 80px 0;
    background: var(--primary-black);
    border-top: 1px solid var(--dark-gray);
    border-bottom: 1px solid var(--dark-gray);
}

.quote-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.quote-content blockquote {
    font-size: 32px;
    color: var(--text-light);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.4;
}

.quote-content blockquote strong {
    color: var(--bright-red);
    font-style: normal;
}

.quote-author {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===== MAPS SECTION ===== */
.maps-section {
    padding: 80px 0;
    background: var(--secondary-black);
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.map-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    border-color: var(--blood-red);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
}

.map-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.map-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.map-image.lobby {
    background: 
        linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(0, 0, 0, 0.7)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='10' y='10' width='80' height='80' fill='%238b0000' opacity='0.1'/%3E%3Crect x='30' y='30' width='40' height='40' fill='%238b0000' opacity='0.2'/%3E%3C/svg%3E");
    background-size: cover, 50px 50px;
}

.map-image.saopaulo {
    background: 
        linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(0, 0, 0, 0.7)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='20' y='20' width='60' height='60' fill='%238b0000' opacity='0.1'/%3E%3Crect x='40' y='40' width='20' height='20' fill='%238b0000' opacity='0.2'/%3E%3C/svg%3E");
    background-size: cover, 50px 50px;
}

.map-image.inferno {
    background: 
        linear-gradient(135deg, rgba(139, 0, 0, 0.4), rgba(0, 0, 0, 0.8)),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='30' fill='%238b0000' opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='15' fill='%238b0000' opacity='0.2'/%3E%3C/svg%3E");
    background-size: cover, 50px 50px;
}

.map-info {
    padding: 20px;
}

.map-info h3 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.map-info p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.map-difficulty {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--bright-red);
    border: 1px solid var(--border-red);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 0;
    background: var(--primary-black);
    border-top: 1px solid var(--dark-gray);
    border-bottom: 1px solid var(--dark-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-box-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--bright-red);
    margin-bottom: 5px;
    text-shadow: 0 0 40px rgba(139, 0, 0, 0.2);
}

.stat-box-label {
    display: block;
    font-size: 16px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 80px 0;
    background: 
        radial-gradient(ellipse at center, rgba(139, 0, 0, 0.1) 0%, transparent 70%),
        var(--secondary-black);
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.final-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
}

.final-cta-content h2 .highlight {
    color: var(--blood-red);
}

.final-cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-large .btn-icon {
    font-size: 20px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .maps-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-main-title {
        font-size: 60px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 40px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat .stat-number {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .maps-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .quote-content blockquote {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-box-number {
        font-size: 36px;
    }
    
    .final-cta-content h2 {
        font-size: 32px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 30px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .hero-stat .stat-number {
        font-size: 22px;
    }
    
    .hero-stat .stat-label {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .quote-content blockquote {
        font-size: 20px;
    }
    
    .stat-box-number {
        font-size: 28px;
    }
    
    .stat-box-label {
        font-size: 14px;
    }
    
    .final-cta-content h2 {
        font-size: 26px;
    }
    
    .final-cta-content p {
        font-size: 16px;
    }
}

/* ===== LEGACY SECTION ===== */
.legacy-section {
    padding: 80px 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
        var(--primary-black);
    border-top: 1px solid var(--dark-gray);
    border-bottom: 1px solid var(--dark-gray);
}

.legacy-content {
    max-width: 1100px;
    margin: 0 auto;
}

.legacy-header {
    text-align: center;
    margin-bottom: 50px;
}

.legacy-header .section-tag {
    display: inline-block;
    color: var(--blood-red);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.legacy-header .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-light);
}

.legacy-header .section-title .highlight {
    color: var(--blood-red);
}

/* Legacy Grid */
.legacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.legacy-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legacy-card:hover {
    transform: translateY(-8px);
    border-color: var(--blood-red);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
}

.legacy-card:hover::before {
    opacity: 1;
}

.legacy-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.legacy-card h3 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.legacy-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.legacy-card p strong {
    color: var(--text-light);
}

.legacy-card .highlight-text {
    color: var(--bright-red);
    font-weight: 700;
}

/* Legacy Timeline */
.legacy-timeline {
    position: relative;
    padding: 20px 0 20px 40px;
    border-left: 3px solid var(--border-red);
}

.legacy-timeline .timeline-item.legacy {
    position: relative;
    margin-bottom: 30px;
    padding-left: 25px;
}

.legacy-timeline .timeline-item.legacy:last-child {
    margin-bottom: 0;
}

.legacy-timeline .timeline-item.legacy::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--blood-red);
    border-radius: 50%;
    border: 3px solid var(--primary-black);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.4);
}

.legacy-timeline .timeline-item.legacy .timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--bright-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.legacy-timeline .timeline-item.legacy .timeline-content h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 3px;
}

.legacy-timeline .timeline-item.legacy .timeline-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* ===== RESPONSIVIDADE LEGACY ===== */
@media (max-width: 1200px) {
    .legacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .legacy-section {
        padding: 50px 0;
    }
    
    .legacy-header .section-title {
        font-size: 32px;
    }
    
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legacy-card {
        padding: 20px;
    }
    
    .legacy-timeline {
        padding-left: 30px;
    }
    
    .legacy-timeline .timeline-item.legacy {
        padding-left: 20px;
    }
    
    .legacy-timeline .timeline-item.legacy::before {
        left: -33px;
        width: 14px;
        height: 14px;
    }
    
    .legacy-timeline .timeline-item.legacy .timeline-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .legacy-header .section-title {
        font-size: 26px;
    }
    
    .legacy-card h3 {
        font-size: 16px;
    }
    
    .legacy-card p {
        font-size: 13px;
    }
    
    .legacy-timeline .timeline-item.legacy .timeline-content h4 {
        font-size: 14px;
    }
    
    .legacy-timeline .timeline-item.legacy .timeline-content p {
        font-size: 13px;
    }
}

/* ===== AUTH PAGES ===== */
.auth-page {
    background: var(--primary-black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    position: relative;
}

.auth-box {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--border-red);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 60px rgba(139, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
    line-height: 1.2;
}

.auth-logo .highlight {
    color: var(--blood-red);
}

.auth-logo-sub {
    display: block;
    font-size: 12px;
    color: var(--blood-red);
    letter-spacing: 4px;
    font-weight: 700;
}

.auth-subtitle {
    color: var(--text-gray);
    margin-top: 10px;
    font-size: 16px;
}

.auth-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-alert.error {
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid var(--blood-red);
    color: #ff6b6b;
}

.auth-alert.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
}

.auth-alert .alert-icon {
    font-size: 18px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.auth-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--dark-gray);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--blood-red);
}

.auth-form input::placeholder {
    color: var(--text-dark);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    color: var(--text-gray);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--blood-red);
    cursor: pointer;
}

.forgot-link {
    color: var(--text-gray);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--bright-red);
}

.btn-login {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    justify-content: center;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-gray);
}

.auth-footer p {
    color: var(--text-gray);
    font-size: 14px;
}

.register-link {
    color: var(--bright-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: #ff3333;
}

.auth-test-accounts {
    margin-top: 10px;
    color: var(--text-dark) !important;
    font-size: 12px !important;
}

/* ===== DASHBOARD ===== */
.dashboard-content {
    padding: 30px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid var(--dark-gray);
    margin-bottom: 30px;
}

.dashboard-title h1 {
    font-size: 32px;
    color: var(--text-light);
}

.dashboard-title h1 .highlight {
    color: var(--blood-red);
}

.dashboard-welcome {
    color: var(--text-gray);
    font-size: 16px;
    margin-top: 5px;
}

.dashboard-welcome strong {
    color: var(--text-light);
}

.btn-logout {
    background: var(--blood-red);
    border: none;
}

.btn-logout:hover {
    background: var(--bright-red);
}

/* Player Status */
.player-status {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.status-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: border-color 0.3s ease;
}

.status-card:hover {
    border-color: var(--border-red);
}

.status-icon {
    font-size: 28px;
}

.status-info {
    flex: 1;
}

.status-label {
    display: block;
    color: var(--text-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-value {
    display: block;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 700;
}

.status-value.active {
    color: #00ff00;
}

.status-value.inactive {
    color: #ff4444;
}

.status-value.coins {
    color: #ffd700;
}

.status-value.points {
    color: #00bfff;
}

/* Stats Painel */
.player-stats {
    margin-bottom: 30px;
}

.stats-grid-painel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.stat-painel-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-painel-card:hover {
    border-color: var(--blood-red);
    transform: translateY(-3px);
}

.stat-painel-number {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--bright-red);
}

.stat-painel-label {
    display: block;
    color: var(--text-gray);
    font-size: 12px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Characters */
.characters-section {
    margin-bottom: 30px;
}

.section-header-painel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header-painel h2 {
    color: var(--text-light);
    font-size: 24px;
}

.char-count {
    color: var(--text-gray);
    font-size: 14px;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.character-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.character-card:hover {
    border-color: var(--blood-red);
    transform: translateY(-3px);
}

.char-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--dark-gray);
}

.char-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.char-status {
    font-size: 14px;
    font-weight: 600;
}

.char-status.alive {
    color: #00ff00;
}

.char-status.dead {
    color: #ff4444;
}

.char-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.char-stat {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
}

.char-stat-label {
    display: block;
    color: var(--text-dark);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.char-stat-value {
    display: block;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
}

.char-stat-value.hardcore {
    color: #ff6b35;
}

.char-kills {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.kill-badge {
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-gray);
}

.char-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--dark-gray);
    font-size: 12px;
    color: var(--text-dark);
}

.empty-characters {
    text-align: center;
    padding: 40px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    border: 1px dashed var(--dark-gray);
}

.empty-characters p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

/* Account Info */
.account-info {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 12px;
    padding: 25px;
}

.account-info h3 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 20px;
}

.info-grid-painel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-item-painel {
    padding: 10px 0;
}

.info-label {
    display: block;
    color: var(--text-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    display: block;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    margin-top: 3px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 968px) {
    .stats-grid-painel {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-grid-painel {
        grid-template-columns: 1fr 1fr;
    }
    
    .player-status {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .stats-grid-painel {
        grid-template-columns: 1fr 1fr;
    }
    
    .info-grid-painel {
        grid-template-columns: 1fr;
    }
    
    .player-status {
        grid-template-columns: 1fr 1fr;
    }
    
    .characters-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .stats-grid-painel {
        grid-template-columns: 1fr 1fr;
    }
    
    .player-status {
        grid-template-columns: 1fr;
    }
    
    .char-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .auth-box {
        padding: 20px;
    }
    
    .auth-logo {
        font-size: 26px;
    }
}

/* Adicionar ao style.css */
.btn-painel {
    background: var(--blood-red);
    border: none;
    color: white !important;
}

.btn-painel:hover {
    background: var(--bright-red);
    transform: scale(1.05);
}

.btn-logout-header {
    background: transparent;
    border: 1px solid var(--dark-gray);
    color: var(--text-gray);
}

.btn-logout-header:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
}

/* ============================================
   HYDRA STYLE - HEADER MODERNO
   ============================================ */

/* Importar fontes */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

.hydra-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.hydra-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: rgba(204, 0, 0, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hydra-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.hydra-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* ===== LOGO HYDRA ===== */
.hydra-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
}

.logo-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.3));
}

.hydra-logo a:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text-hydra {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-text-hydra .highlight-hydra {
    color: #cc0000;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.4);
}

.logo-subtitle-hydra {
    font-family: 'Rajdhani', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #8b0000;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -2px;
    opacity: 0.8;
}

/* ===== NAVEGAÇÃO HYDRA ===== */
.hydra-nav {
    display: flex;
    align-items: center;
}

.hydra-nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.hydra-nav-item {
    position: relative;
}

.hydra-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: #888888;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.hydra-nav-link .nav-icon {
    font-size: 16px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hydra-nav-link .nav-text {
    position: relative;
}

.hydra-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b0000, #cc0000);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.hydra-nav-link:hover {
    color: #ffffff;
}

.hydra-nav-link:hover .nav-icon {
    opacity: 1;
}

.hydra-nav-link:hover::after {
    width: 60%;
}

.hydra-nav-link.active {
    color: #ffffff;
    background: rgba(139, 0, 0, 0.15);
}

.hydra-nav-link.active .nav-icon {
    opacity: 1;
}

.hydra-nav-link.active::after {
    width: 60%;
}

/* ===== BOTÕES HYDRA ===== */
.hydra-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hydra {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-hydra .btn-hydra-icon {
    font-size: 14px;
}

.btn-hydra-login {
    background: transparent;
    color: #888888;
    border-color: rgba(136, 136, 136, 0.3);
}

.btn-hydra-login:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-hydra-register {
    background: linear-gradient(135deg, #8b0000, #cc0000);
    color: #ffffff;
    border-color: #8b0000;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-hydra-register:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
    background: linear-gradient(135deg, #a00000, #dd0000);
}

.btn-hydra-painel {
    background: rgba(139, 0, 0, 0.2);
    color: #cc0000;
    border-color: rgba(139, 0, 0, 0.3);
}

.btn-hydra-painel:hover {
    background: rgba(139, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-hydra-logout {
    background: transparent;
    color: #666666;
    border-color: rgba(102, 102, 102, 0.3);
}

.btn-hydra-logout:hover {
    color: #ff4444;
    border-color: rgba(255, 68, 68, 0.3);
    transform: translateY(-2px);
}

/* ===== MENU TOGGLE HYDRA ===== */
.hydra-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 4px;
}

.hydra-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #888888;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hydra-toggle:hover span {
    background: #ffffff;
}

.hydra-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hydra-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hydra-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== MOBILE MENU HYDRA ===== */
.hydra-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(139, 0, 0, 0.3);
    padding: 30px 25px;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.hydra-mobile-menu.active {
    transform: translateX(0);
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    margin-bottom: 25px;
}

.mobile-menu-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
}

.mobile-menu-title .highlight {
    color: #cc0000;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #888888;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #ffffff;
}

.hydra-mobile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hydra-mobile-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #888888;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hydra-mobile-list a .nav-icon {
    font-size: 18px;
    opacity: 0.6;
}

.hydra-mobile-list a:hover {
    color: #ffffff;
    background: rgba(139, 0, 0, 0.15);
}

.hydra-mobile-list a.active {
    color: #ffffff;
    background: rgba(139, 0, 0, 0.2);
}

.hydra-mobile-list a.active .nav-icon {
    opacity: 1;
}

.mobile-menu-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-actions .btn-hydra {
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
}

/* ===== OVERLAY ===== */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
}

.mobile-overlay.active {
    display: block;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .hydra-nav {
        display: none;
    }

    .hydra-toggle {
        display: flex;
    }

    .hydra-actions .btn-hydra {
        display: none;
    }

    .hydra-actions .btn-hydra-login {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hydra-container {
        padding: 0 15px;
    }

    .logo-text-hydra {
        font-size: 20px;
    }

    .logo-subtitle-hydra {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .logo-icon svg {
        width: 32px;
        height: 32px;
    }

    .hydra-mobile-menu {
        width: 280px;
        padding: 25px 20px;
    }

    .hydra-actions .btn-hydra {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text-hydra {
        font-size: 17px;
        letter-spacing: 1px;
    }

    .logo-subtitle-hydra {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .logo-icon svg {
        width: 28px;
        height: 28px;
    }

    .hydra-mobile-menu {
        width: 100%;
        border-left: none;
    }

    .hydra-header {
        padding: 10px 0;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hydra-header {
    animation: fadeInDown 0.5s ease-out;
}

/* Scroll effect */
.hydra-header.scrolled .logo-text-hydra {
    font-size: 20px;
    transition: font-size 0.3s ease;
}

.hydra-header.scrolled .logo-icon svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

/* ============================================
   HYDRA STYLE - HEADER MODERNO
   ============================================ */

/* Importar fontes */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

.hydra-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.hydra-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: rgba(204, 0, 0, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hydra-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.hydra-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* ===== LOGO HYDRA ===== */
.hydra-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
}

.logo-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.3));
}

.hydra-logo a:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text-hydra {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #ffffff; /* Storm em branco */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-text-hydra .highlight-hydra {
    color: #cc0000; /* Z em vermelho */
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.4);
}

.logo-subtitle-hydra {
    font-family: 'Rajdhani', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #8b0000;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -2px;
    opacity: 0.8;
}

/* ===== NAVEGAÇÃO HYDRA ===== */
.hydra-nav {
    display: flex;
    align-items: center;
}

.hydra-nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.hydra-nav-item {
    position: relative;
}

.hydra-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: #888888;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.hydra-nav-link .nav-icon {
    font-size: 16px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hydra-nav-link .nav-text {
    position: relative;
}

.hydra-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b0000, #cc0000);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.hydra-nav-link:hover {
    color: #ffffff;
}

.hydra-nav-link:hover .nav-icon {
    opacity: 1;
}

.hydra-nav-link:hover::after {
    width: 60%;
}

.hydra-nav-link.active {
    color: #ffffff;
    background: rgba(139, 0, 0, 0.15);
}

.hydra-nav-link.active .nav-icon {
    opacity: 1;
}

.hydra-nav-link.active::after {
    width: 60%;
}

/* ===== BOTÕES HYDRA - CORRIGIDOS ===== */
.hydra-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-hydra {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 100px;
}

.btn-hydra .btn-hydra-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-hydra .btn-hydra-text {
    position: relative;
    z-index: 1;
}

/* Botão ENTRAR */
.btn-hydra-login {
    background: transparent;
    color: #aaaaaa;
    border-color: rgba(136, 136, 136, 0.25);
}

.btn-hydra-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transition: left 0.3s ease;
}

.btn-hydra-login:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.btn-hydra-login:hover::before {
    left: 0;
}

.btn-hydra-login:active {
    transform: translateY(0px) scale(0.98);
}

/* Botão REGISTRAR */
.btn-hydra-register {
    background: linear-gradient(135deg, #8b0000, #cc0000);
    color: #ffffff;
    border-color: #8b0000;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
}

.btn-hydra-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.btn-hydra-register:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.5);
    background: linear-gradient(135deg, #a00000, #dd0000);
    border-color: #cc0000;
}

.btn-hydra-register:hover::before {
    left: 0;
}

.btn-hydra-register:active {
    transform: translateY(0px) scale(0.97);
}

.btn-hydra-register .btn-hydra-icon {
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Botão PAINEL */
.btn-hydra-painel {
    background: rgba(139, 0, 0, 0.15);
    color: #cc0000;
    border-color: rgba(139, 0, 0, 0.25);
}

.btn-hydra-painel:hover {
    background: rgba(139, 0, 0, 0.25);
    color: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.2);
}

/* Botão LOGOUT */
.btn-hydra-logout {
    background: transparent;
    color: #666666;
    border-color: rgba(102, 102, 102, 0.2);
}

.btn-hydra-logout:hover {
    color: #ff4444;
    border-color: rgba(255, 68, 68, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.1);
}

/* ===== MENU TOGGLE HYDRA ===== */
.hydra-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 4px;
}

.hydra-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #888888;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hydra-toggle:hover span {
    background: #ffffff;
}

.hydra-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hydra-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hydra-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== MOBILE MENU HYDRA ===== */
.hydra-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(139, 0, 0, 0.3);
    padding: 30px 25px;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.hydra-mobile-menu.active {
    transform: translateX(0);
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    margin-bottom: 25px;
}

.mobile-menu-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
}

.mobile-menu-title .highlight {
    color: #cc0000;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #888888;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #ffffff;
}

.hydra-mobile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hydra-mobile-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #888888;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hydra-mobile-list a .nav-icon {
    font-size: 18px;
    opacity: 0.6;
}

.hydra-mobile-list a:hover {
    color: #ffffff;
    background: rgba(139, 0, 0, 0.15);
}

.hydra-mobile-list a.active {
    color: #ffffff;
    background: rgba(139, 0, 0, 0.2);
}

.hydra-mobile-list a.active .nav-icon {
    opacity: 1;
}

.mobile-menu-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-actions .btn-hydra {
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
}

/* ===== OVERLAY ===== */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
}

.mobile-overlay.active {
    display: block;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .hydra-nav {
        display: none;
    }

    .hydra-toggle {
        display: flex;
    }

    .hydra-actions .btn-hydra {
        display: none;
    }

    .hydra-actions .btn-hydra-login {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hydra-container {
        padding: 0 15px;
    }

    .logo-text-hydra {
        font-size: 20px;
    }

    .logo-subtitle-hydra {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .logo-icon svg {
        width: 32px;
        height: 32px;
    }

    .hydra-mobile-menu {
        width: 280px;
        padding: 25px 20px;
    }

    .hydra-actions .btn-hydra {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .logo-text-hydra {
        font-size: 17px;
        letter-spacing: 1px;
    }

    .logo-subtitle-hydra {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .logo-icon svg {
        width: 28px;
        height: 28px;
    }

    .hydra-mobile-menu {
        width: 100%;
        border-left: none;
    }

    .hydra-header {
        padding: 10px 0;
    }

    .hydra-actions .btn-hydra {
        display: none !important;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hydra-header {
    animation: fadeInDown 0.5s ease-out;
}

/* ===== DEVELOPER STYLES ===== */

/* Botão Developer no painel */
.btn-developer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-developer:hover {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.btn-developer .btn-icon {
    animation: spinGear 4s linear infinite;
}

@keyframes spinGear {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Developer Badge na seção de informações */
.developer-tag {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    padding: 10px 15px !important;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.developer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #00d4ff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    animation: pulseDeveloper 2s infinite;
}

@keyframes pulseDeveloper {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    }
}

/* Responsividade para o botão Developer */
@media (max-width: 768px) {
    .btn-developer {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .developer-badge {
        font-size: 12px;
        padding: 3px 12px;
    }
}

/* ============================================
   DEVELOPER PANEL STYLES
   ============================================ */

.developer-content {
    padding: 30px 0;
}

.dev-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--dark-gray);
}

.dev-header h1 {
    font-size: 36px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.dev-header h1 .highlight {
    color: #00d4ff;
}

.dev-subtitle {
    color: var(--text-gray);
    font-size: 16px;
}

.dev-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Alertas */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
}

.alert-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
}

/* Seções */
.dev-section {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.dev-section h2 {
    color: var(--text-light);
    font-size: 22px;
    margin-bottom: 20px;
}

/* Tabela */
.table-responsive {
    overflow-x: auto;
}

.dev-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.dev-table thead {
    background: rgba(0, 0, 0, 0.3);
}

.dev-table th {
    padding: 12px 15px;
    text-align: left;
    color: var(--text-gray);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border-red);
}

.dev-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.dev-table tbody tr:hover {
    background: rgba(139, 0, 0, 0.05);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: rgba(0, 255, 0, 0.15);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.badge-danger {
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.badge-type {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.badge-dev {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.badge-normal {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
    border: 1px solid var(--dark-gray);
}

/* Botões */
.btn-edit {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.btn-edit:hover {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    transform: translateY(-2px);
}

/* Formulário Developer */
.dev-form {
    margin-top: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--dark-gray);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blood-red);
}

.form-group input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #00d4ff;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-gray);
}

/* Editor de Personagens */
.dev-characters {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--dark-gray);
}

.dev-characters h3 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 20px;
}

.char-edit-form {
    margin-bottom: 15px;
}

.char-edit-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-gray);
    border-radius: 10px;
    padding: 20px;
    transition: border-color 0.3s ease;
}

.char-edit-card:hover {
    border-color: var(--border-red);
}

.char-edit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--dark-gray);
}

.char-edit-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
}

.char-edit-id {
    color: var(--text-dark);
    font-size: 13px;
}

.char-edit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.char-edit-grid .form-group {
    margin-bottom: 0;
}

.char-edit-grid .form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.char-edit-grid input,
.char-edit-grid select {
    padding: 8px 12px;
    font-size: 13px;
}

.char-edit-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--dark-gray);
    font-size: 13px;
    color: var(--text-dark);
}

.char-edit-footer .btn-edit {
    padding: 6px 16px;
    font-size: 12px;
}

/* Guia Rápido */
.dev-quick-guide {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.dev-quick-guide h3 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 15px;
}

.guide-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    color: var(--text-gray);
    font-size: 14px;
}

.guide-badge {
    display: inline-block;
    padding: 2px 10px;
    background: var(--blood-red);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.guide-dev {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 968px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .char-edit-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .dev-table {
        font-size: 12px;
    }
    
    .dev-table th,
    .dev-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .dev-header h1 {
        font-size: 28px;
    }
    
    .dev-section {
        padding: 15px;
    }
    
    .char-edit-grid {
        grid-template-columns: 1fr;
    }
    
    .char-edit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .char-edit-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .guide-grid {
        flex-direction: column;
    }
    
    .guide-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dev-header h1 {
        font-size: 22px;
    }
    
    .dev-table {
        font-size: 11px;
    }
    
    .dev-table th,
    .dev-table td {
        padding: 6px 8px;
    }
    
    .badge {
        font-size: 9px;
        padding: 2px 8px;
    }
}
/* ============================================
   RANKING COMPACTO
   ============================================ */

.ranking-page {
    padding: 20px 0 !important;
}

.ranking-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Mini */
.ranking-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    margin-bottom: 15px;
}

.ranking-header-mini h1 {
    font-size: 22px;
    color: var(--text-light);
    font-weight: 700;
}

.ranking-total {
    color: var(--text-gray);
    font-size: 13px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 14px;
    border-radius: 12px;
}

/* Filtros Mini */
.ranking-filters-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.filter-mini {
    padding: 5px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-gray);
    border-radius: 6px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.filter-mini:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
}

.filter-mini.active {
    background: var(--blood-red);
    border-color: var(--blood-red);
    color: white;
}

/* Tabela Compacta */
.ranking-table-mini {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ranking-table-mini table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ranking-table-mini thead {
    background: rgba(0, 0, 0, 0.4);
}

.ranking-table-mini th {
    padding: 8px 10px;
    text-align: left;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--dark-gray);
}

.ranking-table-mini td {
    padding: 7px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

.ranking-table-mini tbody tr:hover {
    background: rgba(139, 0, 0, 0.05);
}

.ranking-table-mini tbody tr.top-1 {
    background: rgba(255, 215, 0, 0.06);
}
.ranking-table-mini tbody tr.top-2 {
    background: rgba(192, 192, 192, 0.04);
}
.ranking-table-mini tbody tr.top-3 {
    background: rgba(205, 127, 50, 0.04);
}

/* Colunas */
.r-rank { width: 40px; text-align: center; font-size: 16px; }
.r-player { min-width: 120px; }
.r-value { min-width: 80px; font-weight: 700; color: var(--bright-red); }
.r-stats { text-align: center; color: var(--text-gray); font-size: 12px; min-width: 45px; }
.r-rep { min-width: 60px; }
.r-mode { text-align: center; min-width: 40px; }
.r-status { text-align: center; min-width: 35px; }

.r-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
}

.r-num {
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 600;
}

/* Reputação Badge */
.rep-badge {
    display: inline-block;
    padding: 1px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.rep-badge.good {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.rep-badge.evil {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.rep-badge.neutral {
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-gray);
}

/* Modo Badge */
.mode-badge {
    font-size: 14px;
}

.mode-badge.hc {
    color: #ff6b35;
}

.mode-badge.normal {
    color: var(--text-dark);
}

/* Status Dot */
.status-dot {
    font-size: 14px;
}

.status-dot.alive { color: #00ff00; }
.status-dot.dead { color: #ff4444; }
.status-dot.zombie { color: #00ff88; }
.status-dot.unknown { color: var(--text-dark); }

/* Paginação Mini */
.pagination-mini {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.p-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-gray);
    border-radius: 6px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.p-mini:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
}

.p-mini.active {
    background: var(--blood-red);
    border-color: var(--blood-red);
    color: white;
}

/* Erros */
.ranking-error,
.ranking-empty {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-gray);
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .ranking-table-mini {
        font-size: 12px;
        overflow-x: auto;
    }
    
    .ranking-table-mini th,
    .ranking-table-mini td {
        padding: 5px 6px;
    }
    
    .r-stats { display: none; }
    .r-rep { min-width: 50px; }
    .r-value { min-width: 60px; font-size: 12px; }
    .r-name { font-size: 12px; }
    
    .filter-mini {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .ranking-header-mini h1 {
        font-size: 18px;
    }
    
    .ranking-total {
        font-size: 11px;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .r-mode { display: none; }
    .r-status { display: none; }
    .r-rank { width: 30px; font-size: 14px; }
    .r-value { min-width: 50px; font-size: 11px; }
    .r-name { font-size: 11px; }
    .r-player { min-width: 80px; }
    
    .filter-mini {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .p-mini {
        min-width: 26px;
        height: 26px;
        font-size: 11px;
    }
}
/* ============================================
   RANKING COMPACTO - CORRIGIDO
   ============================================ */

.ranking-page {
    padding: 20px 0 !important;
}

.ranking-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Mini */
.ranking-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    margin-bottom: 15px;
}

.ranking-header-mini h1 {
    font-size: 22px;
    color: var(--text-light);
    font-weight: 700;
}

.ranking-total {
    color: var(--text-gray);
    font-size: 13px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 14px;
    border-radius: 12px;
}

/* Filtros Mini */
.ranking-filters-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.filter-mini {
    padding: 5px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-gray);
    border-radius: 6px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.filter-mini:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
}

.filter-mini.active {
    background: var(--blood-red);
    border-color: var(--blood-red);
    color: white;
}

/* Tabela Compacta */
.ranking-table-mini {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ranking-table-mini table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ranking-table-mini thead {
    background: rgba(0, 0, 0, 0.4);
}

.ranking-table-mini th {
    padding: 10px 12px;
    text-align: left;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--dark-gray);
}

.ranking-table-mini td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

.ranking-table-mini tbody tr:hover {
    background: rgba(139, 0, 0, 0.05);
}

.ranking-table-mini tbody tr.top-1 {
    background: rgba(255, 215, 0, 0.06);
}
.ranking-table-mini tbody tr.top-2 {
    background: rgba(192, 192, 192, 0.04);
}
.ranking-table-mini tbody tr.top-3 {
    background: rgba(205, 127, 50, 0.04);
}

/* Colunas - Alinhadas corretamente */
.r-rank { 
    width: 50px; 
    text-align: center; 
    font-size: 16px;
}

.r-player { 
    min-width: 140px; 
    text-align: left;
}

.r-value { 
    min-width: 90px; 
    text-align: center;
    font-weight: 700; 
    color: var(--bright-red);
}

.r-stats { 
    text-align: center; 
    color: var(--text-gray); 
    font-size: 12px; 
    min-width: 60px;
}

.r-rep { 
    min-width: 80px; 
    text-align: center;
}

.r-status { 
    text-align: center; 
    min-width: 40px;
}

/* Nome do jogador */
.r-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
}

.r-num {
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 600;
}

/* Tag Hardcore */
.hc-tag {
    display: inline-block;
    margin-left: 4px;
    font-size: 12px;
}

/* Reputação - CORES CORRETAS */
.rep-value {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.rep-value.positive {
    color: #00bfff;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.rep-value.negative {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.rep-value.neutral {
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-gray);
}

/* Status Dot */
.status-dot {
    font-size: 16px;
}

.status-dot.alive { color: #00ff00; }
.status-dot.dead { color: #ff4444; }
.status-dot.zombie { color: #00ff88; }
.status-dot.unknown { color: var(--text-dark); }

/* Paginação Mini */
.pagination-mini {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.p-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-gray);
    border-radius: 6px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.p-mini:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
}

.p-mini.active {
    background: var(--blood-red);
    border-color: var(--blood-red);
    color: white;
}

/* Erros */
.ranking-error,
.ranking-empty {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-gray);
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 968px) {
    .ranking-table-mini {
        font-size: 12px;
        overflow-x: auto;
    }
    
    .ranking-table-mini th,
    .ranking-table-mini td {
        padding: 6px 10px;
    }
    
    .r-stats { 
        min-width: 50px;
        font-size: 11px;
    }
    .r-rep { min-width: 70px; }
    .r-value { min-width: 70px; font-size: 12px; }
    .r-name { font-size: 12px; }
    .r-player { min-width: 110px; }
}

@media (max-width: 768px) {
    .r-stats { display: none; }
    .r-rep { min-width: 60px; }
    .r-value { min-width: 60px; font-size: 12px; }
    .r-name { font-size: 12px; }
    .r-player { min-width: 90px; }
    .r-rank { width: 40px; font-size: 14px; }
    
    .filter-mini {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .ranking-header-mini h1 {
        font-size: 18px;
    }
    
    .ranking-total {
        font-size: 11px;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .r-status { display: none; }
    .r-rank { width: 30px; font-size: 14px; }
    .r-value { min-width: 50px; font-size: 11px; }
    .r-name { font-size: 11px; }
    .r-player { min-width: 70px; }
    .r-rep { min-width: 50px; }
    
    .filter-mini {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .ranking-table-mini th,
    .ranking-table-mini td {
        padding: 4px 6px;
    }
    
    .p-mini {
        min-width: 26px;
        height: 26px;
        font-size: 11px;
    }
}
/* ============================================
   RANKING COMPACTO - ALINHAMENTO CORRIGIDO
   ============================================ */

.ranking-page {
    padding: 20px 0 !important;
}

.ranking-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Mini */
.ranking-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    margin-bottom: 15px;
}

.ranking-header-mini h1 {
    font-size: 22px;
    color: var(--text-light);
    font-weight: 700;
}

.ranking-total {
    color: var(--text-gray);
    font-size: 13px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 14px;
    border-radius: 12px;
}

/* Filtros Mini */
.ranking-filters-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.filter-mini {
    padding: 5px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-gray);
    border-radius: 6px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.filter-mini:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
}

.filter-mini.active {
    background: var(--blood-red);
    border-color: var(--blood-red);
    color: white;
}

/* Tabela Compacta */
.ranking-table-mini {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ranking-table-mini table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ranking-table-mini thead {
    background: rgba(0, 0, 0, 0.4);
}

.ranking-table-mini th {
    padding: 10px 12px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--dark-gray);
    white-space: nowrap;
}

.ranking-table-mini td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
    text-align: center;
}

.ranking-table-mini tbody tr:hover {
    background: rgba(139, 0, 0, 0.05);
}

.ranking-table-mini tbody tr.top-1 {
    background: rgba(255, 215, 0, 0.06);
}
.ranking-table-mini tbody tr.top-2 {
    background: rgba(192, 192, 192, 0.04);
}
.ranking-table-mini tbody tr.top-3 {
    background: rgba(205, 127, 50, 0.04);
}

/* Colunas - ALINHADAS CORRETAMENTE */
.r-rank { 
    width: 45px; 
    text-align: center; 
    font-size: 16px;
}

.r-player { 
    min-width: 130px; 
    text-align: left;
}

.r-xp { 
    min-width: 80px; 
    text-align: center;
    font-weight: 700; 
    color: var(--bright-red);
}

.r-rep { 
    min-width: 85px; 
    text-align: center;
}

.r-rep-name { 
    min-width: 100px; 
    text-align: center;
}

.r-stats { 
    text-align: center; 
    color: var(--text-gray); 
    font-size: 12px; 
    min-width: 45px;
}

.r-status { 
    text-align: center; 
    min-width: 40px;
}

/* Nome do jogador */
.r-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
}

.r-num {
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 600;
}

/* Reputação - CORES */
.rep-value {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.rep-value.positive {
    color: #00bfff;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.rep-value.negative {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.rep-value.neutral {
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-gray);
}

/* Títulos das Reputações */
.rep-title {
    display: inline-block;
    padding: 2px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 70px;
    text-align: center;
}

/* Reputação Positiva - Heróis */
.rep-title.legendary {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.rep-title.hero {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.rep-title.good {
    color: #00bfff;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.rep-title.neutral-good {
    color: #87ceeb;
    background: rgba(135, 206, 235, 0.1);
    border: 1px solid rgba(135, 206, 235, 0.2);
}

/* Reputação Neutra */
.rep-title.neutral {
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-gray);
}

/* Reputação Negativa - Bandidos */
.rep-title.thug {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.rep-title.outlaw {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.rep-title.bandit {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.rep-title.criminal {
    color: #cc0000;
    background: rgba(204, 0, 0, 0.1);
    border: 1px solid rgba(204, 0, 0, 0.2);
}

.rep-title.villain {
    color: #8b0000;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.3);
}

/* Status Dot */
.status-dot {
    font-size: 16px;
}

.status-dot.alive { color: #00ff00; }
.status-dot.dead { color: #ff4444; }
.status-dot.zombie { color: #00ff88; }
.status-dot.unknown { color: var(--text-dark); }

/* Paginação Mini */
.pagination-mini {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.p-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-gray);
    border-radius: 6px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.p-mini:hover {
    border-color: var(--blood-red);
    color: var(--text-light);
}

.p-mini.active {
    background: var(--blood-red);
    border-color: var(--blood-red);
    color: white;
}

/* Erros */
.ranking-error,
.ranking-empty {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-gray);
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    border: 1px solid var(--dark-gray);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 968px) {
    .ranking-table-mini {
        font-size: 12px;
        overflow-x: auto;
    }
    
    .ranking-table-mini th,
    .ranking-table-mini td {
        padding: 6px 10px;
    }
    
    .r-stats { 
        min-width: 40px;
        font-size: 11px;
    }
    .r-rep { min-width: 75px; }
    .r-rep-name { min-width: 80px; }
    .r-xp { min-width: 60px; font-size: 12px; }
    .r-name { font-size: 12px; }
    .r-player { min-width: 100px; }
    .rep-title { font-size: 10px; padding: 2px 10px; min-width: 60px; }
}

@media (max-width: 768px) {
    .r-stats { display: none; }
    .r-rep-name { display: none; }
    .r-rep { min-width: 60px; }
    .r-xp { min-width: 50px; font-size: 12px; }
    .r-name { font-size: 12px; }
    .r-player { min-width: 80px; }
    .r-rank { width: 35px; font-size: 14px; }
    .r-status { min-width: 30px; }
    
    .filter-mini {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .ranking-header-mini h1 {
        font-size: 18px;
    }
    
    .ranking-total {
        font-size: 11px;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .r-status { display: none; }
    .r-rank { width: 28px; font-size: 12px; }
    .r-xp { min-width: 40px; font-size: 11px; }
    .r-name { font-size: 11px; }
    .r-player { min-width: 60px; }
    .r-rep { min-width: 50px; }
    
    .filter-mini {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .ranking-table-mini th,
    .ranking-table-mini td {
        padding: 4px 6px;
    }
    
    .p-mini {
        min-width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .ranking-header-mini h1 {
        font-size: 16px;
    }
}