: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);
}

.baseholder {
    color: white;
    background-color: var(--backColour) !important;
}

.main-container {
    font-family: 'poppins', sans-serif;
}

.header-container {
    gap: 5px;
    margin-bottom: 50px;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-title {
    border-bottom: 1px solid var(--wagerGreen);
    font-size: 1.5em;
}

.header-subtitle {
    font-weight: bold;
    text-align: center;
    max-width: 900px;
    font-size: 5.5em;
    font-family: 'Barlow Semi Condensed', sans-serif;
    letter-spacing: -0.03em;
    word-spacing: -0.05em;
}

.page-title {
    font-size: 3em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--highlight);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(28, 173, 117, 0.4);
}

.copy-text h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 16px;
    color: white;
    border-left: 4px solid var(--highlight);
    padding-left: 12px;
}

.copy-text h3 {
    font-size: 1.3em;
    color: white;
    margin-bottom: 10px;
}

.copy-text p,
.copy-text li {
    font-size: 1.25em;
    color: #ddd;
    line-height: 1.8;
}

.copy-text ul,
.copy-text ol {
    padding-left: 20px;
    margin-bottom: 24px;
}

.copy-text li::marker {
    color: var(--highlight);
}

.copy-image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
}

.copy-image-text {
    font-size: 1.25em;
    flex: 1 1 50%;
    min-width: 300px;
}

.copy-image-text-small {
    font-size: 1.25em;
    flex: 1 1 30%;
    min-width: 300px;
}

.copy-image-inner-container {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.copy-image {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}


blockquote {
    background-color: #202020;
    border-left: 5px solid var(--highlight);
    padding: 16px;
    margin: 24px 0;
    font-style: italic;
    color: #ccc;
    box-shadow: var(--boxShadow);
    border-radius: 6px;
}

.table-offers table,
.copy-text table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #1e1e1e;
    box-shadow: var(--boxShadow);
    border-radius: 10px;
    overflow: hidden;
}

.copy-text table th,
.copy-text table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--borderColour);
}

.copy-text table th {
    background-color: #2a2a2a;
    color: var(--highlight);
    font-size: 1em;
}

.copy-text table tr:last-child td {
    border-bottom: none;
}

.matched-betting-link {
    color: #1cad75;
    text-decoration: none;
}

.banner-ad-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    /* optional vertical spacing */
}

.banner-ad {
    max-width: 100%;
    height: auto;
    display: block;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    /* Optional max width */
    margin: 0 auto 40px auto;
    padding-top: 40.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* full width of the container */
    height: 100%;
    /* full height based on aspect ratio */
    object-fit: cover;
    /* Use "contain" if you want to avoid cropping */
}

.free-course-section {
    border: 1px solid var(--borderColour);
    border-radius: 40px;
    padding: 60px 20px;
    margin-top: 60px;
    box-shadow: var(--boxShadow);
}

.free-course-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    color: var(--textColour);
}

.course-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: white;
    font-family: 'poppins', sans-serif;
    letter-spacing: -0.02em;
}

.course-description {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    color: #ccc;
}

.course-cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    font-weight: bold;
    padding: 14px 32px;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.4s;
}

.course-cta-button:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-5px);
    background-color: rgb(214, 159, 48);
}

.sign-upe-arning-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.start-earning-button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 1.25em;
    border-radius: 10px;
    background-color: var(--gold);
    padding: 10px;
    display: block;
    width: 250px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    transition: 0.4s;
}

.start-earning-button:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-5px);
    background-color: rgb(214, 159, 48);
}

@media (max-width: 1300px) {

    .copy-image {
        max-width: 400px;
    }
    .video-container {
        position: relative;
        width: 100%;
        max-width: 960px;
        /* Optional max width */
        margin: 0 auto 40px auto;
        padding-top: 55.25%;
        /* 16:9 aspect ratio */
        overflow: hidden;
    }

}


@media (max-width: 1000px) {

    .header-subtitle {
        font-size: 5em;
    }

    .header-title {
        font-size: 1.3em;
    }

    .copy-image-text {
        flex: 1 1 40%;

    }

    .copy-image {
        width: 350px;
    }

    .copy-text table th,
    .copy-text table td {
        padding: 5px 8px;
    }
}

@media (max-width: 600px) {
    .header-subtitle {
        font-size: 4em;
    }

    .header-title {
        font-size: 1.2em;
    }

    .copy-image {
        width: 400px;
    }

    .copy-text table th,
    .copy-text table td {
        font-size: 0.8em;
        padding: 2px 4px;
    }
}

@media (max-width: 450px) {
    .header-subtitle {
        font-size: 3.5em;
    }

    .header-title {
        font-size: 1em;
    }

    .copy-image {
        width: 350px;
    }

    .copy-text table th,
    .copy-text table td {
        font-size: 0.7em;

    }
}


@media (max-width: 380px) {
    .header-subtitle {
        font-size: 3em;
    }

    .header-title {
        font-size: 0.9em;
    }

    .copy-image {
        width: 300px;
    }

    .copy-text table th,
    .copy-text table td {
        font-size: 0.6em;

    }
}