* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img { width: 40px; height: 40px; object-fit: contain; display: block; }

.logo-rectangles {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rect {
    width: 16px;
    height: 6px;
    background: #fff;
    border-radius: 2px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #374151;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #22c55e;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 3px;
    background: #22c55e;
    border-radius: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: #22c55e;
}

.status-text {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #ED6F63;
    color: #fff;
}

.btn-primary:hover {
    background: #ED6F63;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-secondary:hover {
    border-color: #ED6F63;
    color: #ED6F63;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    margin-top: 20px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    margin-top: 8px;
}

.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #374151;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #ED6F63;
    display: block;
}

.hero-description {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.server-info {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.server-info h3 {
    color: #374151;
    margin-bottom: 20px;
    font-size: 20px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #6b7280;
    min-width: 100px;
}

.info-value {
    color: #374151;
    font-family: 'Courier New', monospace;
    background: #f9fafb;
    padding: 4px 8px;
    border-radius: 4px;
}

.copy-btn {
    background: none;
    border: none;
    color: #ED6F63;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #f0fdf4;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.stat-icon.players {
    background: #22c55e;
}

.stat-icon.kills {
    background: #3b82f6;
}

.stat-icon.uptime {
    background: #8b5cf6;
}

.stat-icon.registered {
    background: #f59e0b;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #374151;
    line-height: 1;
}

.stat-label {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.main-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 30px;
}

.gang-influence-section { padding: 80px 0; background: linear-gradient(135deg, #2d2926 0%, #3a3532 100%); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.gang-influence-section .section-title { text-align: center; color: #ffffff; margin-bottom: 40px; }
.influence-list { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
.influence-item { display: grid; grid-template-columns: 170px 1fr; gap: 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.influence-left { background: rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 8px; min-width: 170px; }
.influence-ped { width: 100%; height: 220px; object-fit: contain; }
.influence-caption { margin-top: 8px; color: rgba(255,255,255,0.8); font-size: 12px; text-align: center; }
.influence-right { padding: 16px 18px; position: relative; }
.influence-right::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gang-color, #ED6F63); }
.influence-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.influence-name { color: #ffffff; font-weight: 800; font-size: 20px; }
.influence-percent { color: #ffffff; font-weight: 800; font-size: 20px; }
.influence-meta { display: flex; gap: 16px; color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 10px; }
.influence-boss { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; margin-bottom: 12px; padding: 10px 12px; border-radius: 10px; background: color-mix(in srgb, var(--gang-color, #ED6F63) 18%, transparent); border: 1px solid color-mix(in srgb, var(--gang-color, #ED6F63) 35%, transparent); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.03); }
.boss-left { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--gang-color, #ED6F63) 30%, transparent); }
.boss-left i { color: #ffd700; font-size: 18px; }
.boss-title { color: #ffffff; font-weight: 800; font-size: 13px; letter-spacing: .3px; opacity: .9; }
.boss-text { color: rgba(255,255,255,0.9); font-size: 13px; }
.boss-badge { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.35); color: #34d399; font-weight: 800; padding: 6px 10px; border-radius: 9999px; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; }
.boss-badge i { color: #34d399; }
.influence-desc { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 12px; }
.influence-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 9999px; overflow: hidden; }
.influence-fill { height: 100%; background: var(--gang-color, #ED6F63); }
.influence-zones { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.influence-zones-title { width: 100%; color: rgba(255,255,255,0.9); font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.zone-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 6px 10px; border-radius: 9999px; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; }

.sale-banner { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; padding: 10px 12px; border-radius: 10px; background: rgba(34,197,94,0.12); border: 1px dashed rgba(34,197,94,0.35); }
.sale-left { color: #d1fae5; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.sale-left i { color: #34d399; }
.sale-right { display: flex; align-items: center; gap: 8px; }
.old-price { color: rgba(255,255,255,0.6); text-decoration: line-through; font-weight: 600; }
.new-price { color: #34d399; font-weight: 800; }

@media (max-width: 640px) {
    .influence-item { grid-template-columns: 1fr; }
    .influence-left { height: 200px; }
}

.gang-zones-section { padding: 80px 0; background: linear-gradient(135deg, #2d2926 0%, #3a3532 100%); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.gang-zones-section .section-title { text-align: center; margin-bottom: 50px; }
.zones-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.zone-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); overflow: hidden; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.zone-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.4) }
.zone-header { background: rgba(29, 29, 29, 0.671); padding: 25px; border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; text-align: center; }
.zone-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gang-color, #ED6F63); }
.zone-title { color: #ffffff; font-weight: 800; font-size: 22px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.zone-badge { display: none; }
.zone-body { padding: 25px; }
.zone-owner { color: rgba(255,255,255,0.95); margin-bottom: 16px; font-size: 17px; font-weight: 600; }
.zone-desc { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; }

@media (max-width: 768px) {
    .zones-grid { grid-template-columns: 1fr; gap: 20px; max-width: 90%; }
    .zone-card { margin: 0 10px; }
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateX(5px);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.activity-icon.trophy {
    background: #22c55e;
}

.activity-icon.join {
    background: #3b82f6;
}

.activity-icon.chat {
    background: #8b5cf6;
}

.activity-text {
    font-weight: 500;
    color: #374151;
    margin-bottom: 5px;
}

.activity-time {
    font-size: 14px;
    color: #9ca3af;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.player-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.player-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
    background: #22c55e;
}

.player-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
    background: #22c55e;
}

.player-name {
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
    font-size: 14px;
}

.player-kills {
    font-size: 13px;
}

.player-kills .kills-count {
    color: #f97316;
    font-weight: 500;
}

.player-kills .kd-ratio {
    color: #3b82f6;
    font-weight: 500;
}

.player-kills .money-amount {
    color: #22c55e;
    font-weight: 500;
}

.player-kills .xp-amount {
    color: #8b5cf6;
    font-weight: 500;
}

.news-section {
    padding: 60px 0;
    background: #f8fafc;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-category {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-category.update {
    background: #dbeafe;
    color: #1d4ed8;
}

.news-category.event {
    background: #dcfce7;
    color: #16a34a;
}

.news-category.security {
    background: #fee2e2;
    color: #dc2626;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #9ca3af;
}

.news-meta i {
    margin-right: 5px;
}

.news-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #16a34a;
}

.news-actions {
    text-align: center;
}

.footer {
    background: #1f2937;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.7;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #22c55e;
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    gap: 10px;
}

.detail-label {
    color: #9ca3af;
    min-width: 80px;
}

.detail-value {
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
    }
    
    .player-item {
        flex-direction: column;
        text-align: center;
    }
}

.leaderboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 15px;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.tab-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.tab-btn.active {
    background: #ED6F63;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.no-data {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 20px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header h3 {
    margin: 0;
    color: #374151;
    font-size: 20px;
}

.close {
    color: #6b7280;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #374151;
}

.modal-body {
    padding: 25px;
    max-height: 400px;
    overflow-y: auto;
}

.player-item-modal {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.player-item-modal:last-child {
    border-bottom: none;
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.player-info-modal {
    flex: 1;
}

.player-name-modal {
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
}

.player-id-modal {
    font-size: 12px;
    color: #6b7280;
}

.player-ping-modal {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 500;
}

/* override */

body { color: #ffffff; background-color: #2d2926; }

.header { background: #2d2926; border-bottom: 1px solid rgba(255,255,255,0.08); box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.logo-icon { background: #ED6F63; }
.logo-text { color: #ffffff; }
.nav-link { color: rgba(255,255,255,0.75); }
.nav-link:hover, .nav-link.active { color: #ED6F63; }
.nav-link.active::after { background: #ED6F63; }
.status-dot.online { background: #ED6F63; }

.btn-primary { background: #ED6F63; color: #ffffff; }
.btn-primary:hover { background: #d85f54; }
.btn-secondary { background: transparent; color: #ffffff; border: 2px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { border-color: #ED6F63; color: #ED6F63; }

.hero { background: linear-gradient(135deg, #2d2926 0%, #3a3532 100%); }
.hero-title { color: #ffffff; }
.hero-subtitle { color: #ED6F63; }
.hero-description { color: rgba(255,255,255,0.75); }

.server-info, .stat-card, .activity-item, .player-item, .news-card, .modal-content { background: #2d2926; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.server-info h3, .section-title, .news-title { color: #ffffff; }
.info-label { color: rgba(255,255,255,0.65); }
.info-value { color: #ffffff; background: rgba(255,255,255,0.08); }
.copy-btn { color: #ED6F63; }
.copy-btn:hover { background: rgba(237,111,99,0.15); }
.stat-number { color: #ffffff; }
.stat-label { color: rgba(255,255,255,0.65); }
.player-name, .activity-text, .modal-header h3, .player-name-modal { color: #ffffff; }
.activity-time, .news-meta { color: rgba(255,255,255,0.5); }
.player-rank, .player-avatar { background: #ED6F63; }
.player-kills .kills-count, .player-kills .kd-ratio, .player-kills .money-amount, .player-kills .xp-amount { color: #ED6F63; }
.news-section { background: #2d2926; }
.section-subtitle { color: rgba(255,255,255,0.65); }
.news-category.update, .news-category.event, .news-category.security { background: rgba(237,111,99,0.15); color: #ED6F63; }
.news-link { color: #ED6F63; }
.news-link:hover { color: #d85f54; }

.stat-icon.players, .stat-icon.kills, .stat-icon.uptime, .stat-icon.registered { background: #ED6F63; }

.footer { background: #1f1c1a; }
.footer-links a:hover { color: #ED6F63; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }

.close:hover { color: #ffffff; }
.player-ping-modal { color: #ED6F63; }

.discord-banner { background: linear-gradient(90deg, rgba(237,111,99,0.12) 0%, rgba(237,111,99,0.05) 100%); padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.discord-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.discord-left { display: flex; align-items: center; gap: 16px; }
.discord-icon { width: 48px; height: 48px; border-radius: 10px; background: #ED6F63; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 24px; }
.discord-title { font-size: 22px; color: #ffffff; }
.discord-subtitle { color: rgba(255,255,255,0.7); }

.support-banner { background: radial-gradient(1200px 400px at 20% 50%, rgba(88,101,242,0.25), rgba(0,0,0,0)) , linear-gradient(90deg, rgba(237,111,99,0.18) 0%, rgba(237,111,99,0.06) 100%); padding: 34px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden; }
.support-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.support-left { display: flex; align-items: center; gap: 16px; }
.support-icon { width: 56px; height: 56px; border-radius: 14px; background: #5865F2; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 26px; box-shadow: 0 8px 24px rgba(88,101,242,0.45); }
.support-title { font-size: 20px; color: #ffffff; letter-spacing: .5px; margin-bottom: 4px; font-weight: 800; }
.support-subtitle { color: rgba(255,255,255,0.8); font-size: 14px; }
.support-right .btn { box-shadow: 0 10px 24px rgba(237,111,99,0.35); }
.support-right .btn:hover { transform: translateY(-2px); }

.gallery-section { padding: 60px 0; }
.parent { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); gap: 8px; height: 60vh; max-height: 720px; min-height: 360px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.div1 { grid-column: span 2 / span 2; grid-row: span 2 / span 2; }
.div2 { grid-column: span 3 / span 3; grid-row: span 2 / span 2; grid-column-start: 3; }
.div3 { grid-column: span 2 / span 2; grid-row: span 3 / span 3; grid-row-start: 3; }
.div4 { grid-column: span 3 / span 3; grid-row: span 3 / span 3; grid-column-start: 3; grid-row-start: 3; }

@media (max-width: 768px) {
    .discord-content { flex-direction: column; align-items: flex-start; }
    .parent { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
    .div1, .div2, .div3, .div4 { grid-column: span 1 / span 1; grid-row: auto; }
}

.features-section { padding: 60px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; }
.feature-card { background: #2d2926; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.4); transition: transform .25s ease; }
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; background: #ED6F63; color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.feature-title { color: #ffffff; font-size: 18px; margin-bottom: 6px; }
.feature-text { color: rgba(255,255,255,0.75); }

.faq-section { padding: 60px 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #2d2926; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: transparent; color: #ffffff; border: none; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.faq-answer { display: none; padding: 0 20px 18px 20px; color: rgba(255,255,255,0.75); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(180deg); transition: transform .2s ease; }

.modal.flex-center { display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; background: rgba(255, 0, 0, 0); padding: 10px;}
.lightbox-img { width: 100%; height: 100%; max-width: 85vw; max-height: 85vh; object-fit: contain; display: block; border-radius: 8px; }
.modal#lightboxModal { background-color: rgba(0,0,0,0.8); }
.lightbox-content .close { position: absolute; top: 6px; right: 10px; color: #ffffff; line-height: 1; }

.server-monitor { padding: 24px 0; background: linear-gradient(90deg, rgba(237,111,99,0.12) 0%, rgba(237,111,99,0.05) 100%); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.monitor-row { display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.monitor-item { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.monitor-item + .monitor-item { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 24px; }
.monitor-label { color: rgba(255,255,255,0.75); font-weight: 700; text-transform: none; }
.monitor-value { color: #ffffff; font-family: 'Courier New', monospace; background: rgba(255,255,255,0.08); padding: 6px 10px; border-radius: 6px; }

@media (max-width: 768px) {
    .monitor-row { gap: 12px; }
    .monitor-item { width: 100%; justify-content: space-between; }
    .monitor-item + .monitor-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 12px; margin-top: 6px; }
}