.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px; /* Компенсируем padding колонок */
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 20px;*/
	align-items:center;
}
.arsenal-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.killtype-section {
    background-color: #161616;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.weapons-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    padding: 15px;
	gap: 20px;
}
.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 15px; /* Отступ между карточками */
    box-sizing: border-box;
}
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.card {
	overflow:hidden;
	/*height: 100%;*/
	padding: 5px;
	background-color: #000000;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow:0 10px 20px #00000080;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
	overflow:visible;
	transform:translateY(-5px);
	box-shadow:0 15px 30px #ec4e00
}
.card::after {
	position:absolute;
	background:linear-gradient(to top,#000000b3,transparent);
	opacity:0;
	transition:opacity .3s ease
}
.card:hover::after {
	opacity:1
}
.card img {
  max-width: 150px;
  max-height: 150px;
  align-items:center;
  margin-left:auto;
  margin-right:auto;
}
.card-body {
    padding: 20px;
}
.card-title {
    align-items:center;
	font-size: 1.25rem;
	font-weight: bold;
    margin-bottom: 12px;
    color: #ff3b00;
}
.card-text {
    color: #666;
    font-size: 1rem;
	display: block;
}
.text-center {
    text-align: center;
}
.weapon-stats {
    display: flex;
    flex-direction: column;
	justify-content: space-between;
    gap: 5px;
}
.stat {
    color: #aaa;
    font-size: 14px;
    margin-left: 5px;
}
#leaders-block {
    margin-top: 20px;
    padding: 15px;    
	/*background-color: #2a2a2a75;*/
    border-radius: 5px;
}
.leaders-list {
	margin-top: 10px;
}
.leader-item {
	margin: 8px 0;
	font-size: 16px;
}
.no-leaders {
	color: #aaa;
	font-style: italic;
}
.gold-text {
	color: gold;
	font-weight: bold;
}
.silver-text {
	color: silver;
	font-weight: bold;
}
.bronze-text {
	color: #cd7f32;
	font-weight: bold;
}
.top-players-list {
    list-style: none;
    padding: 0;
}
.top-player {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 4px;
}
.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
}
.player-place {
    font-weight: bold;
    width: 30px;
    text-align: center;
}
.player-avatar-container {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffd700; /* Золотая рамка для TOP 1 */
}
.player-avatar-container.top2 { border-color: #c0c0c0; } /* Серебро */
.player-avatar-container.top3 { border-color: #cd7f32; } /* Бронза */
@media (max-width: 768px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}