@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Play:wght@400;700&display=swap');

:root {
    --color-body: #333333;
    --color-background: #ffffff;
    --color-accent: #01CCC7;
    --color-dark: #000000;
    --font-body: "Inter", sans-serif;
    --font-display: "Play", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-body);
    background: var(--color-background);
}

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

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.layout-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-age-warning {
    background-color: #00FFF9;
    padding: 8px 0;
}

.site-age-warning .layout-container {
    display: flex;
    justify-content: center;
}

.site-age-warning p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    margin: 0;
}

.page-hero {
    padding: 75px 0;
    background-image: url('../../img/bg1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-hero .layout-container {
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 65%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    line-height: 80px;
    color: #ffffff;
    margin: 0 0 30px;
}

.hero-description {
    color: #ffffff;
    font-size: 17.6px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 45px;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-highlight-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding-left: 4px;
}

.page-hero--secondary {
    background-image: url('../../img/bg3.png');
    padding: 50px 0;
}

.page-hero--compact .hero-content {
    max-width: 100%;
}

.page-hero--compact .hero-title {
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 0;
}

.page-hero--compact .hero-description {
    margin-top: 20px;
}

.brand-section {
    background-color: #FAFAFA;
    padding: 80px 0 50px;
}

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

.brand-card {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
    padding: 0 20px;
    overflow: hidden;
}

.brand-card-visual {
    width: 25%;
    position: relative;
    padding: 38px 25px;
    padding-right: 110px;
    box-sizing: border-box;
}

.brand-logo {
    position: relative;
    z-index: 2;
}

.brand-background {
    position: absolute;
    top: 0;
    left: -32px;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.brand-rank {
    position: absolute;
    left: -21px;
    bottom: 0;
    width: 106px;
    height: 24px;
    border-radius: 0 36px 0 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
}

.brand-card-body {
    width: 55%;
    display: flex;
    align-items: center;
}

.brand-bonus {
    width: 50%;
}

.brand-bonus h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    padding-left: 8px;
}

.brand-bonus h3 span {
    color: var(--color-accent);
}

.brand-bonus p {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 34px;
    color: #000000;
    margin: 0;
    padding-left: 8px;
    padding-top: 5px;
}

.brand-rating {
    width: 25%;
    text-align: center;
}

.brand-rating h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 20px;
}

.brand-rating img {
    height: 19px;
    margin: 0 auto;
}

.brand-score {
    width: 25%;
    text-align: center;
    padding-bottom: 12px;
}

.brand-score h4 {
    font-family: var(--font-display);
    font-size: 37px;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.brand-score h4 sub {
    font-size: 20px;
    color: #000000;
    padding-left: 3px;
    padding-bottom: 5px;
}

.brand-score h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    margin: 8px 0 0;
}

.brand-card-cta {
    width: 20%;
}

.brand-card-cta a {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    width: 210px;
    height: 55px;
    line-height: 55px;
    border-radius: 10px;
    background: linear-gradient(100deg, #00D3DD -1.56%, #00474B 103.97%);
    margin: 0 auto 0 0;
}

.brand-card-cta img {
    display: block;
}

.brand-rating-mobile {
    display: none;
}

.brand-rating-desktop {
    display: block;
}

.brand-note {
    text-align: center;
    color: #000000;
    font-size: 12.5px;
    font-weight: 300;
    padding-bottom: 25px;
}

.brand-note p {
    margin: 0;
    line-height: 25px;
}

.brand-note a {
    color: #000000;
    text-decoration: underline;
}

.info-section {
    padding: 60px 0;
    background-image: url('../../img/bg2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.info-wrapper {
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(22.95px);
    padding: 50px 30px 25px;
}

.info-header {
    margin-bottom: 50px;
}

.info-header h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    margin: 0 0 8px;
}

.info-header p {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

.info-block {
    margin-bottom: 35px;
}

.info-block:last-of-type {
    margin-bottom: 0;
}

.info-block h2 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 8px;
}

.info-block p {
    color: #ffffff;
    font-size: 15.8px;
    line-height: 25px;
    margin: 0;
}

.info-block ul {
    margin-top: 20px;
    padding-left: 40px;
    color: #ffffff;
    list-style: decimal;
}

.info-block ul li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 25px;
}

.info-block ul li:last-child {
    margin-bottom: 0;
}

.info-block a {
    color: #ffffff;
    text-decoration: underline;
}

.info-section--plain {
    background: #ffffff;
    padding-bottom: 40px;
}

.info-section--plain .info-wrapper {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
}

.info-section--plain .info-header h2,
.info-section--plain .info-block h2 {
    color: #000000;
}

.info-section--plain .info-header p,
.info-section--plain .info-block p,
.info-section--plain .info-block ul,
.info-section--plain .info-block ul li,
.info-section--plain .info-block a {
    color: #000000;
}

.info-section--plain .info-block ul {
    list-style: disc;
    padding-left: 20px;
}

.site-footer {
    background: #000000;
    padding-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-logos ul {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-logos img {
    height: 65px;
}

.footer-disclaimer {
    margin-bottom: 15px;
}

.footer-disclaimer p {
    color: #ffffff;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 25px;
}

.footer-disclaimer a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.footer-links a {
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    border-top: 1px solid #353535;
    padding: 20px 0;
}

.footer-copy p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
}
