.today-pick-section {
    position: relative;
    z-index: 4;
    margin-top: -8px;
}

.today-pick-board {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
            radial-gradient(circle at 82% 22%, rgba(20, 99, 243, 0.45), transparent 32%),
            radial-gradient(circle at 28% 120%, rgba(255, 202, 88, 0.16), transparent 34%),
            linear-gradient(135deg, #071226 0%, #0d2456 48%, #06101e 100%);
    color: #ffffff;
    box-shadow: 0 30px 90px rgba(8, 27, 68, 0.28);
}

.today-pick-board::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 27px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
    z-index: 2;
}

.today-pick-board__glow {
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(255, 202, 88, 0.16);
    filter: blur(10px);
    pointer-events: none;
}

.today-pick-board__content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 176px;
    gap: 34px;
    align-items: center;
    min-height: 205px;
    padding: 34px 38px;
}

.today-pick-board__main {
    min-width: 0;
}

.today-pick-board__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.today-pick-board__label {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffe08a, #ffbd3f);
    color: #111a2d;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.2px;
    box-shadow: 0 12px 24px rgba(255, 202, 88, 0.2);
}

.today-pick-board__round {
    min-width: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.today-pick-board__match {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 31px;
    font-weight: 950;
    line-height: 1.18;
    letter-spacing: -0.07em;
    word-break: keep-all;
}

.today-pick-board__match span {
    min-width: 0;
}

.today-pick-board__match b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255, 202, 88, 0.14);
    color: var(--gold);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0;
}

.today-pick-board__match--empty span {
    color: rgba(255, 255, 255, 0.86);
}

.today-pick-board__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.today-pick-board__game-time,
.today-pick-board__countdown {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.today-pick-board__game-time {
    background: rgba(96, 165, 250, 0.16);
    color: #c1dcff;
}

.today-pick-board__countdown {
    background: rgba(255, 202, 88, 0.14);
    color: #ffe5a3;
}

.today-pick-board__countdown--link {
    border: 1px solid rgba(255, 202, 88, 0.52);
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.today-pick-board__countdown--link:hover {
    background: rgba(255, 202, 88, 0.25);
    transform: translateY(-1px);
}

.today-pick-board__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.today-pick-board__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.today-pick-board__action {
    display: flex;
    align-items: center;
}

.today-pick-board__action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ffffff;
    color: #0b1f46;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: -0.03em;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.today-pick-board__action a::after {
    content: "→";
    margin-left: 9px;
    color: var(--blue);
    font-weight: 950;
}

.today-pick-board__action a:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.today-pick-board__side {
    display: flex;
    justify-content: flex-end;
}

.today-pick-board__pick {
    position: relative;
    width: 168px;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 28px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
    border: 1px solid rgba(255, 202, 88, 0.45);
    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            0 24px 48px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.today-pick-board__pick::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.today-pick-board__pick span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.today-pick-board__pick strong {
    color: var(--gold);
    font-size: 60px;
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -0.08em;
    text-shadow: 0 12px 30px rgba(255, 202, 88, 0.22);
}

.today-pick-board__pick em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 202, 88, 0.16);
    color: #fff0bd;
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.today-pick-board--empty {
    background:
            radial-gradient(circle at 82% 22%, rgba(148, 163, 184, 0.24), transparent 32%),
            linear-gradient(135deg, #182338 0%, #0d1422 100%);
}

.today-pick-board__pick--empty strong {
    color: rgba(255, 255, 255, 0.7);
}

.today-pick-board__pick--empty em {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
}
