.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.q-card {
    background: #151515;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.q-card:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
}

.q-icon {
    font-size: 2.5em;
    color: #d4af37;
}

.q-info h4 { margin: 0 0 5px 0; color: #fff; font-size: 15px; }
.q-info p { margin: 0; font-size: 12px; color: #888; }

.hero-section {
    margin-bottom: 30px;
    height: 350px;
    width: 100%;
}

.promo-banner {
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('https://wiki.alliedmods.net/images/2/23/Csgo-agent-ct.png') no-repeat right center;
    background-size: cover;
    background-color: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.promo-banner h1 { color: #d4af37; font-size: 36px; margin: 0 0 10px 0; }
.promo-banner p { color: #ccc; font-size: 16px; max-width: 60%; }
.promo-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    width: fit-content;
    text-transform: uppercase;
}

.section-title { 
    color: #fff; 
    margin-bottom: 15px; 
    font-size: 20px; 
    text-transform: uppercase; 
    border-bottom: 1px solid #333; 
    padding-bottom: 10px;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.server-card {
    background: #151515;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    padding: 20px;
    position: relative;
    transition: 0.3s;
}

.server-card:hover { border-color: #d4af37; }

.sv-name { font-size: 18px; font-weight: bold; color: #fff; margin-bottom: 5px; }
.sv-map { font-size: 13px; color: #888; margin-bottom: 15px; }
.sv-tags span {
    background: #222;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #ccc;
    margin-right: 5px;
}
.sv-players { margin-top: 15px; font-weight: bold; color: #4caf50; display: flex; justify-content: space-between; align-items: center;}
.sv-play-btn {
    background: #333;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
}
.sv-play-btn:hover { background: #d4af37; color: #000; }

.stats-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.stat-card {
    background: #151515;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    padding: 15px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.stat-card:hover { border-color: #d4af37; }
.stat-card.highlight { border-color: #d4af37; background: rgba(212, 175, 55, 0.05); }

.stat-card i { position: absolute; top: 15px; right: 15px; color: #444; font-size: 18px; }
.stat-card.highlight i { color: #d4af37; }

.stat-title { font-size: 12px; color: #888; margin-bottom: 5px; display: block;}
.stat-value { font-size: 24px; font-weight: bold; color: #fff; }
.stat-card.highlight .stat-value { color: #d4af37; }

.bottom-layout {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.chat-box {
    flex: 1;
    background: #151515;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 300px;
}

.chat-header {
    background: #111;
    padding: 15px;
    border-bottom: 1px solid #2a2a2a;
    font-weight: bold;
    color: #d4af37;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Стили для будущих живых сообщений */
.msg { font-size: 13px; line-height: 1.4; background: rgba(255,255,255,0.02); padding: 8px; border-radius: 5px;}
.msg span.name { color: #d4af37; font-weight: bold; margin-right: 5px; }
.msg span.time { color: #666; font-size: 10px; float: right; }

.chat-input {
    display: flex;
    padding: 10px;
    background: #111;
    border-top: 1px solid #2a2a2a;
}

.chat-input input {
    flex: 1;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    outline: none;
}

.chat-input button {
    background: #d4af37;
    border: none;
    color: #000;
    padding: 0 20px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.csgo-footer {
    flex: 1;
    background: #151515;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.csgo-footer h3 {
    color: #d4af37;
    margin-top: 0;
    text-transform: uppercase;
    font-size: 22px;
}

.csgo-footer p {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    background: #222;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.footer-links a:hover {
    background: #d4af37;
    color: #000;
}

.footer-copy {
    margin-top: 20px;
    font-size: 12px;
    color: #444;
    border-top: 1px solid #2a2a2a;
    padding-top: 15px;
}