/* Основной CSS для страницы мониторинга Arsenal Project */

/* Глобальные стили для страницы мониторинга */
body.monitor-page {
    background-color: #050505;
    color: #e0e0e0;
    font-family: 'Montserrat', 'ProximaNova-Regular', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Фоновые элементы GTA */
.gta-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.gta-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(60, 60, 60, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.gta-global-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gta-global-element {
    position: absolute;
    opacity: 0.07;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(1px);
}

.gta-global-element.map {
    width: 400px;
    height: 400px;
    background-image: url('../img/gta-map.png');
    top: 15%;
    right: 5%;
    transform: rotate(15deg);
}

.gta-global-element.car {
    width: 300px;
    height: 200px;
    background-image: url('../img/gta-car.png');
    bottom: 10%;
    left: 10%;
    transform: rotate(-10deg);
}

.gta-global-element.weapon {
    width: 250px;
    height: 150px;
    background-image: url('../img/gta-weapon.png');
    top: 25%;
    left: 5%;
    transform: rotate(5deg);
}

.gta-global-element.light1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation: pulse-slow 10s infinite alternate;
}

.gta-global-element.light2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.05) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    animation: pulse-slow 8s infinite alternate;
}

@keyframes pulse-slow {
    0% { opacity: 0.05; }
    100% { opacity: 0.15; }
}

/* Контейнер мониторинга */
.monitor-container {
    max-width: 1200px;
    margin: 100px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* Заголовок страницы мониторинга */
.monitor-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.monitor-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.monitor-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b00, #ff8c33);
    transform: translateX(-50%);
    border-radius: 2px;
}

.monitor-header p {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

/* Сетка информации о сервере */
.server-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Карточки сервера */
.server-card {
    background: rgba(30, 30, 35, 0.8);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-header {
    background: rgba(40, 40, 45, 0.8);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header h2 {
    margin: 0;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
}

.card-header h2 i {
    margin-right: 10px;
    color: #ff6b00;
}

.card-body {
    padding: 20px;
}

/* Статус сервера */
.status-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-indicator {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 1.5s infinite;
}

.status-indicator.online .status-dot {
    background-color: #2ecc71;
}

.status-indicator.offline .status-dot {
    background-color: #e74c3c;
}

.status-indicator.online .status-text {
    color: #2ecc71;
}

.status-indicator.offline .status-text {
    color: #e74c3c;
}

.server-address {
    margin-top: 10px;
}

.server-address .label {
    display: block;
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 5px;
}

.copy-field {
    display: flex;
    background: rgba(20, 20, 25, 0.5);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.copy-field input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    outline: none;
}

.copy-btn {
    background: rgba(255, 107, 0, 0.8);
    border: none;
    color: white;
    padding: 0 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 107, 0, 1);
}

.connect-button {
    margin-top: 15px;
}

.rage-connect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff6b00, #ff8c33);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.rage-connect-btn i {
    margin-right: 10px;
}

.rage-connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

/* Статистика игроков */
.player-count {
    text-align: center;
    margin-bottom: 20px;
}

.player-count .count {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
}

.player-count .current {
    color: #ff6b00;
}

.player-count .separator {
    margin: 0 5px;
    color: rgba(255, 255, 255, 0.3);
}

.player-count .max {
    color: rgba(255, 255, 255, 0.5);
}

.progress-bar {
    background: rgba(20, 20, 25, 0.5);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar .progress {
    height: 100%;
    background: linear-gradient(to right, #ff6b00, #ff8c33);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.player-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(20, 20, 25, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #b0b0b0;
}

/* График онлайна */
.chart-card {
    grid-column: 1 / -1;
}

.chart-card .card-body {
    padding: 20px;
    min-height: 300px;
}

.chart-options {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.chart-option {
    padding: 8px 15px;
    background: rgba(20, 20, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #b0b0b0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-option:hover, .chart-option.active {
    background: rgba(255, 107, 0, 0.2);
    color: #ff6b00;
    border-color: rgba(255, 107, 0, 0.3);
}

.chart-container {
    position: relative;
    height: 300px;
}

/* Таблица с топ игроками */
.players-table-card {
    grid-column: 1 / -1;
}

.players-table {
    width: 100%;
    border-collapse: collapse;
}

.players-table th, .players-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.players-table th {
    background: rgba(40, 40, 45, 0.5);
    color: #ff6b00;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.players-table tr {
    background: rgba(30, 30, 35, 0.3);
    transition: background 0.3s ease;
}

.players-table tr:hover {
    background: rgba(40, 40, 45, 0.5);
}

.players-table .player-name {
    display: flex;
    align-items: center;
}

.players-table .player-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    background: rgba(255, 107, 0, 0.2);
    overflow: hidden;
}

.players-table .player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-all-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 6px;
    color: #ff6b00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(255, 107, 0, 0.2);
}

/* Стили для страницы списка игроков */
.filter-card .card-body {
    padding: 15px;
}

.filter-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.filter-group label {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 5px;
}

.filter-group input,
.filter-group select {
    padding: 10px;
    background: rgba(20, 20, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: rgba(255, 107, 0, 0.5);
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: span 2;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff6b00, #ff8c33);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn i {
    margin-right: 8px;
}

.filter-btn:hover {
    background: linear-gradient(45deg, #e85d00, #ff7e1a);
    transform: translateY(-2px);
}

.players-list-card {
    grid-column: 1 / -1;
}

.players-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.players-count {
    font-size: 14px;
    color: #b0b0b0;
}

.search-box {
    display: flex;
    background: rgba(20, 20, 25, 0.5);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-box input {
    width: 200px;
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
}

.search-btn {
    background: rgba(255, 107, 0, 0.8);
    border: none;
    color: white;
    padding: 0 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: rgba(255, 107, 0, 1);
}

.players-table-wrapper {
    margin-bottom: 20px;
    overflow-x: auto;
}

.players-table th.sortable {
    cursor: pointer;
    position: relative;
}

.players-table th.sortable i {
    margin-left: 5px;
    font-size: 12px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.players-table th.sortable:hover i {
    opacity: 1;
}

.players-table th.asc i {
    content: "\f0de";
    opacity: 1;
}

.players-table th.desc i {
    content: "\f0dd";
    opacity: 1;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.page-numbers {
    display: flex;
    margin: 0 10px;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 5px;
    background: rgba(30, 30, 35, 0.5);
    border-radius: 50%;
    color: #b0b0b0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    background: rgba(255, 107, 0, 0.2);
    color: #ff6b00;
}

.page-number.active {
    background: rgba(255, 107, 0, 0.8);
    color: white;
}

.page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 35, 0.5);
    border: none;
    border-radius: 50%;
    color: #b0b0b0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: rgba(255, 107, 0, 0.2);
    color: #ff6b00;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #1e1e23;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: rgba(40, 40, 45, 0.8);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
}

.close-modal {
    color: #b0b0b0;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff6b00;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(90vh - 60px);
}

/* Правила сервера */
.rules-content h4 {
    color: #ff6b00;
    margin-top: 20px;
    margin-bottom: 15px;
}

.rules-content ol {
    margin: 0;
    padding-left: 20px;
}

.rules-content ol li {
    margin-bottom: 10px;
    position: relative;
}

.rules-link {
    display: block;
    margin-top: 20px;
    color: #ff6b00;
    text-decoration: none;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rules-link:hover {
    text-decoration: underline;
}

/* Уведомления */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.toast-notification {
    background: rgba(30, 30, 35, 0.9);
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #ff6b00;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

/* Футер */
.site-footer {
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    color: #b0b0b0;
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 0 0 200px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 14px;
    color: #8a8a8a;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff6b00;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-section ul li a i {
    margin-right: 8px;
    color: #ff6b00;
    font-size: 12px;
}

.footer-section ul li a:hover {
    color: #ff6b00;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff6b00;
}

/* Анимация для пульсирующей точки */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Медиа-запросы для адаптивности */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: space-around;
    }
    
    .filter-controls {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .monitor-container {
        margin-top: 80px;
    }
    
    .monitor-header h1 {
        font-size: 32px;
    }
    
    .monitor-header p {
        font-size: 16px;
    }
    
    .server-info-grid {
        grid-template-columns: 1fr;
    }
    
    .player-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .players-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .monitor-header h1 {
        font-size: 28px;
    }
    
    .card-header h2 {
        font-size: 18px;
    }
    
    .player-count .count {
        font-size: 32px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .players-table th, .players-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .page-number, .page-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Стили для секции статистики */
.statistics-section {
    padding: 60px 0;
    background: rgba(10, 12, 18, 0.7);
    margin: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), rgba(255, 107, 0, 0.3));
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-description {
    font-size: 16px;
    color: #a0a7b5;
    max-width: 700px;
    margin: 0 auto;
}

.stats-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stats-tab {
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(20, 23, 33, 0.5);
    color: #a0a7b5;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.stats-tab:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-3px);
}

.stats-tab.active {
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary-color);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

.stats-content {
    position: relative;
    min-height: 400px;
}

.stats-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.stats-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.chart-container {
    background: rgba(17, 20, 29, 0.7);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stats-card {
    background: rgba(17, 20, 29, 0.7);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.2);
}

.stats-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stats-card-icon i {
    font-size: 22px;
    color: var(--primary-color);
}

.stats-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #a0a7b5;
    margin: 0 0 10px;
}

.stats-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
}

.stats-meta {
    font-size: 12px;
    color: #6c7a89;
    margin: 0;
}

.stats-card.coming-soon {
    opacity: 0.8;
    background: rgba(17, 20, 29, 0.5);
    border-style: dashed;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), #ff9a56);
    border-radius: 4px;
    text-align: center;
    font-size: 10px;
    line-height: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.time-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.time-btn {
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(20, 23, 33, 0.5);
    color: #a0a7b5;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.time-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    border-color: rgba(255, 107, 0, 0.2);
}

.time-btn.active {
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary-color);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

@media (max-width: 992px) {
    .stats-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-info {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 250px;
    }
    
    .stats-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .stats-tab {
        flex: 0 0 auto;
    }
}

/* Стили для секции Discord */
.discord-section {
    padding: 70px 0;
    background-color: rgba(15, 17, 25, 0.7);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(114, 137, 218, 0.1), transparent 70%), 
                radial-gradient(circle at bottom left, rgba(88, 101, 242, 0.08), transparent 60%);
    z-index: 0;
}

.discord-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.discord-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discord-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
}

.discord-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #5865F2, #404EED);
    border-radius: 3px;
}

.discord-description {
    font-size: 16px;
    color: #a0a7b5;
    margin: 0 0 30px;
    line-height: 1.6;
}

.discord-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.discord-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discord-feature i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(88, 101, 242, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5865F2;
    font-size: 16px;
}

.discord-feature span {
    font-size: 15px;
    color: #e6e9ed;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #5865F2;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.discord-join-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.discord-join-btn i {
    font-size: 20px;
}

.discord-widget {
    background: rgba(17, 20, 29, 0.7);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.discord-widget iframe {
    border-radius: 6px;
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .discord-wrapper {
        grid-template-columns: 1fr;
    }
    
    .discord-title {
        text-align: center;
    }
    
    .discord-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .discord-description {
        text-align: center;
    }
    
    .discord-join-btn {
        margin: 10px auto 30px;
    }
}

@media (max-width: 576px) {
    .discord-features {
        grid-template-columns: 1fr;
    }
    
    .discord-widget {
        height: 350px;
    }
}

/* Стили для секции Топ игроки */
.top-players-section {
    padding: 60px 0;
    background: rgba(10, 12, 18, 0.7);
    margin: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.players-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.players-tab {
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(20, 23, 33, 0.5);
    color: #a0a7b5;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.players-tab:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-3px);
}

.players-tab.active {
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary-color);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

.players-content {
    position: relative;
    min-height: 400px;
}

.players-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.players-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.top-players-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.top-player-card {
    background: rgba(17, 20, 29, 0.7);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top-player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.top-player-card.champion {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.15), rgba(17, 20, 29, 0.7) 60%);
    border-color: rgba(255, 215, 0, 0.3);
}

.top-player-card.silver {
    background: linear-gradient(45deg, rgba(192, 192, 192, 0.15), rgba(17, 20, 29, 0.7) 60%);
    border-color: rgba(192, 192, 192, 0.3);
}

.top-player-card.bronze {
    background: linear-gradient(45deg, rgba(205, 127, 50, 0.15), rgba(17, 20, 29, 0.7) 60%);
    border-color: rgba(205, 127, 50, 0.3);
}

.player-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.player-crown {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFD700;
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
    100% { transform: translateX(-50%) translateY(0); }
}

.player-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.champion .player-avatar {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.silver .player-avatar {
    border-color: #C0C0C0;
}

.bronze .player-avatar {
    border-color: #CD7F32;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info {
    margin-bottom: 15px;
}

.player-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px;
}

.player-role {
    font-size: 14px;
    color: #a0a7b5;
    margin: 0;
}

.player-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.player-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 8px;
}

.champion .stat-icon {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.silver .stat-icon {
    background: rgba(192, 192, 192, 0.1);
    color: #C0C0C0;
}

.bronze .stat-icon {
    background: rgba(205, 127, 50, 0.1);
    color: #CD7F32;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.other-players-container {
    grid-column: 1 / -1;
    background: rgba(17, 20, 29, 0.7);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.other-players-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.other-players-table {
    width: 100%;
    border-collapse: collapse;
}

.other-players-table th {
    text-align: left;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #a0a7b5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.other-players-table td {
    padding: 12px 10px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.other-players-table tr:last-child td {
    border-bottom: none;
}

.other-players-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.player-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-cell img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.view-more-container {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 8px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

.coming-soon-message {
    background: rgba(17, 20, 29, 0.7);
    border-radius: 10px;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.coming-soon-message i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.coming-soon-message h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
}

.coming-soon-message p {
    font-size: 16px;
    color: #a0a7b5;
    margin: 0;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .top-players-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .top-player-card.bronze {
        grid-column: span 2;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .top-players-grid {
        grid-template-columns: 1fr;
    }
    
    .top-player-card.silver,
    .top-player-card.bronze {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .player-cell span {
        display: none;
    }
    
    .other-players-table th:nth-child(3),
    .other-players-table td:nth-child(3) {
        display: none;
    }
}

@media (max-width: 576px) {
    .players-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .players-tab {
        flex: 0 0 auto;
    }
    
    .other-players-table th:nth-child(5),
    .other-players-table td:nth-child(5) {
        display: none;
    }
} 