.fs-card {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 18px 18px;
    background: linear-gradient(135deg, rgba(13, 51, 32, 0.96), rgba(21, 82, 50, 0.92));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.fs-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, var(--g5), var(--gold2), var(--g5));
}

.fsc-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.fsc-title {
    color: var(--gold2);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.fsc-date {
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
}

.fs-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.fs-item:hover,
.fs-item:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    transform: translateX(3px);
}

.fs-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    overflow: hidden;
    flex: 0 0 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
}

.fs-logo__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-logo__placeholder {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.fs-info {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

.fs-name {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fs-bonus {
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    line-height: 1.35;
}

.hero__card.fs-card {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(168, 232, 44, 0.15);
    border-radius: 18px;
    background: rgba(11, 46, 31, 0.88);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero__card.fs-card::before {
    display: none;
}

.hero__card .hero-card__head,
.hero__card .fsc-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(168, 232, 44, 0.15);
    background: linear-gradient(90deg, rgba(168, 232, 44, 0.15) 0%, rgba(168, 232, 44, 0.03) 100%);
}

.hero__card .hero-card__head span,
.hero__card .fsc-title {
    color: var(--amber-300);
    font-size: 11px;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-transform: uppercase;
}

.hero__card .hero-card__head span {
    font-size: 13px;
}

.hero__card .fsc-title {
    font-size: 13px;
}

.hero__card .hero-card__head small,
.hero__card .fsc-date {
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 1.25;
    white-space: nowrap;
}

.hero__card .hero-card__list,
.hero__card .fs-list {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0;
    padding: 8px;
}

.hero__card .hero-card__item,
.hero__card .fs-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 10px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease;
}

.hero__card .hero-card__item:last-child,
.hero__card .fs-item:last-child {
    border-bottom: 0;
}

.hero__card .hero-card__item:hover,
.hero__card .hero-card__item:focus,
.hero__card .fs-item:hover,
.hero__card .fs-item:focus {
    background: rgba(168, 232, 44, 0.08);
    color: #ffffff;
    text-decoration: none;
    transform: none;
}

.hero__card .hci-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.hero__card .hci-rank.gold {
    background: var(--g-amber);
    color: var(--navy-900);
    font-weight: 700;
}

.hero__card .hci-logo,
.hero__card .fs-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 24px;
    flex: 0 0 36px;
    overflow: hidden;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.hero__card .hci-logo img,
.hero__card .fs-logo__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero__card .fs-logo__placeholder {
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.hero__card .hci-info,
.hero__card .fs-info {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 1px;
}

.hero__card .hci-info strong,
.hero__card .fs-name {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero__card .hci-info span,
.hero__card .fs-bonus {
    display: block;
    overflow: hidden;
    color: var(--amber-300);
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero__card .hci-stars {
    margin-left: auto;
    color: var(--amber-400);
    font-size: 11px;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 959px) {
    .hero__card.fs-card {
        display: none;
    }
}

@media (max-width: 639px) {
    .fs-card {
        padding: 16px;
    }

    .fsc-hdr {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .fs-item {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .fs-info {
        min-width: calc(100% - 44px);
    }
}
