﻿/* ============================================================
   INFO PAGES — Shared styles (about, rules, support, privacy, terms)
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

.info-body {
    background: #050505;
    color: #e5e5e5;
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.info-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

/* === NAV === */
.info-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0;
}

.info-nav a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.info-nav a:hover { color: #fff; }
.info-nav .brand { font-size: 1.25rem; font-weight: 900; color: #fff; display: flex; align-items: center; gap: 8px; }
.info-nav .brand i { color: #da373c; }
.nav-sep { color: rgba(255,255,255,0.15); }

/* === HERO === */
.info-hero {
    text-align: center;
    padding: 72px 0 80px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 64px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(218,55,60,0.08);
    border: 1px solid rgba(218,55,60,0.2);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.72rem;
    color: #f87171;
    margin-bottom: 28px;
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.info-hero h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0 0 20px;
    line-height: 1.1;
}

.info-hero h1 span { color: #da373c; }

.info-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* === SECTIONS === */
.info-section { margin-bottom: 64px; }

.info-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.info-section h2 i { color: #da373c; font-size: 1rem; }

.info-section p {
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.info-section p strong { color: rgba(255,255,255,0.85); }

/* === CARDS: Values === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.value-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 24px;
    transition: border-color 0.3s, transform 0.3s;
}

.value-card:hover { border-color: rgba(218,55,60,0.25); transform: translateY(-2px); }
.value-card .icon { font-size: 1.6rem; margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 0.95rem; font-weight: 700; margin: 0 0 8px; }
.value-card p { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin: 0; line-height: 1.6; }

/* === STATS === */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0 0 64px;
}

.stat-box {
    background: rgba(218,55,60,0.04);
    border: 1px solid rgba(218,55,60,0.12);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
}

.stat-box .num { font-size: 2.2rem; font-weight: 900; color: #f87171; display: block; line-height: 1; }
.stat-box .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 8px; display: block; }

/* === RULES === */
.rules-section { display: flex; flex-direction: column; gap: 14px; }

.rule-item {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 24px;
    align-items: flex-start;
    transition: border-color 0.3s;
}

.rule-item.allowed { border-left: 3px solid rgba(34,197,94,0.4); }
.rule-item.forbidden { border-left: 3px solid rgba(218,55,60,0.4); }
.rule-item:hover { border-color: rgba(255,255,255,0.12); }

.rule-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.rule-item.allowed .rule-icon { background: rgba(34,197,94,0.1); color: #22c55e; }
.rule-item.forbidden .rule-icon { background: rgba(218,55,60,0.1); color: #da373c; }

.rule-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.rule-item p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 0; }

/* === PUNISHMENT TABLE === */
.punish-table {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
}

.punish-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.88rem;
    align-items: center;
}

.punish-row:last-child { border-bottom: none; }
.punish-row.header { background: rgba(255,255,255,0.03); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); font-family: "JetBrains Mono", monospace; }

.punish-row .warn { color: #f59e0b; font-weight: 600; }
.punish-row .danger { color: #f87171; font-weight: 600; }
.punish-row .ban { color: #da373c; font-weight: 800; }

/* === TEAM === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.team-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 28px 20px; text-align: center; }
.team-avatar { width: 68px; height: 68px; border-radius: 50%; background: rgba(218,55,60,0.1); border: 1px solid rgba(218,55,60,0.2); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #da373c; }
.team-card h3 { font-size: 0.9rem; font-weight: 700; margin: 0 0 4px; }
.team-card span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* === FOOTER === */
.info-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 64px;
}

.info-footer a { color: rgba(255,255,255,0.3); font-size: 0.82rem; text-decoration: none; transition: color 0.2s; }
.info-footer a:hover { color: #fff; }

.info-copyright {
    text-align: center;
    color: rgba(255,255,255,0.15);
    font-size: 0.75rem;
    margin-top: 20px;
    padding-bottom: 40px;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .stat-row { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .info-hero { padding: 48px 0 60px; }
    .info-hero h1 { letter-spacing: -1px; }
    .rule-item { flex-direction: column; gap: 12px; }
    .punish-row { grid-template-columns: 1fr; gap: 4px; }
    .punish-row.header { display: none; }
    .info-page { padding: 0 16px 80px; }
}
