/* Squad Join Page Styles - polished public squad directory cards */

:root {
    --dw-page-bg: #0a0d0c;
    --dw-card-bg: rgba(14, 18, 16, .94);
    --dw-card-bg-strong: rgba(24, 30, 26, .98);
    --dw-gold: #e2c96c;
    --dw-gold-soft: rgba(226, 201, 108, .16);
    --dw-border: rgba(226, 201, 108, .24);
    --dw-border-soft: rgba(255, 255, 255, .09);
    --dw-text: #f4f1de;
    --dw-muted: #d0c7a2;
    --dw-muted-green: #d8dfd2;
    --dw-panel-shadow: 0 22px 60px rgba(0, 0, 0, .36);
}

body {
    margin: 0;
    background-color: var(--dw-page-bg);
    background-image:
        radial-gradient(circle at top left, rgba(226, 201, 108, .12), transparent 32rem),
        linear-gradient(180deg, rgba(10, 13, 12, .65), rgba(10, 13, 12, .92)),
        url('/images/page-bg.avif');
    background-size: auto, auto, cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--dw-text);
    font-family: inherit;
}

.squad-join-shell {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 18px 42px;
    box-sizing: border-box;
}

.squad-join-header-spacer {
    height: 12px;
}

.squad-join-hero {
    background: linear-gradient(180deg, rgba(24, 30, 26, .96), rgba(15, 19, 17, .96));
    border: 1px solid rgba(226, 201, 108, .34);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--dw-panel-shadow);
    margin-bottom: 22px;
}

.squad-join-hero h1 {
    margin: 0 0 8px;
    color: var(--dw-gold);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.squad-join-hero p {
    margin: 0;
    color: var(--dw-muted);
    max-width: 820px;
    line-height: 1.6;
}

.squad-join-count {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--dw-gold-soft);
    border: 1px solid rgba(226, 201, 108, .24);
    color: #fff;
    font-weight: 700;
}

.squad-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.squad-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 24px;
    border: 1px solid var(--dw-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 32%),
        linear-gradient(180deg, var(--dw-card-bg-strong), var(--dw-card-bg));
    box-shadow: var(--dw-panel-shadow);
    isolation: isolate;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.squad-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 0%, rgba(226, 201, 108, .18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 34%);
    opacity: .78;
    z-index: -1;
}

.squad-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), inset 0 -1px 0 rgba(0, 0, 0, .35);
}

.squad-card:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 201, 108, .48);
    box-shadow: 0 28px 78px rgba(0, 0, 0, .44);
}

.squad-banner {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(226, 201, 108, .16), rgba(49, 66, 58, .38));
}

.squad-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .68));
    pointer-events: none;
}

.squad-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .22s ease, filter .22s ease;
}

.squad-card:hover .squad-banner img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}

.squad-card-body {
    padding: 0 20px 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.squad-top {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    margin-top: -34px;
    position: relative;
    z-index: 1;
}

.squad-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 2px solid rgba(226, 201, 108, .62);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .42);
    object-fit: contain;
    flex: 0 0 auto;
    background-color: #1b201d;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.squad-name-wrap {
    min-width: 0;
    padding-bottom: 4px;
}

.squad-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.squad-title-row h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.05rem, 1.3vw, 1.28rem);
    line-height: 1.18;
    letter-spacing: .01em;
    overflow-wrap: anywhere;
}

.squad-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(226, 201, 108, .26), rgba(226, 201, 108, .14));
    border: 1px solid rgba(226, 201, 108, .26);
    color: #f9eaa3;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .055em;
    text-transform: uppercase;
    box-sizing: border-box;
}

.squad-headline {
    margin: 6px 0 0;
    color: var(--dw-muted-green);
    font-size: .9rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.squad-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 12px;
}

.squad-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--dw-border-soft);
    color: var(--dw-text);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
    box-sizing: border-box;
}

.squad-chip img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 3px;
    flex: 0 0 auto;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .14);
}

.squad-description {
    color: #e3e8dd;
    line-height: 1.5;
    font-size: .92rem;
    margin: 2px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.squad-info-table-wrap {
    margin-top: 14px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(0, 0, 0, .18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055);
}

.squad-info-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.squad-info-table tr + tr {
    border-top: 1px solid rgba(255, 255, 255, .075);
}

.squad-info-table th,
.squad-info-table td {
    padding: 11px 12px;
    vertical-align: top;
    text-align: left;
    line-height: 1.35;
}

.squad-info-table th {
    width: 38%;
    color: var(--dw-gold);
    background: rgba(226, 201, 108, .065);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.squad-info-table td {
    color: #f4f1de;
    font-size: .84rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.squad-info-pair {
    display: grid;
    gap: 4px;
}

.squad-info-pair span + span {
    color: var(--dw-muted-green);
    font-weight: 800;
}

.squad-info-link {
    color: #fff4b8;
    font-weight: 900;
    text-decoration: none;
    border-bottom: 1px solid rgba(226, 201, 108, .38);
    transition: color .16s ease, border-color .16s ease;
}

.squad-info-link:hover,
.squad-info-link:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.squad-games-list {
    margin-top: 16px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .075);
}

.squad-games-list strong {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px !important;
    color: var(--dw-gold) !important;
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.squad-games-list strong::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--dw-gold);
    box-shadow: 0 0 16px rgba(226, 201, 108, .65);
    flex: 0 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.game-entry {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 9px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 8px;
}

.game-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
    background: #222;
    flex: 0 0 auto;
}

.game-title {
    color: #f4f1de;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;
}

.squad-games {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
}

.squad-games img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 auto;
}

.squad-games strong {
    display: block;
    color: var(--dw-gold);
    margin-bottom: 2px;
}

.squad-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    justify-content: center;
    text-align: center;
    padding-top: 18px;
}

.squad-button {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .12);
    min-height: 40px;
    padding: 10px 15px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .035em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .16s ease, filter .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.squad-button:hover,
.squad-button:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.06);
    text-decoration: none;
}

.squad-button-primary {
    background: linear-gradient(180deg, #f0d873, #b99732);
    color: #171914;
    border-color: rgba(255, 234, 147, .52);
    box-shadow: 0 14px 26px rgba(212, 184, 81, .2);
}

.squad-button-secondary {
    background: rgba(255, 255, 255, .065);
    color: #f7f3dc;
    border-color: rgba(255, 255, 255, .13);
    box-shadow: 0 12px 22px rgba(0, 0, 0, .18);
}

.empty-state {
    padding: 38px 28px;
    border-radius: 22px;
    border: 1px dashed rgba(226, 201, 108, .34);
    background: rgba(24, 30, 26, .86);
    color: #d6ddcf;
    text-align: center;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

@media (max-width: 1180px) {
    .squad-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 760px) {
    .squad-join-shell {
        padding-inline: 14px;
    }

    .squad-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .squad-card {
        min-height: 0;
        border-radius: 20px;
    }

    .squad-banner {
        height: 132px;
    }
}

@media (max-width: 560px) {
    .squad-top {
        margin-top: -28px;
        align-items: flex-end;
        gap: 11px;
    }

    .squad-logo {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .squad-card-body {
        padding: 0 14px 16px;
    }

    .squad-info-table th,
    .squad-info-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .squad-info-table th {
        padding-bottom: 5px;
    }

    .squad-info-table td {
        padding-top: 6px;
    }

    .squad-meta {
        gap: 7px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .squad-actions {
        justify-content: stretch;
    }

    .squad-button {
        flex: 1 1 100%;
    }
}

/* Modern/fancy squad card refresh */
.squad-grid {
    gap: 28px;
}

.squad-card {
    min-height: 500px;
    border-radius: 30px;
    border: 1px solid rgba(226, 201, 108, .34);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .018) 34%, rgba(226, 201, 108, .035)),
        radial-gradient(circle at 18% 0%, rgba(226, 201, 108, .22), transparent 34%),
        radial-gradient(circle at 100% 12%, rgba(95, 128, 101, .22), transparent 32%),
        rgba(13, 17, 15, .94);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, .48),
        0 0 0 1px rgba(255, 255, 255, .035) inset;
    backdrop-filter: blur(12px);
    transform: translateZ(0);
}

.squad-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0%, transparent 34%, rgba(255, 255, 255, .11) 47%, transparent 60%, transparent 100%),
        radial-gradient(circle at 50% -8%, rgba(226, 201, 108, .20), transparent 36%);
    opacity: .42;
    z-index: 0;
    transition: opacity .22s ease, transform .22s ease;
}

.squad-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    pointer-events: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .20),
        inset 0 -1px 0 rgba(0, 0, 0, .42),
        inset 0 0 32px rgba(226, 201, 108, .045);
    z-index: 2;
}

.squad-card > * {
    position: relative;
    z-index: 1;
}

.squad-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 232, 135, .68);
    box-shadow:
        0 38px 92px rgba(0, 0, 0, .58),
        0 0 34px rgba(226, 201, 108, .13),
        0 0 0 1px rgba(255, 255, 255, .055) inset;
}

.squad-card:hover::before {
    opacity: .76;
    transform: translateX(8px);
}

.squad-banner {
    height: 172px;
    border-bottom: 1px solid rgba(226, 201, 108, .20);
    background:
        radial-gradient(circle at 22% 20%, rgba(226, 201, 108, .28), transparent 34%),
        linear-gradient(135deg, rgba(32, 43, 36, .95), rgba(8, 11, 10, .96));
}

.squad-banner::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .42) 50%, rgba(0, 0, 0, .82)),
        linear-gradient(90deg, rgba(226, 201, 108, .16), transparent 40%, rgba(10, 13, 12, .28));
}

.squad-banner-badges {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    z-index: 3;
}

.squad-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fff8cf;
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .075em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(0, 0, 0, .42);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
    backdrop-filter: blur(12px);
}

.squad-banner-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 15px currentColor;
}

.squad-banner-badge-featured {
    color: #ffe888;
    background: linear-gradient(180deg, rgba(226, 201, 108, .30), rgba(0, 0, 0, .44));
    border-color: rgba(255, 232, 135, .48);
}

.squad-banner-badge-recruiting {
    color: #b6ffd1;
    background: linear-gradient(180deg, rgba(73, 170, 101, .25), rgba(0, 0, 0, .44));
    border-color: rgba(144, 255, 178, .36);
}

.squad-card-body {
    padding: 0 22px 22px;
}

.squad-top {
    margin-top: -42px;
    align-items: center;
    gap: 16px;
}

.squad-logo {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    padding: 7px;
    border: 1px solid rgba(255, 232, 135, .66);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03)),
        rgba(13, 17, 15, .94);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, .55),
        0 0 0 6px rgba(13, 17, 15, .54),
        0 0 24px rgba(226, 201, 108, .15);
}

.squad-name-wrap {
    padding: 8px 0 0;
}

.squad-title-row h2 {
    color: #ffffff;
    font-size: clamp(1.14rem, 1.45vw, 1.42rem);
    font-weight: 950;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.squad-tag {
    min-height: 26px;
    padding: 5px 11px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(226, 201, 108, .28), rgba(226, 201, 108, .12)),
        rgba(0, 0, 0, .18);
    border-color: rgba(255, 232, 135, .36);
    color: #ffe888;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.squad-headline {
    margin-top: 8px;
    color: #e7ecdf;
    font-size: .93rem;
}

.squad-meta {
    margin: 18px 0 14px;
}

.squad-chip {
    min-height: 32px;
    padding: 7px 11px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035));
    border-color: rgba(255, 255, 255, .12);
    color: #f8f5e5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}

.squad-info-table-wrap {
    margin-top: 16px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(226, 201, 108, .22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
        rgba(0, 0, 0, .24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .11),
        0 16px 34px rgba(0, 0, 0, .20);
}

.squad-info-table {
    border-collapse: separate;
    border-spacing: 0;
}

.squad-info-table tr + tr {
    border-top: 0;
}

.squad-info-table tr {
    transition: background .16s ease;
}

.squad-info-table tr:hover {
    background: rgba(226, 201, 108, .055);
}

.squad-info-table tr:not(:last-child) th,
.squad-info-table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255, 255, 255, .075);
}

.squad-info-table th,
.squad-info-table td {
    padding: 13px 14px;
}

.squad-info-table th {
    width: 40%;
    color: #ffe888;
    background: linear-gradient(90deg, rgba(226, 201, 108, .12), rgba(226, 201, 108, .035));
    font-size: .71rem;
    letter-spacing: .075em;
    white-space: normal;
}

.squad-info-table th::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 999px;
    background: #e2c96c;
    box-shadow: 0 0 14px rgba(226, 201, 108, .62);
    vertical-align: 1px;
}

.squad-info-table td {
    color: #fffdf1;
    font-size: .87rem;
    font-weight: 850;
}

.squad-info-pair {
    gap: 6px;
}

.squad-info-pair span:first-child {
    color: #fffdf1;
}

.squad-info-pair span + span {
    color: #dfe8d9;
    font-weight: 900;
}

.squad-info-link {
    color: #fff1a7;
    border-bottom-color: rgba(255, 232, 135, .46);
    text-decoration-thickness: 2px;
}

.squad-info-link:hover,
.squad-info-link:focus-visible {
    color: #ffffff;
    border-color: #ffffff;
    text-shadow: 0 0 16px rgba(226, 201, 108, .42);
}

.squad-games-list {
    margin-top: 18px;
    padding: 15px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .026));
    border: 1px solid rgba(255, 255, 255, .095);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.squad-games-list strong {
    color: #ffe888 !important;
}

.games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.game-entry {
    min-height: 48px;
    padding: 9px;
    border-radius: 15px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)),
        rgba(0, 0, 0, .20);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .075);
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.game-entry:hover {
    transform: translateY(-1px);
    border-color: rgba(226, 201, 108, .30);
    background: rgba(226, 201, 108, .07);
}

.game-logo {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .28);
}

.game-title {
    color: #fffef2;
    font-weight: 850;
}

.squad-actions {
    gap: 11px;
    padding-top: 20px;
}

.squad-button {
    min-height: 44px;
    border-radius: 999px;
    padding: 11px 17px;
    letter-spacing: .055em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13);
}

.squad-button:hover,
.squad-button:focus-visible {
    transform: translateY(-2px);
}

.squad-button-primary {
    background:
        linear-gradient(180deg, #ffeb8a, #d3aa35 55%, #a77b20),
        #d3aa35;
    color: #12140f;
    border-color: rgba(255, 240, 161, .72);
    box-shadow:
        0 16px 28px rgba(226, 201, 108, .22),
        inset 0 1px 0 rgba(255, 255, 255, .42);
}

.squad-button-secondary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .042));
    border-color: rgba(255, 255, 255, .15);
    color: #f9f4dc;
}

@media (max-width: 760px) {
    .squad-grid {
        gap: 20px;
    }

    .squad-card {
        border-radius: 24px;
        min-height: 0;
    }

    .squad-card::after {
        border-radius: 23px;
    }

    .squad-banner {
        height: 148px;
    }

    .squad-banner-badges {
        top: 10px;
        right: 10px;
    }

    .squad-banner-badge {
        min-height: 28px;
        padding: 6px 10px;
    }
}

@media (max-width: 560px) {
    .squad-card-body {
        padding: 0 15px 18px;
    }

    .squad-top {
        margin-top: -34px;
    }

    .squad-logo {
        width: 68px;
        height: 68px;
        border-radius: 20px;
    }

    .squad-info-table th,
    .squad-info-table td {
        padding: 11px 12px;
    }

    .squad-info-table th {
        border-bottom: 0 !important;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}
