.gambaff-tip-single-wrap {

    max-width: 720px;

    margin: 40px auto;

    padding: 0 20px;

}



.gambaff-tip-title {

    margin-bottom: 8px;

}



.gambaff-tip-date {

    font-size: 0.85em;

    color: #666;

    margin-bottom: 20px;

}



.gambaff-tip-content {

    margin: 24px 0;

    line-height: 1.7;

}



/* ── Match Details Card ── */

.gambaff-match-details {

    padding: 20px;

    background: #fafafa;

    border: 1px solid #e8e8e8;

    border-radius: 10px;

    margin: 16px 0;

}



.gambaff-match-teams {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    flex-wrap: wrap;

}



.gambaff-match-team {

    display: flex;

    align-items: center;

    gap: 8px;

}



.gambaff-team-crest {

    width: 28px;

    height: 28px;

    object-fit: contain;

    flex-shrink: 0;

}



.gambaff-team-name {

    font-size: 1.05em;

    font-weight: 600;

    color: #222;

}



.gambaff-match-vs {

    font-size: 0.85em;

    color: #999;

    font-weight: 500;

    text-transform: uppercase;

}



.gambaff-match-info {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 12px;

    font-size: 0.82em;

    color: #666;

}



.gambaff-match-info-item {

    display: inline-flex;

    align-items: center;

    gap: 4px;

}



.gambaff-match-comp-link {

    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: inherit;

    text-decoration: none;

}



.gambaff-match-comp-link:hover {

    text-decoration: underline;

}



.gambaff-comp-emblem {

    width: 16px;

    height: 16px;

    object-fit: contain;

}



.gambaff-match-info-sep {

    color: #ccc;

    margin: 0 2px;

}



.gambaff-match-referee {

    text-align: center;

    margin-top: 10px;

    font-size: 0.82em;

    color: #666;

}



.gambaff-match-referee-label {

    font-weight: 600;

}



/* Referee not appointed yet ("to be announced") */

.gambaff-match-referee-pending .gambaff-match-referee-name {

    font-style: italic;

    color: #8a8a8a;

}



/* ── Bet Details Bar ── */

.gambaff-tip-meta-bar {

    display: flex;

    justify-content: center;

    gap: 24px;

    padding: 16px 20px;

    background: #f5f5f5;

    border: 1px solid #e0e0e0;

    border-radius: 8px;

    text-align: center;

    margin: 16px 0;

}



.gambaff-tip-meta-item {

    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 100px;

}



.gambaff-tip-meta-label {

    font-size: 0.75em;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    color: #888;

    font-weight: 600;

}



.gambaff-tip-meta-value {

    font-size: 1.1em;

    font-weight: 700;

    color: #222;

}



.gambaff-tip-won .gambaff-tip-meta-value {

    color: #2d6a4f;

}



.gambaff-tip-lost .gambaff-tip-meta-value {

    color: #c1121f;

}



@media (max-width: 480px) {

    .gambaff-match-teams {

        flex-direction: row;

        gap: 8px;

        justify-content: space-between;

    }



    .gambaff-match-team {

        gap: 3px;

    }



    .gambaff-match-info {

        flex-direction: column;

        gap: 4px;

    }



    .gambaff-match-info-sep {

        display: none;

    }



    .gambaff-tip-meta-bar {

        flex-direction: column;

        gap: 12px;

    }



    .gambaff-team-name {

        display: none;

    }



    img.gambaff-team-crest {

        width: 50px;

        height: 50px;

    }

}



/* ── Archive Grid ── */

.gambaff-archive-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    gap: 20px;

    margin: 24px 0;

}



.gambaff-archive-card {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    padding: 20px 16px;

    background: #fafafa;

    border: 1px solid #e8e8e8;

    border-radius: 10px;

    transition: box-shadow 0.2s ease, border-color 0.2s ease;

}



.gambaff-archive-card:hover {

    border-color: #ccc;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}



.gambaff-archive-crests {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

}



.gambaff-archive-crest {

    width: 40px;

    height: 40px;

    object-fit: contain;

}



.gambaff-archive-vs {

    font-size: 0.8em;

    color: #999;

    font-weight: 500;

    text-transform: uppercase;

}



.gambaff-archive-title {

    font-size: 0.95em;

    font-weight: 600;

    color: #222;

    text-align: center;

    margin: 0;

    line-height: 1.4;

}



.gambaff-archive-link {

    text-decoration: none;

    color: inherit;

}



/* Stretched link: makes the entire card clickable */

.gambaff-archive-link::after {

    content: '';

    position: absolute;

    inset: 0;

    z-index: 1;

}



.gambaff-archive-date {

    font-size: 0.6em;

    color: #888;

    position: absolute;

    top: 3px;

    right: 3px;

}



.gambaff-archive-match-date {

    font-size: 1em;

    color: #555;

    font-weight: 600;

}



.gambaff-archive-footer {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

    margin-top: auto;

}



.gambaff-archive-badge {

    font-size: 0.75em;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.04em;

    padding: 3px 10px;

    border-radius: 12px;

}



.gambaff-badge-won {

    background: #d8f3dc;

    color: #2d6a4f;

}



.gambaff-badge-lost {

    background: #fde8e8;

    color: #c1121f;

}



.gambaff-badge-pending {

    background: #fff3cd;

    color: #856404;

}



.gambaff-archive-prediction {

    font-size: 0.8em;

    line-height: 1.25;

    color: #444;

    text-align: center;

    margin-top: 10px;

}



.gambaff-archive-prediction-prefix {

    opacity: 0.9;

}



.gambaff-archive-prediction-bet {

    font-weight: 700;

}



/* ── Archive Pagination ── */

.gambaff-archive-pagination {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 4px;

    margin: 32px 0 16px;

    max-width: 100%;

}



.gambaff-archive-pagination .page-numbers {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 32px;

    height: 32px;

    padding: 0 6px;

    border: 1px solid #e0e0e0;

    border-radius: 6px;

    text-decoration: none;

    font-size: 0.85em;

    font-weight: 500;

    color: #444;

    background: #fff;

    transition: background 0.15s ease, border-color 0.15s ease;

    line-height: 1;

    box-sizing: border-box;

}



.gambaff-archive-pagination .page-numbers.dots {

    border-color: transparent;

    background: transparent;

    min-width: 24px;

    padding: 0 2px;

}



.gambaff-archive-pagination .page-numbers:hover {

    background: #f5f5f5;

    border-color: #ccc;

}



.gambaff-archive-pagination .page-numbers.current {

    background: #222;

    color: #fff;

    border-color: #222;

}



.gambaff-archive-empty {

    text-align: center;

    color: #888;

    padding: 40px 0;

    font-size: 1.05em;

}



/* ── Competition Terms Accordion ── */

.gambaff-competition-terms-box {

    margin: 18px 0 10px;

}



.gambaff-competition-accordion {

    border: 1px solid #e7e7e7;

    border-radius: 12px;

    background: #fff;

    overflow: hidden;

}



.gambaff-competition-accordion-summary {

    list-style: none;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding: 14px 16px;

    cursor: pointer;

    user-select: none;

}



.gambaff-competition-accordion-summary::-webkit-details-marker {

    display: none;

}



.gambaff-competition-box-title {

    margin: 0;

    font-size: 1.05rem;

    line-height: 1.35;

    color: #1f1f1f;

}



.gambaff-competition-accordion-icon {

    width: 10px;

    height: 10px;

    border-right: 2px solid #6f6f6f;

    border-bottom: 2px solid #6f6f6f;

    transform: rotate(45deg);

    transition: transform 0.2s ease;

    flex-shrink: 0;

}



.gambaff-competition-accordion[open] .gambaff-competition-accordion-icon {

    transform: rotate(-135deg);

}



.gambaff-competition-accordion-content {

    border-top: 1px solid #f0f0f0;

    padding: 14px 16px 16px;

}



.gambaff-competition-terms-list {

    margin: 0;

    padding: 0;

    list-style: none;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}



.gambaff-competition-terms-item {

    margin: 0;

}



.gambaff-competition-terms-link {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 7px 12px;

    border: 1px solid #e2e2e2;

    border-radius: 999px;

    background: #fafafa;

    color: #333;

    text-decoration: none;

    font-size: 0.86rem;

    line-height: 1;

    transition: all 0.15s ease;

}



.gambaff-competition-terms-link:hover {

    border-color: #bdbdbd;

    background: #f2f2f2;

}



@media (max-width: 480px) {

    .gambaff-archive-grid {

        grid-template-columns: 1fr;

    }



    .gambaff-archive-pagination {

        gap: 2px;

        margin-top: 20px;

    }



    .gambaff-archive-pagination .page-numbers {

        min-width: 28px;

        height: 28px;

        padding: 0 5px;

        font-size: 0.78em;

    }



    .gambaff-competition-accordion-summary {

        padding: 12px;

    }



    .gambaff-competition-box-title {

        font-size: 0.98rem;

    }



    .gambaff-competition-accordion-content {

        padding: 12px;

    }



    .gambaff-competition-terms-link {

        font-size: 0.8rem;

        padding: 6px 10px;

    }

}



/* ── Sticky CTA Bar ── */

.gbtips-sticky-cta {

    position: fixed;

    bottom: 0;

    left: 0;

    right: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 10px 20px;

    background: var(--wp--preset--color--custom-color-1);

    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);

}



.gbtips-sticky-cta__logo {

    flex-shrink: 0;

    display: flex;

    align-items: center;

}



.gbtips-sticky-cta__logo img {

    width: 48px;

    height: 48px;

    object-fit: contain;

    border-radius: 6px;

    display: block;

}



.gbtips-sticky-cta__label {

    flex: 1 1 auto;

    font-size: 1em;

    color: var(--wp--preset--color--custom-color-4);

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}



.gbtips-sticky-cta__label a {

    text-decoration: none;    

}



.gbtips-sticky-cta__action {

    flex-shrink: 0;

    margin-left: auto;

}



.gbtips-sticky-cta__btn {

    display: inline-block;

    padding: 10px 24px;

    background: var(--wp--preset--color--custom-color-4);

    color: #ffffff;

    font-size: 0.95em;

    font-weight: 700;

    text-decoration: none;

    border-radius: 6px;

    border: none;

    cursor: pointer;

    transition: background 0.2s ease, transform 0.1s ease;

    white-space: nowrap;

}



.gbtips-sticky-cta__btn:hover,

.gbtips-sticky-cta__btn:focus {

    background: #c1121f;

    color: #ffffff;

    text-decoration: none;

    transform: translateY(-1px);

}



.gbtips-sticky-cta__btn--disabled {

    background: #555;

    cursor: default;

    pointer-events: none;

}



@media (max-width: 480px) {

    .gbtips-sticky-cta {

        padding: 8px 12px;

        gap: 8px;

    }



    .gbtips-sticky-cta__logo img {

        width: 36px;

        height: 36px;

    }



    .gbtips-sticky-cta__label {

        font-size: 0.9em;

    }



    .gbtips-sticky-cta__btn {

        padding: 8px 16px;

        font-size: 0.88em;

    }

}



/* ── World Cup 2026 Shortcodes ── */

.gbtips-wc2026 {

    margin: 20px 0;

}



/* .gbtips-wc2026-competition-emblem {

    display: block;

    width: auto;

    max-width: 120px;

    max-height: 120px;

    margin: 0 auto 12px;

    object-fit: contain;

} */



.gbtips-wc2026-emblem-wrap {

    text-align: center;

    background: #d50100;

    padding: 25px;

    margin-bottom: 25px;

}



.gbtips-wc2026-teams-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

    gap: 12px;

}



.gbtips-wc2026-team-card {

    display: grid;

    gap: 10px;

    padding: 14px;

    border: 1px solid #6200eb;

    border-radius: 12px;

    background: #ffffff;

}



.gbtips-wc2026-team-main,

.gbtips-wc2026-team-action {

    display: flex;

    align-items: center;

    justify-content: space-between;

}



.gbtips-wc2026-team-link,

.gbtips-wc2026-odds-link {

    color: inherit;

    text-decoration: none;

}



.gbtips-wc2026-team-link:hover,

.gbtips-wc2026-odds-link:hover {

    opacity: 0.88;

}



.gbtips-wc2026-team-inner,

.gbtips-wc2026-team-cell,

.gbtips-wc2026-group-team {

    align-items: center;

    gap: 8px;

    font-weight: 600;

    color: #1f2933;

}



.gbtips-wc2026-team-odds-block {

    display: grid;

    gap: 6px;

}



.gbtips-wc2026-odds-label,

.gbtips-wc2026-schedule-label {

    font-size: 0.74rem;

    letter-spacing: 0.03em;

    text-transform: uppercase;

    color: #7a8696;

}



.gbtips-wc2026-odds-inner {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    justify-content: space-between;

    width: 100%;

}



.gbtips-wc2026-odds-value {

    font-size: 1rem;

    font-weight: 700;

    color: #111827;

    background: #b0ea00;;

    padding: 5px 15px;

}



.gbtips-wc2026-no-operator {

    font-size: 0.82rem;

    color: #6b7280;

}



.gbtips-wc2026-hidden-item {

    display: none !important;

}



.gbtips-wc2026-view-more-wrap {

    display: flex;

    justify-content: center;

    margin-top: 14px;

}




.gbtips-wc2026-view-more-btn {

    border: none;

    background: #6200eb;

    color: #fff;

    padding: 8px 14px;

    border-radius: 8px;

    font-size: 1rem;

    font-weight: 500;

    cursor: pointer;

    width: 100%;

    box-shadow: 0px -40px 50px 40px #ffffff;

}



.gbtips-wc2026-view-more-btn:hover {

    background: #4700aa;

}



.gbtips-wc2026-group-card {

    margin-bottom: 14px;

    padding: 15px 5px;

    border: none;

    border-radius: 0;

    background: #ffffff;

}



.gbtips-wc2026-group-title {

    margin: 0 0 12px;

    font-size: 1.05rem;

    font-weight: 700;

    color: #111827;

}



.gbtips-wc2026-group-table-wrap {

    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

}



.gbtips-wc2026-group-table {

    width: 100%;

    min-width: 450px;

    border-collapse: collapse;

    background: #ffffff;

    border: 1px solid #e6e8ec;

    border-radius: 0px;

    overflow: hidden;

}



.gbtips-wc2026-group-table thead th {

    background: #f8fafc;

    color: #111827;

    font-size: 0.8rem;

    font-weight: 700;

    text-align: left;

    padding: 10px 8px;

    border-bottom: 1px solid #e6e8ec;

}



.gbtips-wc2026-group-table tbody td {

    font-size: 0.75rem;

    color: #1f2937;

    padding: 9px 8px;

    /* border-top: 1px solid #eef2f7; */

    vertical-align: middle;

    border-color: #e4e4e4

}



.gbtips-wc2026-group-table tbody tr:hover {

    background: #f9fbff;

}



.gbtips-wc2026-group-table thead th:nth-child(1),

.gbtips-wc2026-group-table tbody td:nth-child(1),

.gbtips-wc2026-group-table thead th:nth-child(3),

.gbtips-wc2026-group-table tbody td:nth-child(3),

.gbtips-wc2026-group-table thead th:nth-child(4),

.gbtips-wc2026-group-table tbody td:nth-child(4),

.gbtips-wc2026-group-table thead th:nth-child(5),

.gbtips-wc2026-group-table tbody td:nth-child(5),

.gbtips-wc2026-group-table thead th:nth-child(6),

.gbtips-wc2026-group-table tbody td:nth-child(6),

.gbtips-wc2026-group-table thead th:nth-child(7),

.gbtips-wc2026-group-table tbody td:nth-child(7),

.gbtips-wc2026-group-table thead th:nth-child(8),

.gbtips-wc2026-group-table tbody td:nth-child(8),

.gbtips-wc2026-group-table thead th:nth-child(9),

.gbtips-wc2026-group-table tbody td:nth-child(9),

.gbtips-wc2026-group-table thead th:nth-child(10),

.gbtips-wc2026-group-table tbody td:nth-child(10) {

    text-align: center;

}



.gbtips-wc2026-group-table thead th:nth-child(7), .gbtips-wc2026-group-table td:nth-child(7) {

    background: #f1e6ff;

}



.gbtips-wc2026-group-table th:nth-child(2), .gbtips-wc2026-group-table td:nth-child(2) {

    width: 30%;

}



.gbtips-wc2026-group-table tbody tr:nth-child(odd) {

    background: #f8f8ff;

}



.gbtips-wc2026-date-heading {

    margin: 30px 0 10px;

    font-size: 1rem;

    font-weight: 700;

    color: #111827;

}



.gbtips-wc2026-table-container {

    width: 100%;

}



.gbtips-wc2026-schedule-list {

    display: grid;

    gap: 10px;

}



.gbtips-wc2026-schedule-card {

    display: grid;

    grid-template-columns: 75px minmax(0, 1fr) minmax(120px, 120px);

    gap: 12px;

    align-items: center;

    border: 1px solid #e6e8ec;

    border-radius: 12px;

    background: #ffffff;

    padding: 12px;

}



.gbtips-wc2026-schedule-time-wrap,

.gbtips-wc2026-stage-cell {

    display: grid;

    gap: 4px;

    text-align: center;

}



.gbtips-wc2026-time-cell {

    font-weight: 700;

    color: #0f172a;

}



.gbtips-wc2026-match-cell {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;

}



.gbtips-wc2026-match-home,

.gbtips-wc2026-match-away {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    min-width: 0;

    flex: 1;

    color: #1f2937;

    font-weight: 600;

}



.gbtips-wc2026-match-home {

    justify-content: flex-end;

    text-align: right;

}



.gbtips-wc2026-match-away {

    justify-content: flex-start;

    text-align: left;

}



.gbtips-wc2026-match-score {

    flex-shrink: 0;

    min-width: 54px;

    text-align: center;

    font-weight: 700;

    color: #111827;

}



.gbtips-wc2026-stage-value {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 4px 8px;

    border-radius: 999px;

    background: #eff6ff;

    color: #1d4ed8;

    font-size: 0.8rem;

    font-weight: 600;

}



.gbtips-wc2026-crest {

    vertical-align: middle;

    width: 20px;

    height: 20px;

    object-fit: contain;

    flex-shrink: 0;

}



.gbtips-wc2026-cta {

    display: inline-block;

    padding: 7px 12px;

    border-radius: 8px;

    background: #d50100;

    color: #fff;

    text-decoration: none;

    font-size: 1rem;

    font-weight: 500;

    width: 100%;

    text-align: center;

}



.gbtips-wc2026-cta:hover {

    background: #6200eb;

}



@media (max-width: 900px) {

    .gbtips-wc2026-schedule-card {

        grid-template-columns: 1fr;

        gap: 10px;

    }

}



@media (max-width: 640px) {

    .gbtips-wc2026 {

        margin: 16px 0;

    }



    .gbtips-wc2026-teams-grid {

        grid-template-columns: 1fr 1fr;

    }



    .gbtips-wc2026-match-cell {

        /* flex-direction: column; */

        align-items: stretch;

        gap: 6px;

    }



    .gbtips-wc2026-match-home,

    .gbtips-wc2026-match-away,

    .gbtips-wc2026-match-score {

        justify-content: center;

        text-align: center;

    }



}





world-cup-colors {

    color: #6200eb;

    color: #d50100;

    color: #b0ea00;

}

