/* CS:GO стиль для игры */
:root {
    --csgo-dark: #1a1d24;
    --csgo-darker: #0f1217;
    --csgo-light: #2a2f3a;
    --csgo-gold: #c9a44b;
    --csgo-blue: #4b7bc9;
    --csgo-red: #c94b4b;
    --csgo-green: #6b8f4b;
    --csgo-orange: #ff8b4b;
}

/* Градиенты как в кс */
.csgo-gradient {
    background: linear-gradient(135deg, var(--csgo-dark) 0%, var(--csgo-darker) 100%);
    border: 1px solid rgba(201, 164, 75, 0.3);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Карточки как в инвентаре CS:GO */
.inventory-item {
    background: linear-gradient(135deg, #2a2f3a 0%, #1a1d24 100%);
    border: 2px solid #c9a44b;
    border-radius: 8px;
    padding: 10px;
    margin: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inventory-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #c9a44b, #ffd700, #c9a44b);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 10px;
}

.inventory-item:hover::before {
    opacity: 1;
}

.inventory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 164, 75, 0.3);
}

/* Редкость как в кс (качество предметов) */
.quality-consumer { color: #b0c3d9; }      /* Consumer grade - синий */
.quality-industrial { color: #5e98d9; }     /* Industrial grade - синий */
.quality-mil-spec { color: #4b74b3; }       /* Mil-spec - синий */
.quality-restricted { color: #8847ff; }     /* Restricted - фиолетовый */
.quality-classified { color: #d32ee6; }     /* Classified - розовый */
.quality-covert { color: #eb4b4b; }         /* Covert - красный */
.quality-knife { color: #ffd700; }          /* Knife - золотой */

/* Анимация открытия кейса */
.case-opening {
    animation: caseOpen 1.5s ease-out;
}

@keyframes caseOpen {
    0% { transform: scale(1) rotate(0deg); filter: brightness(1); }
    50% { transform: scale(1.2) rotate(5deg); filter: brightness(1.5); }
    100% { transform: scale(1) rotate(0deg); filter: brightness(1); }
}

/* Уведомления в стиле CS:GO */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2a2f3a 0%, #1a1d24 100%);
    border-left: 4px solid var(--csgo-gold);
    padding: 15px 25px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Прогресс бар как в кс */
.progress-bar-csgo {
    width: 100%;
    height: 20px;
    background: #2a2f3a;
    border: 1px solid #c9a44b;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar-csgo .fill {
    height: 100%;
    background: linear-gradient(90deg, #c9a44b, #ffd700);
    transition: width 0.3s ease;
}

/* Перебиваем Mobirise */
.menu, .menu1, .cid-suhdtla8XI, .navbar {
    all: revert !important;
}

.footer7, .cid-suhp24BnIg {
    position: relative !important;
    bottom: 0 !important;
    width: 100% !important;
    margin-top: 50px !important;
}

/* Фикс для гамбургера */
.navbar-toggler {
    display: block !important;
    z-index: 9999 !important;
}

.collapse.navbar-collapse {
    background: #1a1d24 !important;
}

/* Если гамбургер не кликается */
.navbar-toggler:not(.collapsed) + .navbar-collapse {
    display: block !important;
}
/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 18, 23, 0.9), rgba(10, 12, 17, 0.95)), url('/assets/img/csgo-farm-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Анимированные частицы */
.csgo-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 164, 75, 0.1) 0%, transparent 50%);
    animation: particleMove 10s ease infinite;
}

@keyframes particleMove {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(2%, 2%) scale(1.1); opacity: 0.8; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
}

/* Логотип с глитчем */
.csgo-logo {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #c9a44b;
    text-shadow: 0 0 30px rgba(201, 164, 75, 0.5);
    margin-bottom: 20px;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: skew(0deg, 0deg); opacity: 1; }
    95% { transform: skew(2deg, 1deg); opacity: 0.9; }
    96% { transform: skew(-2deg, -1deg); opacity: 0.8; }
    97% { transform: skew(0deg, 0deg); opacity: 1; }
}

/* Счетчик игроков */
.player-count {
    background: rgba(26, 29, 36, 0.8);
    border: 2px solid #c9a44b;
    border-radius: 50px;
    padding: 15px 30px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(201, 164, 75, 0.3);
    backdrop-filter: blur(5px);
}

.player-count span:first-child {
    color: #c9a44b;
    font-size: 1.2rem;
}

.player-count .quality-knife {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 15px;
}

/* Описание */
.description-box {
    background: rgba(15, 18, 23, 0.7);
    border-left: 4px solid #c9a44b;
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.description-box p {
    font-size: 1.2rem;
    color: #b0c3d9;
    line-height: 1.8;
}

/* Кнопки в стиле CS:GO */
.csgo-button {
    display: inline-block;
    padding: 15px 40px;
    margin: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.csgo-button.primary {
    color: #000;
    background: linear-gradient(135deg, #c9a44b, #ffd700);
    box-shadow: 0 0 30px rgba(201, 164, 75, 0.5);
}

.csgo-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(201, 164, 75, 0.8);
}

.csgo-button.secondary {
    color: #c9a44b;
    background: transparent;
    border: 2px solid #c9a44b;
}

.csgo-button.secondary:hover {
    background: rgba(201, 164, 75, 0.1);
    transform: translateY(-2px);
}

/* Эффект блика на кнопке */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.csgo-button:hover .btn-shine {
    left: 100%;
}

/* Декоративная линия */
.csgo-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, #c9a44b, #ffd700, #c9a44b, transparent);
    animation: scanline 4s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Карточки для рекламы */
.csgo-card {
    background: #1a1d24;
    border: 1px solid #c9a44b;
    border-radius: 8px;
    padding: 20px;
    transition: 0.3s;
}

.csgo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 164, 75, 0.3);
    border-color: #ffd700;
}

/* Заголовок с свечением */
.csgo-glow {
    text-shadow: 0 0 20px rgba(201, 164, 75, 0.5);
    animation: glowPulse 2s ease infinite;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(201, 164, 75, 0.5); }
    50% { text-shadow: 0 0 40px rgba(201, 164, 75, 0.8); }
}

/* Карточки особенностей */
.feature-card {
    background: #1a1d24;
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: #c9a44b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 164, 75, 0.2);
}

.feature-card:hover .card-hover-line {
    transform: scaleX(1) !important;
}

.card-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a44b, transparent);
    transform: scaleX(0);
    transition: 0.3s;
}

.feature-card i {
    font-size: 3rem;
    color: #c9a44b;
    margin-bottom: 20px;
    transition: 0.3s;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: #ffd700;
}

/* Секция с описанием */
.description-section {
    background: linear-gradient(rgba(15, 18, 23, 0.9), rgba(15, 18, 23, 0.95)), url('/assets/img/csgo-farm-bg-2.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .csgo-logo {
        font-size: 3rem;
    }
    
    .player-count {
        padding: 10px 20px;
    }
    
    .player-count span:first-child {
        font-size: 1rem;
    }
    
    .player-count .quality-knife {
        font-size: 1.5rem;
    }
    
    .description-box p {
        font-size: 1rem;
    }
    
    .csgo-button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* Убираем белую полосу между секциями */
section.gallery1.cid-suhupMhdHg {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    background: #0f1217 !important;
}

/* Убираем возможный отступ после Mobirise секции */
section.gallery1.cid-suhupMhdHg + * {
    margin-top: 0 !important;
}

/* Наша секция рекламы */
.ads-section {
    padding-top: 20px !important; /* уменьши если нужно */
    background: #0f1217;
    position: relative;
    z-index: 2;
}

/* Если белая полоса все еще видна */
.ads-section::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: #0f1217 !important;
    z-index: 3 !important;
}

/* Секция особенностей */
.features-section {
    background: #0f1217;
    padding: 60px 0;
}

/* Заголовок секции */
.features-section h2 {
    color: #c9a44b;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(201, 164, 75, 0.3);
}

/* Карточки */
.features-section .feature-card {
    background: linear-gradient(135deg, #1a1d24 0%, #0f1217 100%);
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features-section .feature-card:hover {
    border-color: #c9a44b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 164, 75, 0.2);
}

/* Иконки */
.features-section .feature-card i {
    font-size: 3rem;
    color: #c9a44b;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    transition: 0.3s;
}

.features-section .feature-card:hover i {
    transform: scale(1.1);
    color: #ffd700;
}

/* Заголовки карточек */
.features-section .feature-card h3 {
    color: #c9a44b;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

/* Текст карточек - ВОТ ЭТО ГЛАВНОЕ */
.features-section .feature-card p {
    color: #b0c3d9 !important;  /* Светло-серый, хорошо читается */
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Если нужен более контрастный вариант */
.features-section .feature-card p {
    color: #e0e0e0 !important;  /* Почти белый */
    font-weight: 500;
}

/* Или вариант с золотым отливом */
.features-section .feature-card p {
    color: #d3d3d3 !important;
    text-shadow: 0 0 10px rgba(201, 164, 75, 0.3);
}

/* Анимация появления текста */
.features-section .feature-card {
    animation: fadeInUp 0.6s ease backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Задержки для карточек */
.features-section .feature-card:nth-child(1) { animation-delay: 0.1s; }
.features-section .feature-card:nth-child(2) { animation-delay: 0.2s; }
.features-section .feature-card:nth-child(3) { animation-delay: 0.3s; }
.features-section .feature-card:nth-child(4) { animation-delay: 0.4s; }
.features-section .feature-card:nth-child(5) { animation-delay: 0.5s; }
.features-section .feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Мобильная адаптация */
@media (max-width: 768px) {
    .features-section h2 {
        font-size: 2rem;
    }
    
    .features-section .feature-card {
        padding: 20px 15px;
    }
    
    .features-section .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .features-section .feature-card p {
        font-size: 0.9rem;
    }
}

/* CS:GO стили для кабинета */
.csgo-resource-panel {
    background: linear-gradient(180deg, #1a1d24 0%, #0f1217 100%);
    border-bottom: 2px solid #c9a44b;
    padding: 15px 0;
    margin-bottom: 30px;
}

.resource-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(26, 29, 36, 0.6);
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 50px;
    transition: 0.3s;
}

.resource-item:hover {
    border-color: #c9a44b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 164, 75, 0.2);
}

.resource-item i {
    font-size: 1.2rem;
}

.resource-item.diamonds i { color: #c9a44b; }
.resource-item.coins i { color: #ffd700; }
.resource-item.rubles i { color: #4b7bc9; }
.resource-item.level i { color: #8847ff; }
.resource-item.stars i { color: #ffd700; }
.resource-item.rating i { color: #eb4b4b; }

.resource-value {
    font-weight: bold;
    color: #fff;
}

/* Новостной тикер */
.news-ticker {
    display: flex;
    align-items: center;
    background: #1a1d24;
    border: 1px solid #c9a44b;
    border-radius: 8px;
    padding: 10px 20px;
    margin-bottom: 30px;
}

.ticker-icon {
    padding-right: 20px;
    border-right: 1px solid rgba(201, 164, 75, 0.3);
}

.ticker-icon i {
    font-size: 1.5rem;
    color: #c9a44b;
}

.ticker-content {
    flex: 1;
    padding-left: 20px;
}

.ticker-content marquee {
    color: #b0c3d9;
    font-size: 1.1rem;
}

/* Профиль */
.csgo-profile-card {
    background: linear-gradient(135deg, #1a1d24 0%, #0f1217 100%);
    border: 1px solid #c9a44b;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.profile-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.profile-avatar {
    position: relative;
    width: 100px;
    height: 100px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #c9a44b;
    object-fit: cover;
}

.avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: #c9a44b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.avatar-edit:hover {
    transform: scale(1.1);
    background: #ffd700;
}

.avatar-edit i {
    color: #0f1217;
    font-size: 0.9rem;
}

.profile-name {
    font-size: 1.5rem;
    margin: 0 0 5px;
}

.profile-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.online {
    background: rgba(107, 143, 75, 0.2);
    border: 1px solid #6b8f4b;
    color: #6b8f4b;
}

.status-badge i {
    font-size: 0.5rem;
}

.profile-stats {
    margin-bottom: 25px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 164, 75, 0.1);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0c3d9;
}

.stat-label i {
    font-size: 1rem;
}

.stat-value {
    font-weight: 600;
}

.star-progress {
    width: 100px;
    height: 6px;
    background: rgba(26, 29, 36, 0.8);
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    margin-right: 8px;
}

.star-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c9a44b, #ffd700);
}

.profile-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(26, 29, 36, 0.6);
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 6px;
    color: #b0c3d9;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
}

.action-btn:hover {
    background: rgba(201, 164, 75, 0.1);
    border-color: #c9a44b;
    color: #fff;
    transform: translateY(-2px);
}

.action-btn.exit {
    border-color: #c94b4b;
}

.action-btn.exit:hover {
    background: rgba(201, 75, 75, 0.1);
    border-color: #c94b4b;
}

.action-btn.admin {
    border-color: #8847ff;
}

.action-btn.admin:hover {
    background: rgba(136, 71, 255, 0.1);
    border-color: #8847ff;
}

/* Карточка уровня */
.csgo-level-card {
    background: linear-gradient(135deg, #1a1d24 0%, #0f1217 100%);
    border: 1px solid #c9a44b;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.level-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.level-badge {
    background: rgba(201, 164, 75, 0.2);
    border: 1px solid #c9a44b;
    border-radius: 50px;
    padding: 5px 15px;
    font-weight: bold;
    color: #c9a44b;
}

.level-image {
    text-align: center;
}

.level-image img {
    max-height: 200px;
    border-radius: 8px;
}

/* Партнерская программа */
.csgo-partner-section {
    background: linear-gradient(135deg, #1a1d24 0%, #0f1217 100%);
    border: 1px solid #c9a44b;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.partner-header {
    margin-bottom: 20px;
}

.partner-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header button {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: rgba(26, 29, 36, 0.8);
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 6px;
    color: #b0c3d9;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.accordion-header button:hover {
    background: rgba(201, 164, 75, 0.1);
    border-color: #c9a44b;
}

.accordion-header button i {
    color: #c9a44b;
}

.accordion-header button .badge {
    margin-left: auto;
    background: rgba(201, 164, 75, 0.2);
    border: 1px solid #c9a44b;
    border-radius: 50px;
    padding: 2px 8px;
    font-size: 0.8rem;
}

.accordion-body {
    padding: 20px;
    background: rgba(15, 18, 23, 0.6);
    border: 1px solid rgba(201, 164, 75, 0.2);
    border-top: none;
    border-radius: 0 0 6px 6px;
}

/* Таблица */
.csgo-table {
    width: 100%;
    border-collapse: collapse;
}

.csgo-table th {
    background: rgba(26, 29, 36, 0.8);
    color: #c9a44b;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.csgo-table td {
    padding: 10px 12px;
    color: #b0c3d9;
    border-bottom: 1px solid rgba(201, 164, 75, 0.1);
}

.csgo-table tr:hover td {
    background: rgba(201, 164, 75, 0.05);
}

/* Достижения */
.csgo-achievements-section {
    background: linear-gradient(135deg, #1a1d24 0%, #0f1217 100%);
    border: 1px solid #c9a44b;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.achievements-header {
    margin-bottom: 25px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.achievement-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(26, 29, 36, 0.6);
    border: 1px solid rgba(201, 164, 75, 0.2);
    border-radius: 8px;
    transition: 0.3s;
}

.achievement-card:hover {
    border-color: #c9a44b;
    transform: translateX(5px);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 164, 75, 0.1);
    border: 1px solid #c9a44b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: #c9a44b;
}

.achievement-info {
    flex: 1;
}

.achievement-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 10px;
}

.progress-bar-container {
    height: 6px;
    background: rgba(26, 29, 36, 0.8);
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-container .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c9a44b, #ffd700);
}

.achievement-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #b0c3d9;
}

.claim-btn {
    width: 100%;
    padding: 8px;
    background: rgba(201, 164, 75, 0.2);
    border: 1px solid #c9a44b;
    border-radius: 4px;
    color: #c9a44b;
    transition: 0.3s;
}

.claim-btn:hover {
    background: #c9a44b;
    color: #0f1217;
}

/* Заблокированные достижения */
.csgo-achievements-locked {
    background: linear-gradient(135deg, #1a1d24 0%, #0f1217 100%);
    border: 1px solid #c9a44b;
    border-radius: 12px;
    padding: 50px;
    margin-top: 30px;
    text-align: center;
}

.locked-content i {
    font-size: 3rem;
    color: #c9a44b;
    margin-bottom: 20px;
}

.locked-content h3 {
    margin-bottom: 10px;
}

.locked-content p {
    color: #b0c3d9;
    margin-bottom: 25px;
}

/* Модальное окно */
.csgo-modal {
    background: linear-gradient(135deg, #1a1d24 0%, #0f1217 100%);
    border: 2px solid #c9a44b;
    border-radius: 12px;
}

.csgo-modal .modal-header {
    border-bottom: 1px solid rgba(201, 164, 75, 0.3);
    padding: 20px 25px;
}

.csgo-modal .modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.csgo-modal .close {
    color: #b0c3d9;
    opacity: 1;
}

.csgo-modal .close:hover {
    color: #c9a44b;
}

.csgo-modal .modal-body {
    padding: 25px;
}

.csgo-modal .modal-footer {
    border-top: 1px solid rgba(201, 164, 75, 0.3);
    padding: 20px 25px;
}

/* Инпуты */
.csgo-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(26, 29, 36, 0.6);
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 6px;
    color: #fff;
    transition: 0.3s;
}

.csgo-input:focus {
    outline: none;
    border-color: #c9a44b;
    box-shadow: 0 0 20px rgba(201, 164, 75, 0.2);
}

/* Кнопки */
.btn-primary {
    background: linear-gradient(135deg, #c9a44b, #ffd700);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    color: #0f1217;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 164, 75, 0.4);
}

.btn-secondary {
    background: rgba(26, 29, 36, 0.8);
    border: 1px solid rgba(201, 164, 75, 0.3);
    padding: 12px 25px;
    border-radius: 6px;
    color: #b0c3d9;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(201, 164, 75, 0.1);
    border-color: #c9a44b;
    color: #fff;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .resource-grid {
        flex-direction: column;
        align-items: stretch;
    }
    
    .resource-item {
        justify-content: center;
    }
    
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-actions {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .csgo-table {
        display: block;
        overflow-x: auto;
    }
}

/* Анимации */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 164, 75, 0.2); }
    50% { box-shadow: 0 0 40px rgba(201, 164, 75, 0.4); }
}

.resource-item {
    animation: glow 3s ease infinite;
}

/* Фикс белого текста в партнерской программе */
.partner-description {
    color: #b0c3d9 !important;
}

.partner-description p {
    color: #b0c3d9 !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.partner-description strong {
    color: #c9a44b !important;
}

.partner-description .quality-knife,
.partner-description .quality-covert,
.partner-description .quality-classified,
.partner-description .quality-industrial {
    color: inherit !important;
}

/* Бонусные значения */
.partner-bonus {
    background: rgba(26, 29, 36, 0.8);
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.bonus-label {
    display: block;
    color: #b0c3d9;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-values {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bonus-coin, .bonus-star, .bonus-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.bonus-coin {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
    color: #ffd700 !important;
}

.bonus-star {
    background: rgba(201, 164, 75, 0.1);
    border: 1px solid #c9a44b;
    color: #c9a44b !important;
}

.bonus-rating {
    background: rgba(75, 123, 201, 0.1);
    border: 1px solid #4b7bc9;
    color: #4b7bc9 !important;
}

.bonus-values i {
    font-size: 1rem;
}

/* Ссылка с рефералкой */
.referral-link {
    margin-bottom: 25px;
}

.referral-link h4 {
    color: #c9a44b !important;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.link-box {
    display: flex;
    gap: 10px;
}

.link-box input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(26, 29, 36, 0.8);
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 6px;
    color: #b0c3d9;
    font-family: monospace;
}

.link-box input:focus {
    outline: none;
    border-color: #c9a44b;
}

.copy-btn {
    padding: 0 15px;
    background: rgba(201, 164, 75, 0.2);
    border: 1px solid #c9a44b;
    border-radius: 6px;
    color: #c9a44b;
    cursor: pointer;
    transition: 0.3s;
}

.copy-btn:hover {
    background: #c9a44b;
    color: #0f1217;
}

/* Баннеры */
.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.banner-item {
    background: rgba(26, 29, 36, 0.6);
    border: 1px solid rgba(201, 164, 75, 0.2);
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
}

.banner-item:hover {
    border-color: #c9a44b;
}

.banner-item h5 {
    color: #c9a44b !important;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
}

.banner-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.banner-item textarea {
    width: 100%;
    padding: 8px;
    background: rgba(15, 18, 23, 0.8);
    border: 1px solid rgba(201, 164, 75, 0.3);
    border-radius: 4px;
    color: #b0c3d9;
    font-size: 0.8rem;
    resize: none;
    font-family: monospace;
}