:root {
    --wagerGreen: #1cad75;
    --backColour: #191919;
    --tabColour: #262626;
    --textColour: #f1f1f1;
    --highlight: #1cad75;
    --borderColour: #333333;
    --boxShadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    --gold: rgb(180, 140, 58);
}


/* Base */
.baseholder {
    background-color: var(--backColour);
    color: var(--textColour);
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

/* Wrapper */
.main-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* Header */
.header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    margin-top: 10px;
    border-bottom: 2px solid var(--wagerGreen);
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.byline {
    font-size: 0.95rem;
    color: var(--mutedText);
}

/* Share button */
.btn-share {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    color: #fff;
    border: 1px solid var(--borderColour);
    background-color: #191919;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--boxShadow);
}

.btn-share:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

/* Body */
.content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Rows */
.row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.col-left {
    flex: 0.75;
}

.col-right {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.col-right img {
    max-width: 475px;
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--boxShadow);
}

/* Sections & paragraphs */
.section h2 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: #e8e8e8;
    border-left: 4px solid var(--wagerGreen);
    padding-left: 10px;
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 18px;
}

/* Example highlight */
.callout-block {
    margin-top: 25px;
    padding: 20px;
    border-left: 4px solid var(--wagerGreen);
    background: #222;
    border-radius: 8px;
    box-shadow: var(--boxShadow);
}

.callout-block h2 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* Lists */
.list {
    margin: 12px 0 6px 20px;
}

.list li {
    margin-bottom: 8px;
}

/* Links */
.link {
    color: var(--wagerGreen);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link:hover {
    text-decoration: underline;
}

/* Small pills/tags */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--borderColour);
    border-radius: 999px;
    background: #1f1f1f;
    margin-right: 8px;
    font-size: 0.95rem;
}

/* Callout note */
.note {
    background: #202020;
    border: 1px solid var(--borderColour);
    border-left: 4px solid var(--wagerGreen);
    border-radius: 10px;
    padding: 18px;
    box-shadow: var(--boxShadow);
    margin-top: 12px;
}

/* FAQ */
.faq-item {
    border: 1px solid var(--borderColour);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 14px;
    background: #1f1f1f;
}

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: #eee;
}

/* Media & video */
.media {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.lead {
    font-size: 1.25em !important;
    flex: 0.7;
}

.video {
    width: clamp(288px, 36vw, 350px);
    aspect-ratio: 9 / 16;
    position: relative;
    resize: both;
    overflow: hidden;
    max-width: 95vw;
    max-height: 95vh;
    min-width: 224px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Banner */
.banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.banner-img {
    max-width: 100%;
}

/* simple responsive side image */
.side-square {
    flex: 0 0 auto;
    width: 260px;
    max-width: 40vw;

    background: #1f1f1f;
    border: 1px solid var(--borderColour);
    border-radius: 12px;
    box-shadow: var(--boxShadow);

    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* keep it a square */
.side-square img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* mobile: stack vertically so it doesn't crush text */
@media (max-width: 1000px) {
    .row {
        flex-direction: column;
        gap: 20px;
    }

    .side-square {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .media {
        flex-direction: column;
    }

    .col-right {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.4rem;
    }

    .callout-block {
        font-size: 1rem;
    }
}