/* DV188: white theme, black & red accents */

:root {
    --color-white: #ffffff;
    --color-black: #111111;
    --color-red: #c8102e;
    --color-red-dark: #a00d24;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-500: #6b6b6b;
    --color-gray-800: #2a2a2a;
    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --container-max: 1200px;
    --header-height: 72px;
    --radius: 6px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: var(--color-black);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-red);
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: 1.25rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-black);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 1.5rem;
}

.logo-link {
    flex-shrink: 0;
}

.logo {
    height: 48px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: 2px solid var(--color-white);
    border-radius: var(--radius);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: transform var(--transition), opacity var(--transition);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.site-header .main-nav a {
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    color: var(--color-white);
}

.site-header .main-nav a:hover,
.site-header .main-nav a.active {
    color: var(--color-red);
}

/* Main */
.site-main {
    flex: 1;
}

.page-hero {
    background: var(--color-black);
    color: var(--color-white);
    padding: 3rem 0;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--color-gray-200);
    font-size: 1.0625rem;
    max-width: 640px;
}

.page-content {
    padding: 3rem 0 4rem;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.placeholder-block {
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    color: var(--color-gray-500);
    font-style: italic;
}

/* About page */
.about-page {
    max-width: 800px;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.about-logo {
    height: 60px;
    width: auto;
    margin-inline: auto;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-500);
}

.content-section p {
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-section p:last-of-type {
    margin-bottom: 0;
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* How to Play page */
.how-to-page {
    padding-bottom: 0;
}

.how-to-intro {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 3rem;
}

.how-to-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-500);
}

.how-to-steps {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.how-to-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 1.5rem;
    align-items: start;
    position: relative;
    padding-bottom: 2rem;
}

.how-to-step:last-child {
    padding-bottom: 0;
}

.how-to-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 52px;
    bottom: 0;
    width: 2px;
    background: var(--color-gray-200);
}

.how-to-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-black);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.how-to-step-body {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
}

.how-to-step-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.how-to-step-body > p {
    color: var(--color-gray-500);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.how-to-step-body ul {
    list-style: none;
}

.how-to-step-body li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.9375rem;
    color: var(--color-black);
    line-height: 1.55;
    margin-bottom: 0.4rem;
}

.how-to-step-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: var(--color-red);
    border-radius: 50%;
}

.how-to-step-body li:last-child {
    margin-bottom: 0;
}

.how-to-games {
    background: var(--color-gray-100);
    padding: 3.5rem 0;
    margin-bottom: 3.5rem;
}

.how-to-games-header {
    text-align: center;
    margin-bottom: 2rem;
}

.how-to-games-header h2 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.how-to-games-header p {
    color: var(--color-gray-500);
    max-width: 560px;
    margin-inline: auto;
}

.how-to-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.how-to-game-item {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.how-to-game-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.how-to-game-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.how-to-game-item a {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-red);
}

.how-to-game-item a:hover {
    color: var(--color-red-dark);
}

.how-to-faq {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.how-to-faq > h2 {
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.how-to-faq-list {
    display: grid;
    gap: 1rem;
}

.how-to-faq-item {
    background: var(--color-gray-100);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

.how-to-faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.how-to-faq-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

.how-to-cta {
    text-align: center;
    background: var(--color-gray-100);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    margin-bottom: 4rem;
}

.how-to-cta h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.how-to-cta p {
    color: var(--color-gray-500);
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 1.5rem;
}

.how-to-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Games page */
.games-page {
    padding-bottom: 0;
}

.games-intro {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 3rem;
}

.games-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-500);
}

.games-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.games-category-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.games-category-card:hover {
    border-color: var(--color-black);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.games-category-card-slots {
    border-color: var(--color-black);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.games-category-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-black);
}

.games-category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.games-category-card:hover .games-category-media img {
    transform: scale(1.04);
}

.games-category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-500);
    background: var(--color-white);
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.games-category-tag-red {
    color: var(--color-white);
    background: var(--color-red);
}

.games-category-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.games-category-body h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.games-category-body > p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
}

.games-category-list {
    list-style: none;
    margin-top: auto;
}

.games-category-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: var(--color-black);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.games-category-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--color-red);
    border-radius: 50%;
}

.games-category-list li:last-child {
    margin-bottom: 0;
}

.games-providers {
    background: var(--color-gray-100);
    padding: 3.5rem 0;
    margin-bottom: 3rem;
}

.games-providers-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.games-providers-header h2 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.games-providers-header p {
    color: var(--color-gray-500);
    max-width: 600px;
    margin-inline: auto;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.provider-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--transition), transform var(--transition);
}

.provider-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.provider-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-black);
}

.provider-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.provider-card:hover .provider-media img {
    transform: scale(1.04);
}

.provider-logo {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    background: var(--color-black);
}

.provider-logo img {
    width: 100%;
    height: 100%;
    max-height: 120px;
    object-fit: contain;
    object-position: center;
}

.provider-card:hover .provider-logo img {
    transform: none;
}

.provider-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.provider-body > p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
}

.provider-features {
    list-style: none;
}

.provider-features li {
    font-size: 0.875rem;
    color: var(--color-black);
    padding: 0.5rem 0;
    border-top: 1px solid var(--color-gray-200);
}

.provider-features li:first-child {
    border-top: none;
    padding-top: 0;
}

.games-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 4rem;
}

.games-bottom-text h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.games-bottom-text p {
    color: var(--color-gray-500);
    line-height: 1.65;
    max-width: 560px;
}

.games-bottom-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 2.5rem 0 1.5rem;
    margin-top: auto;
}

.footer-inner {
    display: grid;
    gap: 2rem;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-about h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.footer-about p {
    color: var(--color-gray-200);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
    max-width: 720px;
}

.footer-about p:last-child {
    margin-bottom: 0;
}

.footer-about a {
    color: var(--color-white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-about a:hover {
    color: var(--color-red);
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    list-style: none;
}

.footer-nav a {
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--color-red);
}

.footer-copy {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-800);
    color: var(--color-gray-500);
    font-size: 0.8125rem;
}

.footer-copy a {
    color: var(--color-gray-200);
}

.footer-copy a:hover {
    color: var(--color-red);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn-primary:hover {
    background: var(--color-red-dark);
    color: var(--color-white);
}

.btn-dark {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-dark:hover {
    background: var(--color-gray-800);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-black);
    border-color: var(--color-black);
}

.btn-outline-dark:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* Homepage */
.home-banner {
    padding: 3.5rem 0;
}

.home-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.home-banner-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-red);
    margin-bottom: 0.75rem;
}

.home-banner-text h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.home-banner-lead {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.home-banner-text p:last-of-type {
    color: var(--color-gray-500);
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

.home-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-banner-visual img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

.home-section {
    padding: 4rem 0;
}

.home-promo {
    background: var(--color-gray-100);
    padding: 3rem 0;
}

.promo-card {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.5rem;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.promo-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.promo-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.promo-content p {
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.promo-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-black);
    aspect-ratio: 16 / 7;
    max-height: 200px;
}

.promo-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.promo-badge {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-align: center;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.35) 0%, rgba(17, 17, 17, 0.2) 50%, rgba(17, 17, 17, 0.35) 100%);
    padding: 0.75rem 1rem;
}

.promo-amount {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.promo-amount-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0;
    color: var(--color-white);
    background: var(--color-red);
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--color-gray-500);
    max-width: 560px;
    margin-inline: auto;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--color-gray-100);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: transform var(--transition);
}

@media (hover: hover) {
    .feature-card:hover {
        transform: translateY(-2px);
    }
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--color-black);
    color: var(--color-red);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    line-height: 1.55;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.game-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.game-card:hover {
    border-color: var(--color-black);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    color: var(--color-black);
}

.game-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-gray-100);
    color: var(--color-red);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.game-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.game-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    flex: 1;
    margin-bottom: 1rem;
}

.game-card-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-red);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-gray-100);
    border-radius: var(--radius);
}

.step-body {
    display: contents;
}

.step-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
}

.home-cta {
    background: var(--color-gray-100);
    color: var(--color-black);
    padding: 4rem 0;
}

.home-cta-inner {
    text-align: center;
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.home-cta h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.home-cta p {
    color: var(--color-gray-500);
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 1.75rem;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding-inline: 1rem;
    }

    .home-banner-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-banner-visual img {
        max-width: 100%;
    }

    .home-banner {
        padding: 1.75rem 0;
    }

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

    .home-banner-actions .btn {
        width: 100%;
    }

    .home-section {
        padding: 2.5rem 0;
    }

    .home-promo {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-cta {
        margin-top: 1.5rem;
    }

    .promo-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .promo-content {
        text-align: left;
    }

    .promo-content p {
        max-width: none;
        margin-bottom: 1.25rem;
    }

    .promo-content .btn {
        width: 100%;
    }

    .promo-visual {
        aspect-ratio: 16 / 7;
        max-height: 160px;
    }

    .promo-badge {
        flex-direction: column;
        gap: 0.35rem;
    }

    .feature-grid,
    .game-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-card {
        display: grid;
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto auto;
        column-gap: 1rem;
        row-gap: 0.35rem;
        align-items: start;
        padding: 1.125rem;
    }

    .feature-icon {
        grid-row: 1 / -1;
        align-self: center;
        width: 44px;
        height: 44px;
        margin-bottom: 0;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-card h3 {
        grid-column: 2;
        font-size: 1rem;
        margin-bottom: 0;
    }

    .feature-card p {
        grid-column: 2;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .game-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 1rem;
        row-gap: 0.25rem;
        align-items: start;
        padding: 1.125rem;
    }

    .game-card-icon {
        grid-row: 1 / -1;
        align-self: center;
        width: 48px;
        height: 48px;
        margin-bottom: 0;
    }

    .game-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .game-card h3 {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .game-card p {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .home-steps .steps-grid {
        gap: 0;
    }

    .step-card {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 0 1rem;
        align-items: start;
        text-align: left;
        padding: 0 0 1.25rem;
        background: transparent;
        border-radius: 0;
        position: relative;
    }

    .step-card:last-child {
        padding-bottom: 0;
    }

    .step-card:not(:last-child)::before {
        content: "";
        position: absolute;
        left: 21px;
        top: 44px;
        bottom: 0;
        width: 2px;
        background: var(--color-gray-200);
    }

    .step-body {
        display: block;
        background: var(--color-white);
        border: 1px solid var(--color-gray-200);
        border-radius: var(--radius);
        padding: 1rem 1.125rem;
    }

    .step-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 0.8125rem;
        font-weight: 700;
        color: var(--color-white);
        background: var(--color-black);
        border-radius: 50%;
        margin-bottom: 0;
        line-height: 1;
        position: relative;
        z-index: 1;
    }

    .step-card h3 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .step-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .home-cta {
        padding: 2.5rem 0;
    }

    .home-cta-inner {
        padding: 1.75rem 1.25rem;
    }

    .home-cta .btn-lg {
        width: 100%;
    }

    .section-cta .btn {
        width: 100%;
    }

    .about-cta {
        flex-direction: column;
    }

    .about-cta .btn {
        width: 100%;
    }

    .games-category-grid,
    .provider-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .games-category-body {
        padding: 1.25rem;
    }

    .games-providers {
        padding: 2.5rem 0;
    }

    .provider-body {
        padding: 1.25rem;
    }

    .games-bottom {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding-bottom: 3rem;
    }

    .games-bottom-text p {
        max-width: none;
    }

    .games-bottom-actions .btn {
        width: 100%;
    }

    .how-to-step {
        grid-template-columns: 44px 1fr;
        gap: 0 1rem;
        padding-bottom: 1.25rem;
    }

    .how-to-step:not(:last-child)::before {
        left: 21px;
        top: 44px;
    }

    .how-to-step-num {
        width: 44px;
        height: 44px;
        font-size: 0.8125rem;
    }

    .how-to-step-body {
        padding: 1.125rem 1.25rem;
    }

    .how-to-step-body h2 {
        font-size: 1.0625rem;
    }

    .how-to-games {
        padding: 2.5rem 0;
    }

    .how-to-games-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .how-to-game-item {
        padding: 1.25rem;
    }

    .how-to-cta {
        padding: 1.75rem 1.25rem;
        margin-bottom: 3rem;
    }

    .how-to-cta-actions {
        flex-direction: column;
    }

    .how-to-cta-actions .btn {
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-black);
        padding: 1rem;
        display: none;
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav a {
        padding: 0.75rem 1rem;
    }

    .header-inner {
        position: relative;
    }
}