.gh-pubg-stat-box span i {
    color: #ffdf00;
    opacity: 0.92;
}

.gh-pubg-best-mode {
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    font-size: 0.92rem;
    gap: 0.1rem;
}

.gh-pubg-best-mode i {
    color: #ffdf00;
}

.gh-pubg-mode-list {
    display: grid;
    gap: 1rem;
}

.gh-pubg-mode-card {
    background:
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.06), transparent 35%),
        linear-gradient(145deg, rgba(21, 23, 31, 0.98), rgba(14, 16, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    padding: 1.15rem 1.2rem;
    position: relative;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.gh-pubg-mode-card:hover {
    border-color: rgba(255, 215, 0, 0.24);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

.gh-pubg-mode-card__glow {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.18), rgba(255, 215, 0, 0));
    height: 1px;
    left: 0;
    opacity: 0.65;
    position: absolute;
    right: 0;
    top: 0;
}

.gh-pubg-mode-card__main {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.gh-pubg-mode-card__identity {
    align-items: center;
    display: flex;
    gap: 1rem;
    min-width: 0;
}

.gh-pubg-mode-card__icon {
    align-items: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.22), rgba(255, 215, 0, 0.08)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 18px;
    color: #ffdf00;
    display: flex;
    flex: 0 0 52px;
    font-size: 1.15rem;
    height: 52px;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.gh-pubg-mode-card__title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.6rem;
}

.gh-pubg-mode-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.gh-pubg-chip {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 0.42rem;
    padding: 0.45rem 0.75rem;
}

.gh-pubg-chip i {
    color: #ffdf00;
    font-size: 0.82rem;
}

.gh-pubg-mode-card__stats {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    min-width: 360px;
}

.gh-pubg-mode-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 0.8rem 0.9rem;
    text-align: left;
}

.gh-pubg-mode-metric__label {
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    gap: 0.45rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

.gh-pubg-mode-metric__label i {
    color: #ffdf00;
    font-size: 0.85rem;
}

.gh-pubg-mode-metric__value {
    color: #ffffff;
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.gh-pubg-hero {
    margin-bottom: 1rem;
}

.gh-pubg-avatar-shell {
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 18px;
    display: flex;
    flex: 0 0 72px;
    height: 72px;
    justify-content: center;
    overflow: hidden;
    width: 72px;
}

.gh-pubg-avatar {
    display: block;
    height: 78%;
    object-fit: contain;
    width: 78%;
}



@media (max-width: 1199px) {
    .gh-pubg-mode-card__main {
        align-items: flex-start;
        flex-direction: column;
    }

    .gh-pubg-mode-card__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .gh-pubg-mode-card {
        padding: 1rem;
    }

    .gh-pubg-mode-card__identity {
        align-items: flex-start;
    }

    .gh-pubg-mode-card__title {
        font-size: 1.15rem;
    }

    .gh-pubg-mode-card__stats {
        gap: 0.55rem;
        grid-template-columns: 1fr;
    }

    .gh-pubg-mode-metric {
        padding: 0.75rem 0.8rem;
    }

    .gh-pubg-best-mode {
        font-size: 0.85rem;
    }
}