/* =========================
   ROOT VARIABLES
========================= */

:root {

    /* ================= FONT ================= */
    --font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
    --font-size-base: 20px;

    /* ================= MAIN BACKGROUND ================= */
    --main-bg: linear-gradient(180deg, #3b0008 0%, #1a0004 100%);
    --main-text: #f5e6c8;

    /* ================= HEADER ================= */
    --header-bg: linear-gradient(180deg, #6d0f16 0%, #3b0008 100%);
    --header-link-color: #f8d37a;
    --header-text-color: #f8d37a;

    --header-button-text: #3b0008;
    --header-button-bg: linear-gradient(180deg, #ffd87a 0%, #e0a100 100%);

    /* ================= HERO ================= */
    --hero-overlay: rgba(30, 0, 0, 0.75);

    --hero-primary-btn-bg: linear-gradient(180deg, #ffd87a 0%, #e0a100 100%);
    --hero-primary-btn-text: #3b0008;

    --hero-secondary-btn-bg: transparent;
    --hero-secondary-btn-text: #ffd87a;
    --hero-secondary-btn-border: #ffd87a;
    
    --hero-title-size: 34px;
    

    /* ================= CARDS ================= */
    --card-bg: #5a0d14;
    --card-border: #8f1e2b;

    /* ================= PAYMENTS ================= */
    --payment-card-bg: #5a0d14;
    --payment-card-border: #8f1e2b;
    --payment-method-bg: #6d0f16;
    --payment-method-text: #ffd87a;
    --payment-method-hover: #ffd87a;

    /* ================= PROVIDERS ================= */
    --providers-bg: #3b0008;
    --provider-card-bg: #5a0d14;
    --provider-card-border: #8f1e2b;
    --provider-featured-border: #ffd87a;
    --provider-hover-bg: #6d0f16;

    /* ================= FEEDBACK ================= */
    --feedback-bg: #3b0008;
    --review-card-bg: #5a0d14;
    --review-border: #8f1e2b;
    --review-star-color: #ffd87a;

    /* ================= OVERVIEW ================= */
    --overview-bg: #3b0008;
    --overview-highlight-bg: #5a0d14;
    --overview-highlight-border: #8f1e2b;
    --overview-btn-bg: linear-gradient(180deg, #ffd87a 0%, #e0a100 100%);
    --overview-btn-text: #3b0008;

    /* ================= START ================= */
    --start-bg: #3b0008;
    --step-card-bg: #5a0d14;
    --step-border: #8f1e2b;
    --step-number-bg: #ffd87a;
    --step-number-text: #3b0008;
    --start-btn-bg: linear-gradient(180deg, #ffd87a 0%, #e0a100 100%);
    --start-btn-text: #3b0008;

    /* ================= FOOTER ================= */
    --footer-bg: #2a0005;
    --footer-text: #f8d37a;
    --footer-link: #ffd87a;
    --footer-button-bg: linear-gradient(180deg, #ffd87a 0%, #e0a100 100%);
    --footer-button-text: #3b0008;
}

.btn {
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}
.section-title {
    color: #ffd87a;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.provider-card,
.payment-card,
.review-card,
.step-card,
.highlight-box {
    background: linear-gradient(180deg, #6d0f16 0%, #4a000a 100%);
}
.nav a:hover {
    color: #ffd87a;
    text-shadow: 0 0 8px rgba(255, 216, 122, 0.6);
}



/* =========================
   GLOBAL
========================= */

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    background: var(--main-bg);
    color: var(--main-text);
    scroll-behavior: smooth;
}

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

/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    background: var(--header-bg);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: var(--header-link-color);
    font-size: 14px;
    transition: 0.3s;
}

.nav a:hover {
    opacity: 0.7;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* =========================
   BUTTON
========================= */

.btn {
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.header-btn {
    background: var(--header-button-bg);
    color: var(--header-button-text);
}

.header-btn:hover {
    opacity: 0.85;
}

/* =========================
   MAIN
========================= */

.main section {
    min-height: 600px;
    padding: 100px 0;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0;
    text-align: center;
}

.footer-menu {
    margin-bottom: 25px;
}

.footer-menu a {
    margin: 0 10px;
    text-decoration: none;
    color: var(--footer-link);
    font-size: 14px;
}

.footer-menu a:hover {
    opacity: 0.7;
}

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

.footer-btn {
    background: var(--footer-button-bg);
    color: var(--footer-button-text);
}

.footer-btn:hover {
    opacity: 0.85;
}

/* =========================
   MOBILE
========================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 3px;
    background: var(--header-text-color);
}

@media (max-width: 992px) {

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--header-bg);
        display: none;
        padding: 20px 0;
        text-align: center;
    }

    .nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}



/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;
    background: url('/bg.jpg') center center / cover no-repeat;
    height: var(--hero-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: var(--hero-title-size);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    display: block;
    font-size: 0.7em;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: var(--hero-subtitle-size);
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: var(--hero-primary-btn-bg);
    color: var(--hero-primary-btn-text);
}

.hero-btn-secondary {
    background: var(--hero-secondary-btn-bg);
    color: var(--hero-secondary-btn-text);
    border: 2px solid var(--hero-secondary-btn-border);
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover {
    opacity: 0.85;
}

/* =========================
   MOBILE HERO
========================= */

@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 120px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}



/* =========================
   GENERAL INFO SECTION
========================= */

.info-section {
    background: var(--info-bg);
    color: var(--info-text);
    padding: 100px 0;
}

.section-title {
    font-size: var(--info-heading-size);
    margin-bottom: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* TABLE */

/* =========================
   LUXURY GENERAL INFO TABLE
========================= */

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(180deg, #6d0f16 0%, #4a000a 100%);
    border: 1px solid #8f1e2b;
    border-radius: 16px;
    overflow: hidden;
    font-size: 15px;
}

.info-table tr {
    transition: 0.2s ease;
}

.info-table tr:not(:last-child) td,
.info-table tr:not(:last-child) th {
    border-bottom: 1px solid #8f1e2b;
}

.info-table th,
.info-table td {
    padding: 20px 26px;   /* MORE PADDING */
    vertical-align: middle;
}

/* LEFT COLUMN (LABELS) */
.info-table th {
    width: 40%;
    font-weight: 600;
    color: #ffd87a;
    text-align: left;
    background: rgba(0,0,0,0.15);
}

/* RIGHT COLUMN (VALUES) */
.info-table td {
    color: #f5e6c8;
}

/* Hover row effect */
.info-table tr:hover {
    background: rgba(255, 216, 122, 0.06);
}

/* Link style */
.info-table a {
    color: #ffd87a;
    text-decoration: none;
}

.info-table a:hover {
    text-decoration: underline;
}
/* TEXT CONTENT */

.info-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
    opacity: 0.9;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}




/* =========================
   PAYMENTS SECTION
========================= */

.payments-section {
    background: var(--payments-bg);
    padding: 100px 0;
}

.center {
    text-align: center;
}

.payments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.payment-card {
    background: var(--payment-card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--payment-card-border);
}

.payment-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.payment-methods span {
    background: var(--payment-method-bg);
    color: var(--payment-method-text);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    transition: 0.3s;
}

.payment-methods span:hover {
    background: var(--payment-method-hover);
    color: #000;
}

.payment-info {
    list-style: none;
    padding: 0;
    font-size: 14px;
    opacity: 0.9;
}

.payment-info li {
    margin-bottom: 8px;
}

/* SPEED STRIP */

.payment-speed {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.speed-box {
    background: var(--payment-card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--payment-card-border);
}

.speed-box h4 {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.7;
}

.speed-box p {
    font-weight: bold;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .payments-grid {
        grid-template-columns: 1fr;
    }

    .payment-speed {
        grid-template-columns: 1fr 1fr;
    }
}



/* =========================
   GAME PROVIDERS SECTION
========================= */

.providers-section {
    background: var(--providers-bg);
    padding: 100px 0;
}

.section-subtitle {
    max-width: 750px;
    margin: 20px auto 50px auto;
    opacity: 0.85;
    font-size: 15px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.provider-card {
    background: var(--provider-card-bg);
    border: 1px solid var(--provider-card-border);
    border-radius: 12px;
    padding: 25px;
    transition: 0.3s ease;
    min-height: 110px;
}

.provider-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.provider-card p {
    font-size: 13px;
    opacity: 0.8;
}

.provider-card:hover {
    background: var(--provider-hover-bg);
    transform: translateY(-4px);
}

/* FEATURED PROVIDERS */

.provider-card.featured {
    border: 2px solid var(--provider-featured-border);
}

.provider-card.featured h3 {
    font-size: 18px;
}

/* FOOTER TEXT */

.providers-footer {
    margin-top: 40px;
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .provider-card {
        padding: 20px;
    }

}



/* =========================
   FEEDBACK SECTION
========================= */

.feedback-section {
    background: var(--feedback-bg);
    padding: 100px 0;
    position: relative;
}

.carousel {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    padding: 40px;
    background: var(--review-card-bg);
    border: 1px solid var(--review-border);
    border-radius: 14px;
    text-align: center;
}

.review-stars {
    font-size: 20px;
    color: var(--review-star-color);
    margin-bottom: 20px;
}

.review-card p {
    font-size: var(--review-text-size);
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.review-author {
    font-size: 14px;
    opacity: 0.8;
}

/* ARROWS */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--carousel-btn-bg);
    color: var(--carousel-btn-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

.carousel-btn:hover {
    opacity: 0.85;
}

/* DOTS */

.carousel-dots {
    text-align: center;
    margin-top: 25px;
}

.carousel-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #444;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dots .active {
    background: var(--review-star-color);
}


/* =========================
   OVERVIEW SECTION
========================= */

.overview-section {
    background: var(--overview-bg);
    color: var(--overview-text);
    padding: 100px 0;
}

.overview-wrapper {
    max-width: 900px;
}

.overview-content p {
    font-size: var(--overview-text-size);
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.92;
}

/* HIGHLIGHT BOXES */

.overview-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.highlight-box {
    background: var(--overview-highlight-bg);
    border: 1px solid var(--overview-highlight-border);
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
}

.highlight-box strong {
    display: block;
    margin-bottom: 8px;
}

/* CTA */

.overview-cta {
    text-align: center;
    margin-top: 30px;
}

.overview-btn {
    background: var(--overview-btn-bg);
    color: var(--overview-btn-text);
    padding: 14px 30px;
    font-weight: bold;
    border-radius: 30px;
}

.overview-btn:hover {
    opacity: 0.85;
}

/* MOBILE */

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


/* =========================
   START SECTION
========================= */

.start-section {
    background: var(--start-bg);
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: var(--step-card-bg);
    border: 1px solid var(--step-border);
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--step-number-bg);
    color: var(--step-number-text);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.step-card h3 {
    font-size: var(--step-heading-size);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

/* CTA */

.start-cta {
    margin-top: 60px;
    text-align: center;
}

.start-btn {
    background: var(--start-btn-bg);
    color: var(--start-btn-text);
    padding: 16px 40px;
    font-weight: bold;
    border-radius: 40px;
    font-size: 16px;
}

.start-btn:hover {
    opacity: 0.85;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}