/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.3));
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #4a90e2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4a90e2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.server-status-header {
    display: flex;
    align-items: center;
}

/* Novo design do status indicator */
.status-indicator-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.status-indicator-new:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-1px);
}

.status-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.status-icon i {
    color: #4a90e2;
    font-size: 1rem;
}

.status-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(10, 10, 10, 0.8);
    background: #ef4444;
    animation: pulse-dot 2s infinite;
}

.status-dot.online {
    background: #22c55e;
}

.status-dot.offline {
    background: #ef4444;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.status-label {
    font-size: 0.7rem;
    color: #b0b0b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-text {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
}

.status-players {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.5rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.status-players i {
    color: #4a90e2;
    font-size: 0.8rem;
}

.status-players span {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Status indicator antigo (manter para compatibilidade) */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.status-indicator.online {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-indicator.offline {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-indicator i {
    font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg-anime-1.jpg') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.clan-name {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.game-name {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #b0b0b0;
    font-family: 'Rajdhani', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #4a90e2;
}

.btn-secondary:hover {
    background: #4a90e2;
    transform: translateY(-2px);
}

.server-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    min-width: 300px;
}

.server-info-card h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
    text-align: center;
}

.server-ip {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.server-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    color: #b0b0b0;
}

.stat-value {
    color: #ffffff;
    font-weight: 600;
}

/* About Clan Section */
.about-clan {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-icon {
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.about-info h3 {
    color: #4a90e2;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.about-info p {
    color: #d0d0d0;
    line-height: 1.6;
}

.clan-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    height: fit-content;
}

.clan-stats h3 {
    color: #4a90e2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Server Status Section */
.server-status {
    padding: 5rem 0;
    background: #0a0a0a;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.status-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem 2rem 2rem 2rem;
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    color: #4a90e2;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge.online {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.offline {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    color: #b0b0b0;
}

.detail-value {
    color: #ffffff;
    font-weight: 600;
}

.copy-ip-btn {
    width: 100%;
    justify-content: center;
    align-self: stretch;
}

.players-counter {
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.players-container {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
}

.loading-players, .no-players {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #b0b0b0;
    gap: 1rem;
}

.loading-players i {
    font-size: 2rem;
    color: #4a90e2;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.player-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.player-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(5px);
}

.player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-name {
    color: #ffffff;
    font-weight: 500;
    flex: 1;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    word-wrap: break-word;
}

.player-score {
    color: #4a90e2;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

/* Server Features */
.server-features {
    margin-top: 3rem;
}

.server-features h3 {
    color: #4a90e2;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    color: #4a90e2;
    font-size: 1.2rem;
}

.feature-item span {
    color: #ffffff;
    font-weight: 500;
}

/* Administrators Section */
.administrators {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.admins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.admin-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.admin-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.admin-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a90e2;
}

.admin-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.owner-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
}

.admin-badge {
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    color: #ffffff;
}

.mod-badge {
    background: linear-gradient(135deg, #ec4899, #f9a8d4);
    color: #ffffff;
}

.helper-badge {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #ffffff;
}

.admin-name {
    color: #4a90e2;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.admin-role {
    color: #b0b0b0;
    margin-bottom: 1rem;
    font-weight: 500;
}

.admin-description {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #8e44ad;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.contact-card h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-card .contact-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card .contact-link:hover {
    color: #8e44ad;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #4a90e2;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.3));
}

.footer-logo span {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #4a90e2;
}

.footer-section p {
    color: #d0d0d0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a90e2;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a90e2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4a90e2;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: rgba(255, 107, 107, 0.1);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #4a90e2;
    margin: 0;
}

.close {
    color: #b0b0b0;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #4a90e2;
}

.modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

/* Rules Content */
.rules-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rules-section h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rules-list {
    list-style: none;
    counter-reset: rule-counter;
}

.rules-list li {
    counter-increment: rule-counter;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #d0d0d0;
    line-height: 1.6;
}

.rules-list li::before {
    content: counter(rule-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    color: #ffffff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.punishments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.punishment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.punishment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.punishment-icon.warning {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.punishment-icon.kick {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.punishment-icon.tempban {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.punishment-icon.permban {
    background: rgba(127, 29, 29, 0.2);
    color: #dc2626;
}

.punishment-info h4 {
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.punishment-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.rules-footer {
    background: rgba(255, 107, 107, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.rules-footer p {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rules-footer p:last-child {
    margin-bottom: 0;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.notification.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-top: 1px solid rgba(74, 144, 226, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(74, 144, 226, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin-top: 0.5rem;
        padding: 0.5rem;
        box-shadow: none;
    }
    
    .server-status-header {
        font-size: 0.8rem;
    }
    
    .status-indicator-new {
        gap: 0.5rem;
        padding: 0.4rem 0.8rem;
    }
    
    .status-info {
        display: none;
    }
    
    .status-players {
        padding: 0.2rem 0.4rem;
    }
    
    .status-players span {
        font-size: 0.75rem;
    }
    
    .header-right {
        gap: 0.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .clan-name {
        font-size: 2.5rem;
    }
    
    .game-name {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .admins-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .punishments-grid {
        grid-template-columns: 1fr;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        opacity: 0;
        visibility: hidden;
    }
    
    .notification.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .clan-name {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .server-info-card {
        min-width: auto;
        padding: 1.5rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
}


/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    color: #ffffff;
}

.dropdown-link i {
    font-size: 0.9rem;
    color: #4a90e2;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
        border: none;
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu {
        max-height: 200px;
    }
    
    .dropdown-link {
        padding-left: 2rem;
    }
}


/* Download Modal Styles */
.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.download-modal-content {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.download-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(74, 144, 226, 0.3);
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
}

.download-header h3 {
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.download-body {
    padding: 1.5rem;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.download-option:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.download-icon {
    font-size: 2rem;
    color: #4a90e2;
    min-width: 60px;
    text-align: center;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.download-info p {
    color: #b0b0b0;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.download-size {
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    color: #ffffff;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.download-btn {
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.download-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(74, 144, 226, 0.3);
    background: rgba(0, 0, 0, 0.2);
}

.download-footer p {
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 1rem;
}

.download-footer ol {
    color: #b0b0b0;
    padding-left: 1.5rem;
}

.download-footer li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.download-footer strong {
    color: #4a90e2;
    font-family: 'Orbitron', monospace;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .download-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .download-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .download-info {
        text-align: center;
    }
    
    .download-btn {
        width: 100%;
    }
}


/* Server Info Box */
.server-info-box {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(142, 68, 173, 0.1));
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.server-info-box h4 {
    color: #4a90e2;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.server-info-box p {
    color: #b0b0b0;
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.server-info-box strong {
    color: #4a90e2;
    font-family: 'Orbitron', monospace;
}


/* Loading e Error States */
.loading-indicator {
    display: none;
    text-align: center;
    padding: 1rem;
    color: #4a90e2;
}

.loading-indicator i {
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

.error-indicator {
    display: none;
    text-align: center;
    padding: 1rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    margin: 1rem 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Melhorar modais */
.modal {
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus trap para acessibilidade */
.modal:focus-within {
    outline: none;
}

/* Melhorar botões de fechar */
.close-btn {
    transition: all 0.2s ease;
}

.close-btn:hover {
    transform: scale(1.1);
    color: #ff6b6b;
}

/* Status indicators melhorados */
.status-badge {
    transition: all 0.3s ease;
}

.status-badge.online {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(74, 144, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0); }
}

/* Melhorar responsividade dos modais */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
        max-height: 60vh;
        overflow-y: auto;
    }
}



/* ===== REFORMULATED SERVER STATUS SECTION ===== */

/* Server Overview */
.server-overview {
    margin-bottom: 3rem;
}

.server-main-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Server Header */
.server-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.server-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.server-title h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.status-badge.online {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #ffffff;
    border: 2px solid rgba(0, 255, 136, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.status-badge.online:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
    border-color: rgba(0, 255, 136, 0.5);
}

.status-badge.online i {
    font-size: 0.8rem;
    animation: pulse-green 2s infinite;
    filter: drop-shadow(0 0 3px rgba(0, 255, 136, 0.8));
}

@keyframes pulse-green {
    0% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
    }
}

.server-ip {
    text-align: right;
}

.ip-label {
    display: block;
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0.25rem;
}

.ip-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a90e2;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.copy-ip-btn-new {
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-ip-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

/* Server Stats Grid */
.server-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Server Name Display */
.server-name-display {
    padding: 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    border-left: 4px solid #4a90e2;
}

.server-name-label {
    font-size: 0.9rem;
    color: #bbb;
    margin-right: 0.5rem;
}

.server-name-value {
    font-weight: 600;
    color: #4a90e2;
    font-size: 1rem;
}

/* Updated Players List */
.status-card.players-list .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.refresh-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    transform: rotate(180deg);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

/* Server Info Card */
.status-card.server-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    height: 520px;
}

.server-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(5px);
}

.info-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.info-desc {
    font-size: 0.9rem;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .server-header {
        flex-direction: column;
        text-align: center;
    }
    
    .server-ip {
        text-align: center;
    }
    
    .server-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .server-main-card {
        padding: 1.5rem;
    }
    
    .server-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
}


/* ===== STORE SECTION ===== */

.store {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.store::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(74,144,226,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.store .container {
    position: relative;
    z-index: 1;
}

/* Store Categories */
.store-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    border-radius: 2px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
}

.product-card.vip::before {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.product-card.admin::before {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.product-card.master::before {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.product-card.diretoria::before {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.4);
}

/* Product Header */
.product-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.product-card.vip .product-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.product-card.admin .product-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.product-card.master .product-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.product-card.diretoria .product-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #4a90e2;
    font-family: 'Orbitron', monospace;
}

/* Product Features */
.product-features {
    margin-bottom: 2rem;
}

.product-features h5 {
    color: #4a90e2;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.product-features li i {
    color: #2ecc71;
    font-size: 0.8rem;
}

/* Buy Button */
.buy-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #5ba0f2, #9e54bd);
}

.buy-btn:active {
    transform: translateY(0);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.service-card.unban::before {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.service-card.custom-skin::before {
    background: linear-gradient(135deg, #e91e63, #ad1457);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.4);
}

/* Service Header */
.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.service-card.unban .service-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.service-card.custom-skin .service-icon {
    background: linear-gradient(135deg, #e91e63, #ad1457);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #4a90e2;
    font-family: 'Orbitron', monospace;
    margin-left: auto;
}

.service-price span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

/* Service Description */
.service-description {
    margin-bottom: 2rem;
}

.service-description p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.service-features li i {
    color: #2ecc71;
    font-size: 0.8rem;
}

/* Payment Info */
.payment-info {
    margin-top: 4rem;
}

.payment-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    text-align: center;
}

.payment-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-header i {
    font-size: 1.5rem;
    color: #4a90e2;
}

.payment-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    min-width: 80px;
}

.payment-method:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.payment-method i {
    font-size: 1.5rem;
    color: #4a90e2;
}

.payment-method span {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

.payment-note {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-note i {
    color: #4a90e2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-methods {
        gap: 1rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-price {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .store {
        padding: 3rem 0;
    }
    
    .product-card,
    .service-card,
    .payment-card {
        padding: 1.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: center;
    }
}


/* ===== COMMANDS SECTION ===== */

.commands {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.commands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="commands-grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(74,144,226,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23commands-grid)"/></svg>');
    opacity: 0.4;
}

.commands .container {
    position: relative;
    z-index: 1;
}

/* Commands Tabs */
.commands-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 1rem 2rem;
    color: #cccccc;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.tab-btn.active {
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
    border-color: rgba(74, 144, 226, 0.6);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.tab-btn i {
    font-size: 1.1rem;
}

/* Commands Content */
.commands-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.commands-content.active {
    display: block;
}

.commands-content.search-mode {
    display: block !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Commands Grid */
.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Command Cards */
.command-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.command-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #4a90e2, #8e44ad);
}

.command-card.vip::before {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.command-card.admin::before {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.command-card.master::before {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.command-card.diretoria::before {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.command-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 144, 226, 0.4);
}

/* Command Header */
.command-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.command-header h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 0;
    word-break: break-all;
}

.command-card.vip .command-header h4 {
    color: #f39c12;
}

.command-card.admin .command-header h4 {
    color: #3498db;
}

.command-card.master .command-header h4 {
    color: #9b59b6;
}

.command-card.diretoria .command-header h4 {
    color: #e74c3c;
}

.command-type {
    background: rgba(74, 144, 226, 0.2);
    color: #4a90e2;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.command-card.vip .command-type {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.command-card.admin .command-type {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.command-card.master .command-type {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

.command-card.diretoria .command-type {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* Command Description */
.command-card p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Command Search */
.command-search {
    margin-top: 3rem;
    text-align: center;
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto 1rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: #888;
}

.search-box input:focus {
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}

.search-info {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.search-info i {
    color: #4a90e2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .commands-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .commands-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .command-card {
        padding: 1.25rem;
    }
    
    .command-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .command-header h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .commands {
        padding: 3rem 0;
    }
    
    .commands-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .command-card {
        padding: 1rem;
    }
    
    .command-header h4 {
        font-size: 0.95rem;
    }
    
    .search-box {
        max-width: 100%;
    }
}

/* Special Effects */
.command-card:hover .command-header h4 {
    text-shadow: 0 0 10px currentColor;
}

.command-card:hover .command-type {
    transform: scale(1.05);
}

/* Loading Animation for Search */
.search-box input:focus + .search-loading {
    display: block;
}

.search-loading {
    display: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-top: 2px solid #4a90e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Command Categories Colors */
.commands-content:not(.search-mode) {
    border-radius: 20px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(74, 144, 226, 0.1);
}

/* Highlight Search Results */
.command-card.search-highlight {
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

/* Command Syntax Highlighting */
.command-header h4 {
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border-left: 3px solid currentColor;
}


/* ===== MODAL DE COMANDOS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.95), rgba(74, 20, 140, 0.95));
    margin: 2% auto;
    padding: 0;
    border: none;
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    text-align: center;
}

.close {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

/* Scrollbar personalizada para o modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a90e2, #9b59b6);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #357abd, #8e44ad);
}

/* Animações do modal */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    animation: slideIn 0.4s ease;
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: calc(95vh - 100px);
    }
    
    .commands-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .commands-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .close {
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
}

/* ===== CORREÇÕES DE RESPONSIVIDADE DO TOPBAR ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.95), rgba(74, 20, 140, 0.95));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    transition: all 0.3s ease;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-1px);
}

.server-status-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ffffff;
    flex-shrink: 0;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: pulse 2s infinite;
}

/* Correção para evitar sobreposição de conteúdo */
body {
    padding-top: 70px;
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
}


/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(142, 68, 173, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
    text-decoration: none;
}

.partner-card:focus {
    outline: 2px solid rgba(74, 144, 226, 0.5);
    outline-offset: 2px;
}

.partner-image {
    width: 120px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-image {
    border-color: rgba(74, 144, 226, 0.5);
    transform: scale(1.05);
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.partner-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
    color: #4a90e2;
}

/* Responsividade da seção de parceiros */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
    
    .partner-image {
        width: 100px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .partner-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .partner-card {
        padding: 1rem;
    }
    
    .partner-image {
        width: 80px;
        height: 50px;
    }
    
    .partner-name {
        font-size: 0.9rem;
    }
}

