:root {
    --c1: #000000;
    --c2: #66666e;
    --c3: #9999a1;
    --c4: #e6e6e9;
    --c5: #f4f4f6;
    --accent: #4a90e2;
    --bgdark: #0a0a0a;
    --bgcard: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    background-color: var(--bgdark);
    color: var(--c4);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.topbar {
    background-color: var(--bgcard);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--c2);
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wraper{
    padding: 0 20px;
}

.sitename a {
    display: block;
    height: 45px;
}

.sitename img {
    height: 100%;
    width: auto;
    display: block;

    filter: brightness(0) invert(1);
}

.links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.links li {
    position: relative;
}

.links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--c3);
    padding: 8px 0;
    transition: color 0.3s ease;
    display: block;
}

.links a:hover {
    color: var(--c5);
}

.links li.activ a {
    color: var(--accent);
}

.links li.activ a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: var(--c5);
    transition: 0.3s;
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    .burger {
        display: flex;
    }

    .links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bgcard);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        border-top: 1px solid var(--c2);
    }

    .links.show {
        left: 0;
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

main[role="main-home-wrapper"] {
    padding-bottom: 90px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;

}

main[role="main-home-wrapper"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

main[role="main-home-wrapper"] .wraper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.rowx {
    display: flex;
    flex-wrap: wrap;
}

.halfside {
    width: 100%;

    margin: 0 auto;
    text-align:center;
}

@media (min-width: 576px) {
    .halfside {
        width: 50%;
    }
}

main[role="main-home-wrapper"] article[role="pge-title-content"] {
    padding-left: 41px;
}

main[role="main-home-wrapper"] article[role="pge-title-content"] header {
    padding-bottom: 19px;
    padding-top: 83px;
}

main[role="main-home-wrapper"] article[role="pge-title-content"] header h2 {
    font-size: 46px;
    line-height: 53px;
    color: #fff;
    font-weight: 800;
}

main[role="main-home-wrapper"] article[role="pge-title-content"] header h2 span {
    display: block;
    font-size: 80px;
    color: var(--accent);
    padding-bottom: 15px;
}

main[role="main-home-wrapper"] article[role="pge-title-content"] p {
    font-size: 20px;
    line-height: 30px;
    color: #9999a1;
}

@media screen and (max-width: 768px) {
    main[role="main-home-wrapper"] article[role="pge-title-content"] {
        padding-left: 20px;
    }

    main[role="main-home-wrapper"] article[role="pge-title-content"] header {
        padding-top: 60px;
    }

    main[role="main-home-wrapper"] article[role="pge-title-content"] header h2 {
        font-size: 36px;
        line-height: 42px;
    }

    main[role="main-home-wrapper"] article[role="pge-title-content"] header h2 span {
        font-size: 58px;
    }

    main[role="main-home-wrapper"] article[role="pge-title-content"] p {
        font-size: 17px;
        line-height: 26px;
    }
}

.btm {
    background: var(--bgcard);
    padding: 120px 0;
}

@media (max-width: 991px) {
    .btm {
        padding: 80px 0;
    }
}

.btm .wraper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gridfoot {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 40px;
}

.boxlarge {
    flex: 1 1 40%;
}

.boxsmall {
    flex: 1 1 15%;
}

@media (max-width: 991px) {
    .boxlarge, .boxsmall {
        flex: 1 1 100%;
    }
}

.btm h6 {
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.btm p {
    color: var(--c3);
    line-height: 1.625em;
    font-size: 15px;
}

.warning-txt {
    background: rgba(237, 27, 27, 0.15);
    padding: 18px 20px;
    border-radius: 6px;
    color: var(--c4) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

.warning-txt strong {
    color: #ff4444;
    font-weight: 700;
}

.regulators {
    padding: 40px 0;
    border-top: 1px solid var(--c2);
    border-bottom: 1px solid var(--c2);
    margin-bottom: 35px;
    text-align: center;
}

.regulators h6 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

.reglogos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.reglogos a {
    display: block;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reglogos a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.reglogos img {
    height: 50px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .reglogos {
        gap: 25px;
    }

    .reglogos img {
        height: 40px;
    }
}

.boxsmall ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.boxsmall a {
    color: var(--c3);
    font-size: 14px;
    transition: color 0.3s ease;
}

.boxsmall a:hover {
    color: var(--accent);
}

.bottomline {
    padding-top: 35px;
    border-top: 1px solid var(--c2);
}

.bottomline p {
    text-align: center;
    color: var(--c2);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.bottomline a {
    color: var(--accent);
}

.bottomline a:hover {
    text-decoration: underline;
}

.plainpage {
    padding: 100px 0;
    background: var(--bgdark);
}

.plainpage .wraper {
    max-width: 900px;
    margin: 0 auto;
}

.plainpage h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--c5);
    margin-bottom: 30px;
}

.plainpage h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--c5);
    margin-top: 40px;
    margin-bottom: 18px;
}

.plainpage p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--c3);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .plainpage {
        padding: 60px 0;
    }

    .plainpage h1 {
        font-size: 36px;
    }

    .plainpage h3 {
        font-size: 22px;
    }

    .plainpage p {
        font-size: 15px;
    }
}

.offersec {
    background: linear-gradient(165deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.offersec::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.offersec::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.sectitle {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--c5);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.secdesc {
    text-align: center;
    font-size: 18px;
    color: var(--c3);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.cardsgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

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

.crd {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    position: relative;
}

.crd:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
}

.crd.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(145deg, #1e1e2e 0%, #12121f 100%);
}

.crd.featured:hover {
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.35);
}

.badg {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    text-transform: uppercase;
}

.crdtop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.logowrap {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 70px;
}

.logowrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.stars {
    color: #ffd700;
    font-size: 16px;
    letter-spacing: 2px;
}

.score {
    font-size: 14px;
    font-weight: 600;
    color: var(--c4);
}

.bookname {
    font-size: 28px;
    font-weight: 800;
    color: var(--c5);
    margin-bottom: 18px;
}

.bonustxt {
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.2) 0%, rgba(74, 144, 226, 0.05) 100%);
    border-left: 3px solid var(--accent);
    padding: 12px 15px;
    margin-bottom: 18px;
    border-radius: 4px;
}

.bonustxt.highlight {
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.3) 0%, rgba(74, 144, 226, 0.1) 100%);
    border-left: 4px solid var(--accent);
}

.bonustxt strong {
    color: var(--c5);
    font-size: 17px;
    font-weight: 700;
    display: block;
}

.smallinfo {
    font-size: 14px;
    line-height: 1.6;
    color: var(--c3);
    margin-bottom: 20px;
}

.pros {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.pros li {
    font-size: 14px;
    color: var(--c4);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 16px;
}

.clmbtn {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, var(--accent) 0%, #357abd 100%);
    color: #fff;
    padding: 14px 25px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.clmbtn:hover {
    background: linear-gradient(90deg, #357abd 0%, #2868a8 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

@media (max-width: 991px) {
    .offersec {
        padding: 70px 0;
    }

    .sectitle {
        font-size: 32px;
    }

    .secdesc {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .crdtop {
        flex-direction: column;
        gap: 15px;
    }

    .rating {
        align-items: flex-start;
    }
}

.main-content {
    padding: 0 50px;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.content-header h1 {
    font-size: 40px;
    color: var(--c5);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 800;
}

@media (max-width: 768px) {
    .content-header h1 {
        font-size: 32px;
    }
}

.faqwrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.faqcard {
    background: var(--bgcard);
    border: 1px solid var(--c2);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faqcard:hover {
    border-color: var(--accent);
}

.faqcard .toggle {
    display: none;
}

.faqcard .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--c5);
    user-select: none;
}

.faqcard .question span:first-child {
    flex: 1;
    padding-right: 15px;
}

.faqcard .icon {
    font-size: 24px;
    color: var(--accent);
    font-weight: 400;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faqcard .toggle:checked + .question .icon {
    transform: rotate(45deg);
}

.faqcard .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faqcard .toggle:checked ~ .answer {
    max-height: 500px;
    padding-top: 20px;
}

.faqcard .answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c3);
    margin: 0;
    font-weight: 400;
}

@media (max-width: 991px) {
    .main-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 0 20px;
    }

    .faqcard {
        padding: 20px;
    }

    .faqcard .question {
        font-size: 16px;
    }

    .faqcard .answer p {
        font-size: 14px;
    }
}

.team-block {
    background: linear-gradient(180deg, var(--bgdark) 0%, var(--bgcard) 100%);
}

.rowflex {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.centercontent {
    justify-content: center;
}

.colhalf {
    width: 100%;
    max-width: 700px;
}

@media (min-width: 768px) {
    .colhalf {
        width: 60%;
    }
}

.section_title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--c5);
    margin-bottom: 25px;
    text-align: center;
}

.section_title p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--c3);
    margin-bottom: 18px;
    text-align: center;
}

@media (max-width: 768px) {
    .section_title h2 {
        font-size: 32px;
    }

    .section_title p {
        font-size: 15px;
    }
}

.mb50 {
    margin-bottom: 50px;
}

.fullwidth-img {
    width: 100%;
    margin-bottom: 70px;
}

.teamphoto {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.teamphoto img {
    width: 100%;
    height: auto;
    display: block;
}

.teamgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .teamgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.membercard {
    background: var(--bgcard);
    border: 1px solid var(--c2);
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.membercard:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.memb-icon {
    margin-bottom: 25px;
}

.iconcirc {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #357abd 100%);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.membname {
    font-size: 22px;
    font-weight: 700;
    color: var(--c5);
    margin-bottom: 8px;
}

.membrole {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.membdesc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c3);
    margin: 0;
}

.supportsec {
    padding: 5em 0;
    background: var(--bgdark);
}

@media (max-width: 991px) {
    .supportsec {
        padding: 4em 0;
    }
}

.txtblock {
    position: relative;
}

.centered-txt {
    display: flex;
    justify-content: center;
    text-align: center;
}

.txtbox {
    max-width: 800px;
    width: 100%;
}

.bigtitle {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .bigtitle {
        font-size: 2rem;
    }
}

.paratxt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--c3);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .paratxt {
        font-size: 1rem;
    }
}

.ctabtn {
    display: inline-block;
    background: var(--accent);
    border: 2px solid var(--accent);
    color: #fff;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.ctabtn:hover {
    background: #357abd;
    border-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.contactpage {
    padding: 100px 0;
    background: var(--bgdark);
}

.contactwrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .contactwrap {
        flex-direction: column;
        gap: 40px;
    }
}

.leftside {
    flex: 1;
}

.leftside h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--c5);
    margin-bottom: 20px;
}

.leftside > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--c3);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .leftside h1 {
        font-size: 36px;
    }

    .leftside > p {
        font-size: 16px;
    }
}

.contactinfo {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.infoitem h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.infoitem p {
    font-size: 16px;
    color: var(--c3);
    line-height: 1.6;
    margin: 0;
}

.rightside {
    flex: 1;
    background: var(--bgcard);
    border: 1px solid var(--c2);
    border-radius: 12px;
    padding: 40px 35px;
}

@media (max-width: 768px) {
    .rightside {
        padding: 30px 25px;
    }
}

.cform {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.formgroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.formgroup label {
    font-size: 14px;
    font-weight: 600;
    color: var(--c5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.formgroup input,
.formgroup textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bgdark);
    border: 1px solid var(--c2);
    border-radius: 6px;
    font-size: 15px;
    color: var(--c4);
    font-family: 'Libre Franklin', sans-serif;
    transition: all 0.3s ease;
}

.formgroup input:focus,
.formgroup textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.formgroup textarea {
    resize: vertical;
    min-height: 120px;
}

.submitbtn {
    background: linear-gradient(90deg, var(--accent) 0%, #357abd 100%);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Libre Franklin', sans-serif;
}

.submitbtn:hover {
    background: linear-gradient(90deg, #357abd 0%, #2868a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.submitbtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.thankyoupop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popbox {
    max-width: 500px;
    width: 90%;
}

.popinner {
    background: var(--bgcard);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    margin: 0 auto 25px;
}

.popinner h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--c5);
    margin-bottom: 15px;
}

.popinner p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--c3);
    margin-bottom: 30px;
}

.closebtn {
    background: linear-gradient(90deg, var(--accent) 0%, #357abd 100%);
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Libre Franklin', sans-serif;
}

.closebtn:hover {
    background: linear-gradient(90deg, #357abd 0%, #2868a8 100%);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .popinner {
        padding: 40px 30px;
    }

    .checkmark {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .popinner h2 {
        font-size: 26px;
    }

    .popinner p {
        font-size: 15px;
    }
}


.age-warning {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    border-bottom: 2px solid #991b1b;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.age-warning p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.age-warning strong {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .age-warning {
        padding: 10px 0;
    }
    
    .age-warning p {
        font-size: 12px;
    }
    
    .age-warning strong {
        font-size: 13px;
        display: block;
        margin-bottom: 3px;
    }
}





/* Single card layout */
.cardsgrid.single {
    display: flex;
    justify-content: center;
    max-width: 480px;
    margin: 0 auto;
}

.cardsgrid.single .crd {
    width: 100%;
    max-width: 450px;
}

.cardsgrid.single .crd.featured {
    transform: none;
}

.cardsgrid.single .crd.featured:hover {
    transform: translateY(-8px);
}

/* Enhanced single card styling */
.cardsgrid.single .crd .pros li {
    font-size: 15px;
}

.cardsgrid.single .crd .bonustxt {
    font-size: 22px;
}

.cardsgrid.single .crd .clmbtn {
    padding: 16px 40px;
    font-size: 17px;
}