/* =========================================
   SUNSET GAMING - FINAL FIXED STYLE v4 (PREMIUM NAV)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #ff5f6d;
    --primary-gradient: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);

    /* НОВИ ЦВЕТОВЕ ЗА НАВИГАЦИЯТА (PREMIUM LOOK) */
    --nav-bg-active: linear-gradient(90deg, rgba(255, 95, 109, 0.1), rgba(255, 195, 113, 0.05));
    --nav-border-active: #ff5f6d;
    --nav-glow: rgba(255, 95, 109, 0.3);

    --bg-body: #080808;
    --bg-card: #111111;
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;

    --z-back: -1;
    --z-content: 10;
    --z-nav: 100;
}

* {
    box-sizing: border-box;
    outline: none;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-body);
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: var(--z-content);
}

/* --- NAVIGATION (PREMIUM GLOW STYLE) --- */
.navbar {
    position: relative;
    width: 100%;
    z-index: var(--z-nav);
    padding: 15px 0;
    background: rgba(8, 8, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand {
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #fff;
}

.brand span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    filter: drop-shadow(0 0 10px rgba(255, 95, 109, 0.3));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #aaa;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.nav-link:hover i {
    color: #fff;
    transform: scale(1.1);
}

.nav-link.active {
    background: var(--nav-bg-active);
    border: 1px solid rgba(255, 95, 109, 0.3);
    color: #fff;
    box-shadow: 0 0 20px var(--nav-glow), inset 0 0 10px rgba(255, 95, 109, 0.1);
}

.nav-link.active i {
    color: #ff5f6d;
    filter: drop-shadow(0 0 5px #ff5f6d);
}

.steam-btn {
    background: #121214;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-weight: 800;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.steam-btn:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 95, 109, 0.3);
}

/* USER PROFILE IN NAV */
.user-nav-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px 5px 5px 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-nav-profile:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 95, 109, 0.3);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #222;
    outline: 2px solid var(--primary);
    object-fit: cover;
}

.nav-username {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logout-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 95, 109, 0.1);
    color: #ff5f6d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.logout-btn:hover {
    background: #ff5f6d;
    color: #fff;
    transform: rotate(90deg);
}

/* User Profile Dropdown Menu */
.user-profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.98) 0%, rgba(10, 10, 15, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    min-width: 320px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 95, 109, 0.2);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

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

.dropdown-header {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.dropdown-header-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.dropdown-header-steamid {
    font-size: 0.75rem;
    color: #888;
    font-family: monospace;
}

.dropdown-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.dropdown-menu-item:hover {
    background: rgba(255, 95, 109, 0.15);
    color: #fff;
    transform: translateX(5px);
}

.dropdown-menu-item i {
    width: 20px;
    text-align: center;
    color: #ff5f6d;
}

.dropdown-menu-item.badge-item {
    justify-content: space-between;
}

.dropdown-badge {
    background: rgba(255, 95, 109, 0.2);
    color: #ff5f6d;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

.dropdown-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.dropdown-stat {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.dropdown-stat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 95, 109, 0.3);
}

.dropdown-stat-number {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 5px;
}

.dropdown-stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* --- HERO --- */
.hero {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 95, 109, 0.15);
    border: 1px solid rgba(255, 95, 109, 0.4);
    color: #ff5f6d;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 30px;
}

/* --- HERO STATS --- */
.hero-stats-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: flex-start;
}

.stat-card {
    background: linear-gradient(165deg, rgba(30, 30, 35, 0.8) 0%, rgba(10, 10, 12, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.stat-card:nth-child(2) {
    animation-delay: 1.5s;
}

.stat-card:nth-child(3) {
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff5f6d, #ffc371, transparent);
    opacity: 0.6;
    transition: 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 95, 109, 0.3);
    background: linear-gradient(165deg, rgba(40, 40, 45, 0.8) 0%, rgba(15, 15, 20, 0.95) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 95, 109, 0.15);
}

.stat-card:hover::after {
    opacity: 1;
    height: 4px;
    box-shadow: 0 0 15px #ff5f6d;
}

.stat-icon-box {
    width: auto;
    height: auto;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff5f6d;
    filter: drop-shadow(0 0 10px rgba(255, 95, 109, 0.3));
}

.stat-card:hover .stat-icon-box {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(255, 95, 109, 0.6));
}

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

.stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 1px;
}

.stat-card:hover .stat-label {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* --- SERVER CARD --- */
.server-container {
    margin-bottom: 80px;
    margin-top: 60px;
}

.server-card {
    background: #0e0e10;
    border-top: 4px solid var(--primary);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
}

.server-card:hover {
    transform: translateY(-5px);
}

.sc-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 35px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #2ecc71;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-circle {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ed573;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.sc-actions {
    display: flex;
    gap: 15px;
}

.btn-play-server {
    background: var(--primary-gradient);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-play-server:hover {
    box-shadow: 0 0 20px rgba(255, 95, 109, 0.4);
    transform: scale(1.05);
}

.btn-copy-ip,
.btn-players {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy-ip:hover,
.btn-players:hover,
.btn-players.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.sc-body {
    padding: 40px;
}

.sc-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    color: #fff;
    letter-spacing: -1px;
}

.sc-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sc-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.sc-detail-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sc-big-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.8;
}

.sc-meta {
    width: 100%;
}

.sc-meta label {
    font-size: 0.75rem;
    color: #777;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.sc-meta .value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.custom-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
}

.custom-bar {
    height: 100%;
    background: var(--primary-gradient);
}

/* Player List Dropdown */
.player-list-container {
    background: #0a0a0c;
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.player-list-container.open {
    max-height: 400px;
    overflow-y: auto;
}

.player-list-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.player-list-table th {
    text-align: left;
    padding: 15px 35px;
    color: #777;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
}

.player-list-table td {
    padding: 12px 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: #ccc;
    font-weight: 600;
}

.player-list-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

/* CONTENT & SIDEBAR */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}

.section-header {
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}

.news-card {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.nc-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.9;
    transition: 0.3s;
}

.news-card:hover .nc-img {
    opacity: 1;
    transform: scale(1.02);
}

.nc-content {
    padding: 30px;
}

.nc-date {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 5px;
    display: block;
}

.nc-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.nc-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* SIDEBAR */
.sidebar-box {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sidebar-box:hover {
    transform: translateY(-3px);
}

.sidebar-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff5f6d, #ffc371);
    box-shadow: 0 -5px 20px rgba(255, 195, 113, 0.4);
    opacity: 0.8;
    transition: 0.3s;
}

.sidebar-box:hover::after {
    opacity: 1;
    height: 4px;
    box-shadow: 0 -5px 30px rgba(255, 195, 113, 0.6);
}

.sb-title {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sb-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: #ff5f6d;
    border-radius: 2px;
    box-shadow: 0 0 10px #ff5f6d;
}

.quick-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: #1a1a1a;
    border-radius: 8px;
    color: #ccc;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.quick-link i {
    font-size: 1.2rem;
    color: #ff5f6d;
    min-width: 20px;
    text-align: center;
}

.quick-link:hover {
    background: #222;
    color: #fff;
    transform: translateX(5px);
}

/* TOP PLAYERS */
.lb-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.lb-row:last-child {
    border: none;
}

.lb-left {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    margin-right: 10px;
}

.lb-rank {
    font-weight: 900;
    font-size: 1rem;
    color: #555;
    width: 30px;
    text-align: left;
    flex-shrink: 0;
}

.lb-row:nth-child(1) .lb-rank {
    color: #ffd700;
}

.lb-row:nth-child(2) .lb-rank {
    color: #c0c0c0;
}

.lb-row:nth-child(3) .lb-rank {
    color: #cd7f32;
}

.lb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #333;
    object-fit: cover;
    flex-shrink: 0;
}

.lb-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.lb-val {
    font-weight: 900;
    color: var(--primary);
    font-size: 0.9rem;
    text-align: right;
    min-width: 60px;
    flex-shrink: 0;
}

/* LEADERBOARD PAGE */
.lb-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.lb-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

.lb-subtitle {
    color: #aaa;
    font-size: 1.1rem;
}

/* PODIUM */
.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 25px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.podium-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.podium-card.gold {
    border-bottom: 6px solid #ffd700;
    transform: scale(1.15) translateY(-20px);
    z-index: 2;
    background: linear-gradient(160deg, #151515, #0e0e0e);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
    order: 2;
}

.podium-card.gold .tc-avatar {
    border-color: #ffd700;
    width: 110px;
    height: 110px;
}

.podium-card.silver {
    border-bottom: 5px solid #c0c0c0;
    order: 1;
}

.podium-card.bronze {
    border-bottom: 5px solid #cd7f32;
    order: 3;
}

.podium-rank {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    opacity: 0.5;
}

.podium-card.gold .podium-rank {
    color: #ffd700;
    font-size: 2rem;
    opacity: 1;
}

.podium-card.silver .podium-rank {
    color: #c0c0c0;
}

.podium-card.bronze .podium-rank {
    color: #cd7f32;
}

.podium-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    background: #333;
}

.podium-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 800;
}

.podium-info span {
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
}

.podium-kdr {
    margin-top: 5px;
    font-size: 0.85rem;
    color: #777;
    font-weight: 700;
}

.lb-table-container {
    background: #0e0e10;
    border-top: 4px solid var(--primary);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    margin-bottom: 50px;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 30px;
    outline: none;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    text-align: left;
    padding: 20px;
    color: #888;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.custom-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: #fff;
    font-weight: 600;
    vertical-align: middle;
}

.player-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.rank-num {
    font-size: 1.1rem;
    font-weight: 900;
    color: #555;
}

/* PAGINATION */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ccc;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.page-btn:hover {
    background: rgba(255, 95, 109, 0.1);
    border-color: #ff5f6d;
    color: #fff;
    transform: translateY(-3px);
}

.page-btn.active {
    background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
    border: none;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 95, 109, 0.4);
}

.page-dots {
    color: #555;
    font-weight: 800;
    padding: 0 5px;
    display: flex;
    align-items: center;
}

/* TABLE BADGES */
.table-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    max-width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tb-player {
    background: #1a1a20;
    border-color: rgba(255, 255, 255, 0.1);
    color: #e1e1e1;
}

.tb-player:hover {
    background: #252530;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.tb-admin {
    background: rgba(111, 66, 193, 0.15);
    border-color: rgba(111, 66, 193, 0.4);
    color: #d6bcfa;
}

.tb-admin:hover {
    background: rgba(111, 66, 193, 0.25);
    color: #fff;
    border-color: #9f7aea;
}

.tb-reason {
    background: rgba(255, 95, 109, 0.1);
    border-color: rgba(255, 95, 109, 0.3);
    color: #ff9a9e;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.tb-reason:hover {
    background: rgba(255, 95, 109, 0.2);
    color: #fff;
    max-width: none;
    position: relative;
    z-index: 10;
}

.tb-date {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
    color: #a0a0a0;
    font-family: 'Consolas', monospace;
    letter-spacing: -0.5px;
}

.tb-time {
    background: rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.3);
    color: #5eead4;
}

.tb-type {
    font-weight: 800;
    min-width: 90px;
    justify-content: center;
}

.tb-type.ban {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    border-color: rgba(255, 71, 87, 0.2);
}

.tb-type.mute {
    color: #ffa502;
    background: rgba(255, 165, 2, 0.1);
    border-color: rgba(255, 165, 2, 0.2);
}

.tb-type.gag {
    color: #1e90ff;
    background: rgba(30, 144, 255, 0.1);
    border-color: rgba(30, 144, 255, 0.2);
}

.tb-type.kick {
    color: #ccc;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.tb-type.warn {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
}

.tb-status-active {
    background: rgba(239, 68, 68, 0.15);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.tb-status-expired {
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tb-status-removed {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

/* PUNISHMENT STATS CARDS */
.punishment-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.punishment-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.punishment-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.pst-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pst-ban .pst-icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.pst-mute .pst-icon {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.pst-gag .pst-icon {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.pst-info h4 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 800;
}

.pst-info span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
}

/* Filter Form */
.filter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-select {
    width: 100%;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.filter-btn {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

/* SG Logo Styles */
.hero-sg-logo-container {
    position: absolute;
    right: 350px;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    z-index: 5;
}

.hero-animated-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    animation:
        fadeLogoIn 1s ease-out 1.5s forwards,
        floatLogo 6s ease-in-out 2.5s infinite;
    filter: drop-shadow(0 0 45px rgba(255, 95, 109, 0.8));
}

@keyframes fadeLogoIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px) rotate(2deg);
    }

    50% {
        transform: translateY(-15px) rotate(-2deg);
    }

    100% {
        transform: translateY(0px) rotate(2deg);
    }
}

/* Skins Specific Styles */
.weapon-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.weapon-category-btn {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 15px;
    transition: 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.weapon-category-btn:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.weapon-category-btn.active {
    background: rgba(255, 95, 109, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(255, 95, 109, 0.3);
}

.w-icon-box {
    font-size: 2.8rem;
    margin-bottom: 12px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 95, 109, 0.3));
}

.w-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.modal-content {
    background: #0a0a0c !important;
    border-top: 4px solid var(--primary) !important;
    border-radius: 24px !important;
    color: #fff;
    border: 1px solid #1a1a1a;
}

select.search-box {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px !important;
    appearance: none;
    cursor: pointer;
}

.search-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 15px;
    color: #fff;
    width: 100%;
    outline: none;
}

.sticker-slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.sticker-slot {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.sticker-slot:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
}

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

.sticker-slot span {
    display: block;
    font-size: 0.55rem;
    color: #555;
    margin-top: 5px;
    font-weight: 800;
}

.skin-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 25px;
    transition: 0.4s ease;
    position: relative;
    height: 100%;
    cursor: pointer;
}

.skin-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.skin-image {
    width: 100%;
    height: 130px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.equip-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
}

.selected-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2ecc71;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
}

.toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
}

.custom-toast {
    background: #111;
    border-left: 4px solid #2ecc71;
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(130%);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-toast.show {
    transform: translateX(0);
}

.loadout-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 3rem;
}

.loadout-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.loadout-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.loadout-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
}

.loadout-preview-item {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.loadout-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loadout-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: 0.3s;
}

.loadout-card:hover .loadout-actions {
    opacity: 1;
}

.loadout-action-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 0.8rem;
}

.btn-view {
    background: rgba(139, 92, 246, 0.3);
}

.btn-share {
    background: rgba(59, 130, 246, 0.3);
}

.btn-delete {
    background: rgba(239, 68, 68, 0.3);
}

.custom-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.custom-dialog-overlay.active {
    display: flex;
}

.custom-dialog {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.share-code {
    font-family: monospace;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    margin: 15px 0;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: bold;
}

.weapon-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 8px;
}

.weapon-item img {
    width: 50px;
    height: 40px;
    object-fit: contain;
    margin-right: 15px;
}

.weapon-item-info {
    flex: 1;
}

.team-section-header {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.team-section-header.ct {
    border-left: 3px solid #3b82f6;
}

.team-section-header.t {
    border-left: 3px solid #ef4444;
}

.sync-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
    text-transform: uppercase;
}

.sync-badge.synced {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.sync-badge.partial {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.sync-badge.unsynced {
    background: rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Store Specific Styles */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.product-card {
    background: linear-gradient(165deg, rgba(30, 30, 35, 0.8) 0%, rgba(10, 10, 12, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--primary);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 95, 109, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 95, 109, 0.1);
}

.prod-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 95, 109, 0.4));
    transition: 0.4s;
}

.product-card:hover .prod-icon {
    transform: scale(1.1) rotate(5deg);
}

.prod-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.prod-price {
    font-size: 2rem;
    font-weight: 900;
    color: #2ecc71;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
}

.prod-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    flex-grow: 1;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.prod-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #bbb;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prod-features li:last-child {
    border-bottom: none;
}

.prod-features li i {
    color: var(--primary);
    font-size: 1rem;
}

.btn-buy {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 16px;
    width: 100%;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 95, 109, 0.3);
}

.btn-buy:hover {
    box-shadow: 0 8px 25px rgba(255, 95, 109, 0.5);
    transform: scale(1.03);
}

.btn-buy:disabled {
    background: #222;
    cursor: not-allowed;
    color: #555;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-badge-container {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.vip-status-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.05);
    animation: slideInUp 0.6s ease-out;
}

/* Profile View Specific Styles */
.profile-hero {
    background: linear-gradient(165deg, rgba(20, 20, 25, 0.9) 0%, rgba(10, 10, 12, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.ph-avatar {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    z-index: 1;
}

.ph-info {
    flex: 1;
    z-index: 1;
}

.ph-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ph-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ph-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ph-badge i {
    color: var(--primary);
}

.ph-actions {
    display: flex;
    gap: 15px;
}

.btn-ph {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-steam {
    background: #171a21;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-faceit {
    background: #ff5500;
    color: #fff;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-top: 40px;
}

.stats-grid-profile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.sb-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.sb-val {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.weapons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 60px;
}

.weapon-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.wc-img {
    height: 45px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* News Specific Styles */
.article-container {
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--primary);
    border-radius: 24px;
    padding: 50px;
    margin-top: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.news-header-meta {
    display: flex;
    gap: 20px;
    color: #777;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.news-header-meta i {
    color: var(--primary);
}

.full-news-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #fff;
}

.article-main-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-body {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body p {
    margin-bottom: 20px;
}

.share-box {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-share {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s;
}

.btn-share:hover {
    transform: translateY(-3px);
    background: var(--primary-gradient);
    border-color: transparent;
}

.btn-back-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

.btn-back-custom:hover {
    transform: translateX(-5px);
    color: #fff;
}

.related-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.related-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}


/* =========================================
   UPDATED MODERN FOOTER
   ========================================= */
.footer-section {
    background: #050505;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    /* PC: 5 Колони */
    gap: 40px;
    margin-bottom: 60px;
}

.branding {
    grid-column: span 1;
    /* PC: Заема 1 колона */
    text-align: left;
    /* PC: Текстът е подравнен вляво */
}

.footer-col-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-text {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 20px 0 25px 0;
    text-align: left;
    /* PC: Текстът е подравнен вляво */
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.center-socials {
    display: flex;
    justify-content: flex-start;
    /* PC: Подравняване вляво */
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary);
    opacity: 0.6;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-weight: 600;
}

.fb-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
}

.fb-right span {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.fb-right i {
    color: #003087;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(0, 48, 135, 0.3));
}

/* Допълнителни стилове за фуутъра, ако са загубени */
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary-gradient);
    color: #fff;
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 95, 109, 0.3);
}

/* --- DISCORD CARD ВЪВ FOOTER (КОРЕКЦИЯ) --- */
.discord-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
}

.discord-card:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.4);
    transform: translateY(-3px);
}

.discord-card .dc-icon {
    font-size: 1.8rem;
    color: #5865F2;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.5));
}

.discord-card .dc-info {
    display: flex;
    flex-direction: column;
}

.discord-card .dc-label {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    font-weight: 800;
}

.discord-card .dc-name {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
}

.discord-card .dc-status-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    box-shadow: 0 0 10px #2ecc71;
}

/* =========================================
   МОБИЛНА АДАПТАЦИЯ (MAX-WIDTH: 768px)
   ========================================= */

@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .profile-hero>div[style*="text-align:center"] {
        padding-left: 15px;
    }

    /* FOOTER АДАПТАЦИЯ ЗА ТАБЛЕТ/СРЕДЕН ЕКРАН */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 колони */
        gap: 30px;
    }

    .branding {
        grid-column: span 2;
        /* Брандингът заема 2-те колони */
    }

    .footer-text,
    .center-socials {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .sc-details-grid {
        grid-template-columns: 1fr;
    }

    .podium-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .podium-card {
        width: 90%;
        max-width: 350px;
    }

    .podium-card.gold {
        transform: scale(1) translateY(0);
        order: 1;
    }

    .podium-card.silver {
        order: 2;
    }

    .podium-card.bronze {
        order: 3;
    }

    /* Скриване на десктоп елементи и показване на мобилни */
    .nav-links,
    .user-nav-profile,
    .steam-btn {
        display: none !important;
    }

    .hero-sg-logo-container {
        right: 0;
        top: 0;
        transform: none;
        width: 250px;
        height: 250px;
        opacity: 0.3;
    }

    /* Показване на бургер иконата */
    .menu-toggle {
        display: block !important;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: 0.3s;
        order: 3;
    }
}


/* =========================================
   MOBILE OFF-CANVAS MENU СТИЛОВЕ
   ========================================= */
/* ... (Стиловете за мобилното меню остават) ... */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #080808;
    z-index: 200;
    padding: 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    border-left: 2px solid var(--primary);
}

.mobile-nav-panel.open {
    transform: translateX(0);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 199;
    display: none;
    backdrop-filter: blur(4px);
}

.mobile-nav-overlay.open {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-links .nav-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 700;
    color: #aaa;
    padding: 15px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
    background: var(--nav-bg-active);
    color: #fff;
    border: 1px solid rgba(255, 95, 109, 0.3);
    box-shadow: none;
}

.mobile-nav-links .nav-link.active i {
    color: #ff5f6d;
}

.mobile-menu-bottom {
    margin-top: 20px;
}

.mobile-menu-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-profile .nav-avatar {
    width: 60px;
    height: 60px;
}

.mobile-menu-profile .nav-username {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.mobile-menu-profile .logout-btn {
    width: 100%;
    height: auto;
    padding: 10px;
    font-size: 1rem;
    border-radius: 10px;
    position: static;
}

.mobile-menu-bottom .steam-btn {
    display: flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.menu-close-btn {
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

@media (max-width: 768px) {

    body {
        background-size: auto;
    }

    .global-overlay {
        background: rgba(0, 0, 0, 0.9);
    }

    /* 1. НАВИГАЦИЯ */
    .navbar {
        padding: 10px 0;
    }

    .brand {
        font-size: 1.2rem;
    }

    .steam-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
        gap: 5px;
    }

    /* 2. HERO / ЗАГЛАВИЯ */
    .hero {
        padding: 40px 0;
    }

    .hero-badge {
        margin-bottom: 10px;
        font-size: 0.7rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-sg-logo-container {
        display: none;
    }

    .container h1[style*="font-size: 4rem"] {
        font-size: 2.5rem !important;
    }

    .loadout-section h3 {
        font-size: 1.1rem !important;
    }

    .container h1[style*="font-size: 3.5rem"] {
        font-size: 2rem !important;
    }

    /* 3. СТАТИСТИКИ (Hero Stats) */
    .hero-stats-row {
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .stat-card {
        min-width: 48%;
        padding: 12px 15px;
    }

    .stat-icon-box {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    /* 4. SERVER CARD */
    .server-container {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .server-card {
        border-radius: 12px;
    }

    .sc-header {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .sc-actions {
        width: 100%;
        justify-content: space-around;
    }

    .btn-copy-ip,
    .btn-play-server {
        flex: 1;
        justify-content: center;
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    .sc-body {
        padding: 25px;
    }

    .sc-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .sc-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sc-detail-box {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    /* 5. FOOTER АДАПТАЦИЯ ЗА МОБИЛЕН ТЕЛЕФОН */
    .footer-grid {
        grid-template-columns: 1fr;
        /* 1 колона */
        gap: 20px;
    }

    .branding {
        grid-column: span 1;
        text-align: center;
        /* Центриране на брандинга на мобилно */
    }

    .footer-col-title {
        text-align: center;
        margin-top: 15px;
    }

    .footer-col-title::after {
        left: 50%;
        /* Центриране на подчертаването */
        transform: translateX(-50%);
    }

    .footer-text,
    .footer-links a,
    .center-socials {
        text-align: center;
        justify-content: center;
    }

    .footer-links a i {
        margin-right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    /* --- SKINS.PHP АДАПТАЦИИ --- */
    .weapon-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }

    .weapon-category-btn {
        padding: 20px 8px;
        border-radius: 16px;
    }

    .w-icon-box {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .w-title {
        font-size: 0.7rem;
    }

    .row.g-4#skinsContainer>.col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }

    .skin-card {
        padding: 15px;
        border-radius: 16px;
    }

    .skin-image {
        height: 80px;
        margin-bottom: 5px;
    }

    .modal-body .row {
        flex-direction: column;
        text-align: center;
    }

    .modal-body .col-md-5,
    .modal-body .col-md-7 {
        width: 100%;
        margin-top: 20px;
    }

    .sticker-slots-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
    }

    .loadout-section .d-flex {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start !important;
    }

    .loadout-section .d-flex .d-flex {
        flex-direction: row;
        width: 100%;
    }

    .col-12.col-md-6.col-lg-4 {
        width: 100%;
        flex: 0 0 100%;
    }

    .share-code {
        font-size: 1rem;
    }

    /* --- PUNISHMENTS.PHP АДАПТАЦИИ --- */
    .punishment-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .filter-form {
        flex-direction: column;
        gap: 10px;
    }

    /* --- LEADERBOARD.PHP АДАПТАЦИИ --- */
    .lb-title {
        font-size: 2rem;
    }

    .podium-card.gold .podium-avatar {
        width: 90px;
        height: 90px;
    }

    .podium-avatar {
        width: 60px;
        height: 60px;
    }

    .custom-table th,
    .custom-table td {
        font-size: 0.75rem;
        padding: 10px;
    }

    /* --- PROFILE-VIEW.PHP АДАПТАЦИИ --- */
    .profile-hero {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 15px;
    }

    .ph-avatar {
        width: 100px;
        height: 100px;
    }

    .ph-name {
        font-size: 1.8rem;
    }

    .ph-badges {
        justify-content: center;
    }

    .ph-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .stats-grid-profile {
        grid-template-columns: 1fr;
    }

    .weapons-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    /* --- NEWS.PHP АДАПТАЦИИ --- */
    .article-container {
        padding: 20px;
        border-radius: 16px;
    }

    .full-news-title {
        font-size: 1.5rem;
    }

    .news-header-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.75rem;
    }

    .article-body {
        font-size: 1rem;
    }

    /* --- STORE.PHP АДАПТАЦИИ --- */
    .store-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 25px;
        border-radius: 16px;
    }

    .prod-title {
        font-size: 1.4rem;
    }

    .vip-status-box {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .stat-card {
        min-width: 100%;
    }

    .lb-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .lb-val {
        align-self: flex-end;
    }

    .sc-actions {
        flex-direction: column;
        gap: 5px;
    }

    .btn-copy-ip,
    .btn-play-server {
        width: 100%;
    }

    .mobile-nav-panel {
        width: 100%;
    }
}

/* Допълнителни стилове за фуутъра, ако са загубени */
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary-gradient);
    color: #fff;
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 95, 109, 0.3);
}

/* =========================================
   SKINS PAGE REDESIGN v3 (FLOATING GLASS + HOLO)
   ========================================= */

.main-layout-wrapper {
    display: flex;
    height: calc(100vh - 80px);
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #1a1a20 0%, #050505 100%);
}

.skins-content-area {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
    margin-left: 100px;
    /* Space for floating sidebar */
    width: calc(100% - 100px);
}

/* --- FLOATING GLASS SIDEBAR --- */
.skins-sidebar-modern {
    position: fixed;
    left: 20px;
    top: 100px;
    /* Adjust based on navbar */
    bottom: 30px;
    width: 70px;
    /* Reduced width */
    background: rgba(15, 15, 18, 0.7);
    /* Slightly darker/more readable */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.skins-sidebar-modern:hover {
    background: rgba(20, 20, 25, 0.8);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 10px var(--primary));
}

.sidebar-nav-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
    flex-grow: 1;
    overflow-y: auto;
}

.sidebar-nav-modern::-webkit-scrollbar {
    display: none;
}

.nav-item-modern {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.03);
    color: #888;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-out;
    position: relative;
    margin-bottom: 8px;
    /* Spacing between items */
}

.nav-item-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.nav-item-modern.active {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 95, 109, 0.3);
    border-color: transparent;
    transform: scale(1.05);
}

.nav-tooltip {
    position: absolute;
    left: 70px;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: 0.3s;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-item-modern:hover .nav-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-divider {
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
}

.loadout-trigger {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loadout-trigger:hover {
    background: #fff;
    color: #000;
}

/* --- HOLOGRAPHIC LOADOUT MODAL --- */
.loadout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.loadout-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.loadout-modal-container {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(20px);
    transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.loadout-modal-overlay.active .loadout-modal-container {
    transform: scale(1) translateY(0);
}

.loadout-modal-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.lm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.lm-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lm-actions {
    display: flex;
    gap: 15px;
}

.btn-neon-action {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-neon-action:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.lm-close {
    background: #2a2a2a;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.lm-close:hover {
    background: #ff4757;
    transform: rotate(90deg);
}

.lm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    overflow-y: auto;
    padding: 10px;
    z-index: 2;
}


/* --- GRID ADJUSTMENTS --- */
.skins-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.skins-grid-container>div {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

@media (max-width: 1400px) {
    .skins-grid-container>div {
        flex: 0 0 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }
}

@media (max-width: 1024px) {
    .skins-grid-container>div {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .skins-sidebar {
        width: 200px;
    }
}

.skin-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    height: 100%;
    cursor: pointer;
}

.skin-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.9) 0%, rgba(15, 15, 18, 0.95) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.skin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 70%);
    opacity: 0;
    transition: 0.4s;
}

.skin-card:hover::before {
    opacity: 1;
}

.skin-image {
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 15px;
}

.skin-card:hover .skin-image {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* AGENTS OVERRIDE */
.agent-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(165deg, #151515 0%, #0a0a0c 100%);
}

.agent-card:hover {
    transform: translateY(-10px);
}

.team-switch-container {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    gap: 5px;
    margin-bottom: 30px;
}

.team-switch-btn {
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #666;
    background: transparent;
    border: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.team-switch-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.team-switch-btn.active-ct {
    background: #0099cc;
    /* Custom CT Blue */
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 153, 204, 0.4);
}

.team-switch-btn.active-t {
    background: #cc9900;
    /* Custom T Yellow/Gold-ish */
    color: #fff;
    box-shadow: 0 0 20px rgba(204, 153, 0, 0.4);
}

/* --- NEW LOADOUT PANEL STYLES --- */
.lp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.lp-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.lp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.lp-name {
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.lp-meta {
    font-size: 0.7rem;
    color: #666;
    font-weight: 700;
}

.lp-percent {
    font-size: 0.75rem;
    font-weight: 800;
    color: #666;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.lp-percent.synced {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.lp-preview-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 5px;
}

.lp-preview-img {
    width: 40px;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-preview-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lp-more-count {
    font-size: 0.7rem;
    color: #666;
    font-weight: 700;
    padding-left: 5px;
}

.lp-card-actions {
    display: flex;
    gap: 8px;
}

.lp-btn {
    border: none;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.2s;
    height: 32px;
}

.lp-btn.equip {
    flex-grow: 1;
    background: var(--primary-gradient);
    color: #fff;
    text-transform: uppercase;
}

.lp-btn.equip:hover {
    box-shadow: 0 0 15px rgba(255, 95, 109, 0.4);
}

.lp-btn.icon {
    width: 32px;
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-btn.icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lp-btn.delete:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}