:root {
    --bg: #090b12;
    --panel: rgba(15, 20, 32, 0.88);
    --panel-2: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 255, 255, 0.08);
    --text: #eef2ff;
    --muted: #a8b0c2;
    --accent: #7c3aed;
    --accent2: #22d3ee;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
    --r: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top, rgba(124, 58, 237, 0.25), transparent 35%),
        radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.14), transparent 30%),
        linear-gradient(180deg, #07090f 0%, #0a0d15 100%);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    display: flex;
    justify-content: center;
    padding: 12px;
    min-height: 100vh;
}

.phone {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(12, 16, 26, 0.96), rgba(8, 10, 16, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    padding-bottom: 84px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 200px;
    background:
        linear-gradient(180deg, rgba(7, 9, 15, 0.1), rgba(7, 9, 15, 0.88)),
        url("https://placehold.co/1200x800") center/cover no-repeat;
    border-bottom: 1px solid var(--line);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
}

.top-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.emblem {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    flex: 0 0 auto;
    background: url("https://k1.pubgx.ru/uploads/emblems/logo.png") center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.22);
}

.hero h1 {
    margin: 0;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: 0.5px;
}

.hero .sub {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

/* ===== DIVISION BADGE ===== */
.division-badge {
    text-align: center;
    padding: 14px 14px 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #c4b5fd;
}
.division-badge span {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(34, 211, 238, 0.15));
    padding: 8px 24px;
    border-radius: 40px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    display: inline-block;
    backdrop-filter: blur(4px);
}

/* ===== WEEKLY STARS ===== */
.weekly-stars {
    text-align: center;
    padding: 6px 14px 14px;
}
.weekly-stars .label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.weekly-stars .stars-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.weekly-stars .star-nick {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 40px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #fcd34d;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(252, 211, 77, 0.06);
    flex-shrink: 0;
}
.weekly-stars .star-nick .prefix {
    color: var(--muted);
    font-weight: 400;
}
.weekly-stars .star-divider {
    color: var(--muted);
    font-weight: 300;
    font-size: 18px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ===== CONTENT ===== */
.content {
    padding: 10px 14px 14px;
    display: grid;
    gap: 12px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.card-head {
    padding: 14px 14px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.card-head h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}
.card-head small {
    color: var(--muted);
    font-size: 12px;
}

.card-body {
    padding: 14px;
}

/* ===== INFO CARD (description) ===== */
.desc-text {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
    margin: 0;
}
.desc-text strong {
    color: var(--text);
}

/* ===== PLAYERS LIST (12) ===== */
.players-list {
    display: grid;
    gap: 8px;
}

.player-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}
.player-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex: 0 0 auto;
    background: #111827 center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.player-info {
    flex: 1;
    min-width: 0;
}
.player-info .p-name {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== SOCIALS ===== */
.socials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.social {
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 12px 8px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 12px;
    transition: background 0.2s;
}
.social:hover {
    background: rgba(255, 255, 255, 0.09);
}
.social .ico {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.9), rgba(34, 211, 238, 0.7));
    font-weight: 700;
    font-size: 14px;
}

/* ===== BOTTOM NAV (fixed) ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: 74px;
    background: rgba(7, 10, 16, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 8px 8px 10px;
    gap: 6px;
    backdrop-filter: blur(14px);
    z-index: 1000;
    border-radius: 0 0 28px 28px;
}
.nav {
    text-decoration: none;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 14px;
    font-size: 11px;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.nav .ico {
    font-size: 18px;
    line-height: 1;
}
.nav.active {
    color: var(--text);
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.18), rgba(34, 211, 238, 0.08));
    border-color: rgba(255, 255, 255, 0.06);
}
.nav:hover {
    color: var(--text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 430px) {
    .weekly-stars .stars-row {
        gap: 6px;
    }
    .weekly-stars .star-nick {
        font-size: 13px;
        padding: 5px 12px;
    }
    .weekly-stars .star-divider {
        font-size: 14px;
    }
    .hero h1 {
        font-size: 22px;
    }
    .emblem {
        width: 60px;
        height: 60px;
    }
    .bottom-nav {
        border-radius: 0;
    }
}