		       .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            color: #cbd5e0;
        }
        
        .players-table {
            width: 100%;
            border-collapse: collapse;
            background-color: #2d3748;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            margin-bottom: 30px;
        }
        
        .players-table thead {
            background: linear-gradient(to right, #ff6b35, #e53e3e);
            color: white;
        }
        
        .players-table th {
            padding: 18px 15px;
            text-align: left;
            font-weight: normal;
            font-size: 1.1rem;
        }
        
        .players-table tbody tr {
            transition: all 0.3s ease;
        }
        
        .players-table tbody tr:nth-child(even) {
            background-color: #4a5568;
        }
        
        .players-table tbody tr:nth-child(odd) {
            background-color: #2d3748;
        }
        
        .players-table tbody tr:hover {
            background-color: #4a5568;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .players-table td {
            padding: 5px;
            text-align: left;
            border-bottom: 1px solid #4a5568;
        }
        
        .player-name {
            font-weight: 600;
            font-size: 1.1rem;
            color: #e2e8f0;
        }
        
        .player-status {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .status-online {
            background-color: #38a169;
            color: white;
        }
        
        .status-offline {
            background-color: #e53e3e;
            color: white;
        }
        
        .status-ingame {
            background-color: #3182ce;
            color: white;
        }
        
        .player-rank {
            font-weight: normal;
            font-size: 1rem;
            margin-left: 1rem;
        }
        
        .rank-1 {
            color: #f6e05e;
        }
        
        .rank-2 {
            color: #cbd5e0;
        }
        
        .rank-3 {
            color: #d69e2e;
        }
        
        .player-kills {
            color: #fc8181;
            font-weight: 700;
            margin-right: 30px;
        }
        
        .player-survival {
            color: #68d391;
            font-weight: 700;
        }
        
        .player-location {
            color: #90cdf4;
        }
        
        .server-info {
            display: flex;
            justify-content: space-between;
            background: rgba(0, 0, 0, 0.3);
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid #4a5568;
        }
        
        .server-status {
            display: flex;
            align-items: center;
        }
        
        .online-dot {
            width: 12px;
            height: 12px;
            background-color: #38a169;
            border-radius: 50%;
            margin-left: 8px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        .filters {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background: #4a5568;
            border: none;
            border-radius: 6px;
            color: #e2e8f0;
            cursor: pointer;
            transition: all 0.3s;
			font-family:'Vazir';
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: #ff6b35;
        }
        
        .player-avatar {
            width: 50px;
            height: 50px;
            border-radius: 5%;
            object-fit: cover;
            /* border: 2px solid #4a5568; */
            background: #1a202c;
        }
        
        @media (max-width: 768px) {
            .players-table {
                font-size: 0.9rem;
            }
            
            .players-table th, 
            .players-table td {
                padding: 10px 8px;
            }
            
            .player-avatar {
                width: 40px;
                height: 40px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .server-info {
                flex-direction: column;
                gap: 10px;
            }
        }
        
@media (max-width: 576px) {
  .players-table thead {
    display: none;
  }
  
  .players-table,
  .players-table tbody,
  .players-table tr,
  .players-table td {
    display: block;
    width: 100%;
  }
  
  .players-table tr {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #2d3748;
  }
  
  .players-table td {
    text-align: right;
    padding: 12px 15px;
    position: relative;
    border-bottom: 1px solid #4a5568;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
  }
  
  .players-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #ff6b35;
    margin-left: 10px;
    min-width: 100px;
    text-align: left;
    flex-shrink: 0;
  }
  
  .players-table td:last-child {
    border-bottom: none;
  }
  
  /* محتوای سلول‌ها */
  .players-table td > *:not(:before) {
    flex: 1;
    text-align: left;
  }
  
  /* استایل مخصوص سلول نام بازیکن */
  .player-name-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    text-align: left;
  }
  
  .player-name {
    margin-right: 8px;
    margin-left: 0;
    text-align: right;
    flex: 1;
  }
  
  .player-avatar {
    flex-shrink: 0;
  }
  
  /* استایل برای سایر المان‌ها */
  .player-status,
  .player-rank,
  .player-kills,
  .player-survival,
  .player-location {
    text-align: left;
    justify-content: flex-start;
  }
  
  .filters {
    justify-content: center;
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}
		.player-name-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    direction: ltr;
}

.player-name {
    font-weight: 600;
    font-size: 1rem;
    color: #e2e8f0;
    text-align: left;
    /* margin-right: 10px; */
}
.server-info {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.server-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b35, #e53e3e);
}

.server-status {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.server-status i {
    margin-left: 8px;
    color: #38a169;
    font-size: 1.2rem;
}

.server-players {
    display: flex;
    align-items: center;
    font-weight: 600;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.server-players i {
    margin-left: 8px;
    color: #ff6b35;
}

.server-version {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #90cdf4;
}

.server-version i {
    margin-left: 8px;
    color: #90cdf4;
}

.online-dot {
    width: 12px;
    height: 12px;
    background-color: #38a169;
    border-radius: 50%;
    margin-left: 8px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(56, 161, 105, 0.5);
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        opacity: 1; 
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.7; 
    }
    100% { 
        transform: scale(1);
        opacity: 1; 
    }
}

/* استایل برای موبایل */
@media (max-width: 768px) {
    .server-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    
    .server-info::before {
        width: 100%;
        height: 4px;
        top: 0;
        right: 0;
        background: linear-gradient(to right, #ff6b35, #e53e3e);
    }
    
    .server-status,
    .server-players,
    .server-version {
        justify-content: center;
    }
}
.players-table tbody tr {
    transition: all 0.4s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

/* برای موبایل */
@media (max-width: 576px) {
    .players-table tbody tr {
        transition: all 0.4s ease-in-out;
    }
}
.status-dead{
background-color: #38a169;
    color: white;
}
.player-status{
	
/* padding: 0.3rem 0.8rem; */
	
border-radius: 3px;
	
font-size: 0.80rem;
	
font-weight: normal;
	
/* margin-right: 10px; */
	
width: 55px;
	
text-align: center;
}
.player-avatar{
	
                                                width: 40px; 
                                                height: 40px; 
                                                border-radius: 50%; 
                                                display: flex; 
                                                align-items: center; 
                                                justify-content: center; 
                                                color: white; 
                                                font-weight: bold;
                                                font-size: 1.1rem;
                                                box-shadow: 0 2px 4px rgba(0,0,0,0.2);
                                            
}