:root{

    --navy:#16263f;
    --navy-light:#233a58;

    --gold:#e3c46b;

    --gold-dark:#d2aa41;

    --red:#c92a2a;

    --white:#ffffff;

    --gray:#68768a;

    --light:#f6f8fb;

    --border:#e7ebf2;

}
/* ==========================================
   Shared Header
========================================== */

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#10233b;
    border-bottom:4px solid #d8b14b;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.site-header .container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
    height:72px;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo{
    color:#fff;
    font-size:28px;
    font-weight:800;
    text-decoration:none;
    letter-spacing:.5px;

}

.main-nav{
    display:flex;
    gap:30px;

}

.main-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:.25s;

}

.main-nav a:hover{
    color:#d8b14b;

}

@media(max-width:900px){

.main-nav{

    display:none;

}

}

/* =========================================================
   Mobile bottom navigation
========================================================= */

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1024px) {

    body {
        padding-bottom: 78px;
    }

    .mobile-bottom-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 5000;

        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));

        min-height: 70px;

        background: #10233b;
        border-top: 3px solid #d8b14b;
        box-shadow: 0 -5px 18px rgba(0, 0, 0, 0.2);
    }

    .mobile-bottom-nav a,
    .mobile-bottom-nav button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 4px;

        margin: 0;
        padding: 8px 5px;

        border: 0;
        background: transparent;
        color: #ffffff;

        font: inherit;
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .mobile-bottom-nav a:hover,
    .mobile-bottom-nav button:hover,
    .mobile-bottom-nav a:focus-visible,
    .mobile-bottom-nav button:focus-visible {
        background: rgba(255, 255, 255, 0.08);
        color: #d8b14b;
    }

    .mobile-bottom-nav i {
        display: block;
        font-size: 20px;
    }

}


        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background: #f4f6f8;
            color: #1d2733;
            font-family: Arial, Helvetica, sans-serif;
        }
		

        .results-page {
			width: min(1500px, calc(100% - 30px));
			margin: 35px auto 60px;
         
        }

        .results-heading {
            margin-bottom: 22px;
        }

        .results-heading h1 {
            margin: 0 0 8px;
            font-size: clamp(28px, 5vw, 46px);
        }

        .results-heading p {
            margin: 0;
            color: #687585;
        }

        .results-filter {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
            gap: 12px;
            align-items: end;
            margin-bottom: 24px;
            padding: 18px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
        }

        .results-filter label {
            display: block;
            margin-bottom: 7px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .results-filter select,
        .results-filter button {
            width: 100%;
            min-height: 44px;
            border-radius: 8px;
            font-size: 16px;
        }

        .results-filter select {
            padding: 8px 10px;
            border: 1px solid #ccd3da;
            background: #ffffff;
        }

        .results-filter button {
            padding: 10px 20px;
            border: 0;
            background: #c62828;
            color: #ffffff;
            font-weight: 700;
            cursor: pointer;
        }

        .summary-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 24px;
        }

        .summary-card {
            min-width: 0;
            padding: 18px 14px;
            background: #ffffff;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
        }

        .summary-card span {
            display: block;
            margin-bottom: 7px;
            color: #708090;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .summary-card strong {
            display: block;
            font-size: 25px;
        }

        .summary-card small {
            display: block;
            margin-top: 6px;
            color: #7c8794;
            line-height: 1.35;
        }

        .table-wrap {
			width: 100%;
            overflow-x: auto;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
			-webkit-overflow-scrolling: touch;
        }

        .results-table {
            width: 100%;
            min-width: 1000px;
            border-collapse: collapse;
        }

        .results-table th,
        .results-table td {
            padding: 12px 10px;
            border-bottom: 1px solid #e8edf1;
            text-align: left;
            white-space: nowrap;
        }

        .results-table th {
            background: #202a35;
            color: #ffffff;
            font-size: 12px;
            text-transform: uppercase;
        }

        .result-win {
            color: #157a35;
            font-weight: 700;
        }

        .result-loss {
            color: #bd2026;
            font-weight: 700;
        }

        .result-push {
            color: #9a6a00;
            font-weight: 700;
        }

        .positive-profit {
            color: #157a35;
            font-weight: 700;
        }

        .negative-profit {
            color: #bd2026;
            font-weight: 700;
        }

        .empty-results {
            padding: 30px;
            text-align: center;
            color: #687585;
        }

        @media (max-width: 900px) {

            .summary-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

        }

        @media (max-width: 650px) {

            .results-page {
                width: min(100% - 20px, 1180px);
                margin-top: 22px;
            }

            .results-filter {
                grid-template-columns: 1fr;
            }

            .summary-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .summary-card strong {
                font-size: 21px;
            }

        }
		
		/* Phone only: hide the full historical plays table */
@media (max-width: 767px) {

    .results-table-wrapper,
    .results-scroll-hint {
        display: none;
    }

}

.results-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {

    .results-table-wrapper {
        display: none;
    }

}

.results-active-filters {
    margin: 0 0 14px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    color: #1f2b38;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.results-active-filters span {
    margin: 0 7px;
    color: #8a96a3;
}

.conference-page {
    width: min(1400px, calc(100% - 30px));
    margin: 35px auto 60px;
}

.conference-heading {
    margin-bottom: 24px;
}

.conference-heading h1 {
    margin: 0 0 8px;
    font-size: clamp(30px, 5vw, 46px);
}

.conference-heading p {
    margin: 0;
    color: #687585;
    line-height: 1.6;
}

.conference-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 24px;
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
}

.conference-filter label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
}

.conference-filter select,
.conference-filter button {
    width: 100%;
    min-height: 44px;
    border-radius: 8px;
    font-size: 16px;
}

.conference-filter select {
    padding: 8px 10px;
    border: 1px solid #ccd3da;
    background: #fff;
}

.conference-filter button {
    padding: 10px 20px;
    border: 0;
    background: #c62828;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.conference-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.conference-stat {
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
}

.conference-stat span {
    display: block;
    margin-bottom: 8px;
    color: #687585;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.conference-stat strong {
    font-size: 28px;
    white-space: nowrap;
}

.conference-table-wrapper {
    overflow-x: auto;
}

.conference-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.conference-table th,
.conference-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e8eb;
    text-align: left;
}

.conference-table th {
    background: #f4f6f8;
}

.positive-profit {
    color: #16823c;
    font-weight: 800;
}

.negative-profit {
    color: #c62828;
    font-weight: 800;
}

@media (max-width: 767px) {

    .conference-filter,
    .conference-summary {
        grid-template-columns: 1fr;
    }

}	

.research-page {
    width: min(1400px, calc(100% - 30px));
    margin: 35px auto 60px;
}

.research-heading {
    margin-bottom: 28px;
}

.research-heading h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 5vw, 48px);
}

.research-heading p {
    max-width: 900px;
    margin: 0;
    color: #687585;
    line-height: 1.7;
    font-size: 17px;
}

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

.research-card {
    display: block;
    padding: 26px;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e4e8ec;
    border-radius: 14px;
    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.research-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 30px rgba(0, 0, 0, 0.11);
}

.research-card h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.research-card p {
    margin: 0 0 18px;
    color: #687585;
    line-height: 1.65;
}

.research-card span {
    color: #c62828;
    font-weight: 800;
}

@media (max-width: 767px) {
    .research-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Mobile slide-up menu
========================================================= */

.mobile-menu-overlay,
.mobile-menu-panel {
    display: none;
}

@media (max-width: 1024px) {

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 6000;

        display: block;

        background: rgba(0, 0, 0, 0.58);
        opacity: 0;

        transition: opacity 0.22s ease;
    }

    .mobile-menu-overlay.is-visible {
        opacity: 1;
    }

    .mobile-menu-panel {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 6001;

        display: block;

        max-height: min(82vh, 720px);
        padding-bottom: max(20px, env(safe-area-inset-bottom));

        overflow-y: auto;

        background: #ffffff;
        border-radius: 22px 22px 0 0;
        box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.3);

        transform: translateY(105%);
        transition: transform 0.24s ease;
    }

    .mobile-menu-panel.is-open {
        transform: translateY(0);
    }

    .mobile-menu-header {
        position: sticky;
        top: 0;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 18px 20px;

        background: #10233b;
        color: #ffffff;
        border-bottom: 3px solid #d8b14b;
    }

    .mobile-menu-header strong {
        font-size: 21px;
    }

    .mobile-menu-close {
        width: 42px;
        height: 42px;

        border: 0;
        border-radius: 50%;

        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;

        font-size: 21px;
        cursor: pointer;
    }

    .mobile-menu-links {
        display: grid;
        grid-template-columns: 1fr;

        padding: 12px 18px 24px;
    }

    .mobile-menu-links a {
        display: flex;
        align-items: center;

        gap: 14px;

        padding: 15px 10px;

        color: #10233b;
        border-bottom: 1px solid #e5e8eb;

        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-menu-links a:last-child {
        border-bottom: 0;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a:focus-visible {
        color: #c62828;
        background: #f7f8fa;
    }

    .mobile-menu-links i {
        width: 24px;
        color: #c62828;
        text-align: center;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

}

.mobile-menu-overlay[hidden] {
    display: none !important;
}

.segment-page {
    width: min(1400px, calc(100% - 30px));
    margin: 35px auto 60px;
}

.segment-heading {
    margin-bottom: 24px;
}

.segment-heading h1 {
    margin: 0 0 8px;
    font-size: clamp(30px, 5vw, 46px);
}

.segment-heading p {
    margin: 0;
    color: #687585;
    line-height: 1.6;
}

.segment-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
}

.segment-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.segment-table th,
.segment-table td {
    padding: 15px 16px;
    border-bottom: 1px solid #e5e8eb;
    text-align: left;
    white-space: nowrap;
}

.segment-table th {
    background: #f4f6f8;
}

.view-plays-link {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 7px;
    background: #c62828;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.view-plays-link:hover {
    background: #9f1f1f;
}

@media (max-width: 767px) {
    .segment-page {
        width: min(100% - 20px, 1400px);
    }
}

/* =========================================================
   Homepage shared layout
========================================================= */

.home-shell {
    width: min(1400px, calc(100% - 30px));
    margin: 0 auto;
}

.home-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
	color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-hero .home-eyebrow,
.app-teaser-section .home-eyebrow {
    color: var(--gold);
}

.home-section-heading {
    max-width: 850px;
    margin-bottom: 30px;
}

.home-section-heading h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.12;
}

.home-section-heading p {
    margin: 0;
    color: #687585;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   Homepage hero
========================================================= */

.home-hero {
    padding: 72px 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(16, 35, 59, 0.98),
            rgba(24, 53, 86, 0.94)
        );
    border-bottom: 5px solid #d8b14b;
}

.home-hero .home-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 45px;
    align-items: center;
}

.home-hero-content h1 {
    max-width: 850px;
    margin: 0 0 20px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
}

.home-hero-content p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.75;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 9px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.home-button:hover {
    transform: translateY(-2px);
}

.home-button-primary {
    background: var(--red);
    color: var(--white);
}

.home-button-primary:hover {
    background: #a52020;
}

.home-button-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-hero-stats article {
    padding: 22px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    backdrop-filter: blur(5px);
}

.home-hero-stats strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 31px;
}

.home-hero-stats span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}


/* =========================================================
   Historical performance
========================================================= */

.home-performance {
    padding: 70px 0;
    background: #f4f6f8;
}

.home-overall-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.home-overall-grid article {
    padding: 20px 14px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
}

.home-overall-grid span {
    display: block;
    margin-bottom: 8px;
    color: #687585;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-overall-grid strong {
    color: #10233b;
    font-size: 25px;
    white-space: nowrap;
}

.home-sport-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-sport-card {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e7eb;
    border-radius: 14px;
    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.06);
}

.home-sport-card h3 {
    margin: 0 0 14px;
    color: #10233b;
    font-size: 25px;
}

.home-sport-record {
    display: block;
    margin-bottom: 8px;
    color: #10233b;
    font-size: 27px;
}

.home-sport-card > span {
    display: block;
    margin: 6px 0;
}

.home-sport-card a {
    display: inline-block;
    margin-top: 15px;
    color: #c62828;
    font-weight: 800;
    text-decoration: none;
}


/* =========================================================
   Research path cards
========================================================= */

.home-research-paths {
    padding: 70px 0;
    background: #ffffff;
}

.home-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-path-card {
    display: block;
    padding: 26px;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e0e5e9;
    border-radius: 14px;
    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.home-path-card:hover {
	transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
    border-color:var(--gold-dark);
   
}

.home-path-card:hover .home-path-link{

    color:var(--navy);

}

.home-path-card i {
    margin-bottom: 16px;
    color: var(--navy);
    font-size: 31px;
}

.home-path-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 23px;
}

.home-path-card p {
    margin: 0 0 18px;
    color: var(--gray);
    line-height: 1.65;
}

.home-path-card span {
    color: var(--red);
    font-weight: 800;
}


/* =========================================================
   Homepage responsive
========================================================= */

@media (max-width: 1100px) {

    .home-hero .home-shell {
        grid-template-columns: 1fr;
    }

    .home-overall-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-sport-grid,
    .home-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {

    .home-hero {
        padding: 50px 0;
    }

    .home-hero-stats,
    .home-overall-grid,
    .home-sport-grid,
    .home-path-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-actions {
        flex-direction: column;
    }

    .home-button {
        width: 100%;
    }

    .home-section-heading p,
    .home-hero-content p {
        font-size: 16px;
    }
}

/* =========================================================
   Shared footer
========================================================= */

.site-footer {
    color: #ffffff;
    background: #223246;
}

.site-footer-main {
    padding: 58px 0 48px;
}

.site-footer-inner {
    width: min(1400px, calc(100% - 30px));
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(170px, 0.65fr)
        minmax(170px, 0.65fr)
        minmax(250px, 0.9fr);

    gap: 42px;
}

.site-footer h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 17px;
}

.site-footer-logo {
    display: inline-block;
    margin-bottom: 16px;

    color: #ffffff;
    font-size: 27px;
    font-weight: 800;
    text-decoration: none;
}

.site-footer-brand p {
    max-width: 560px;
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
}

.site-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #d8b14b;
    font-weight: 800;
    text-decoration: none;
}

.site-footer-column nav {
    display: grid;
    gap: 12px;
}

.site-footer-column a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.site-footer-column a:hover,
.site-footer-column a:focus-visible {
    color: #d8b14b;
}

.site-footer-trust {
    display: grid;
    align-content: start;
    gap: 16px;
}

.site-footer-trust-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.site-footer-trust-item i {
    margin-top: 3px;
    color: #d8b14b;
    font-size: 21px;
}

.site-footer-trust-item strong,
.site-footer-trust-item span {
    display: block;
}

.site-footer-trust-item strong {
    margin-bottom: 4px;
}

.site-footer-trust-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.5;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #1b2939;
}

.site-footer-bottom-inner {
    width: min(1400px, calc(100% - 30px));
    min-height: 78px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        auto;

    gap: 24px;
    align-items: center;
}

.site-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer-bottom-links {
    display: flex;
    gap: 16px;
}

.site-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.site-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer-social span {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer-social a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;

    color: #ffffff;
    background: #111111;
    border-radius: 8px;
    text-decoration: none;
}

.site-footer-social a:hover {
    background: #d8b14b;
    color: #10233b;
}

@media (max-width: 1050px) {

    .site-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer-bottom-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px 0;
    }
}

@media (max-width: 700px) {

    .site-footer-main {
        padding: 42px 0 36px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer-bottom-links {
        flex-wrap: wrap;
    }

    .site-footer-bottom {
        padding-bottom: 76px;
    }
}

/* =========================================================
   Wacky Wins mobile app teaser
========================================================= */

.app-teaser-section {
    padding: 72px 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #07192e,
            #102d4d
        );
    border-top: 4px solid #d8b14b;
}

.app-teaser-heading {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.app-teaser-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 54px);
}

.app-teaser-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.7;
}

.app-teaser-image-wrap {
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(216, 177, 75, 0.35);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.app-teaser-image {
    display: block;
    width: 100%;
    height: auto;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    min-width: 210px;
    padding: 12px 18px;

    color: #ffffff;
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;

    font-family: inherit;
    text-align: left;
    cursor: not-allowed;
    opacity: 0.82;
}

.app-store-button i {
    font-size: 34px;
}

.app-store-button span {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.05;
}

.app-store-button small {
    display: block;
    margin-bottom: 3px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.app-coming-soon-note {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.66);
    text-align: center;
}

@media (max-width: 700px) {

    .app-teaser-section {
        padding: 48px 0;
    }

    .app-store-buttons {
        flex-direction: column;
    }

    .app-store-button {
        width: 100%;
        justify-content: center;
    }
}