/* ==========================================
   CasinoHelp.at - Main Stylesheet
   ========================================== */

/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   1. CSS Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    color: #ffffff;
    background: #ff6b73;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================
   2. Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* ==========================================
   3. Layout Components
   ========================================== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-bg {
    background-image: radial-gradient(circle at 100%, #e7ebfc, #fff);
    color: #333;
}

/* ==========================================
   4. Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff6b73;
    color: #fff;
}

.btn-primary:hover {
    background-color: #ff4f59;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 115, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ==========================================
   5. Top Bar
   ========================================== */
.topbar {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 10px 0;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    padding: 4px 8px;
    text-decoration: none;
}

.topbar-link:hover {
    color: #ff6b73;
}

.topbar-link svg {
    width: 16px;
    height: 16px;
}

.topbar-icon {
    width: 20px;
    height: 20px;
}

.topbar-divider {
    color: #ccc;
    margin: 0 4px;
}

/* ==========================================
   6. Main Navigation
   ========================================== */
.navbar {
    background-color: #f8f9fa;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-item {
    list-style: none;
}

.navbar-link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #ff6b73;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b73;
    transition: width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    display: block;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    position: relative;
}

.nav-link:hover {
    color: #ff6b73;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b73;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* ==========================================
   7. Hero Section
   ========================================== */
.hero-section {
    padding: 80px 0;
    background-color: #fafafa;
}

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

.hero-content {
    max-width: 540px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-features {
    margin: 30px 0 40px 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #333;
}

.checkmark-icon {
    width: 28px;
    height: 28px;
    color: #4caf50;
    flex-shrink: 0;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
}

/* ==========================================
   8. Court Decision Section
   ========================================== */
.court-section {
    padding: 60px 0;
    text-align: center;
}

.court-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
}

.highlight-text {
    color: #ff6b73;
    font-weight: 700;
}

.court-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    color: #ff6b73;
}

.court-link {
    color: #ff6b73;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: underline;
}

.court-link:hover {
    color: #ff4f59;
}

.court-disclaimer {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
}

/* ==========================================
   9. Calculator Section
   ========================================== */
.calculator-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.calculator-col {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.calculator-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.prerequisites-list {
    list-style: none;
    padding: 0;
}

.prerequisites-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.prerequisites-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Calculator Widget */
.calculator-widget {
    margin-top: 20px;
}

.calculator-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.slider-wrapper {
    margin: 30px 0;
}

.loss-slider {
    width: 100%;
    height: 5px;
    background: rgba(221, 221, 221, 0.78);
    outline: none;
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.loss-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #ff6b73;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 107, 115, 0.4);
}

.loss-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #ff6b73;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 107, 115, 0.4);
}

.slider-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #888;
}

.calculator-result {
    background-color: #f0f7ff;
    border-left: 4px solid #ff6b73;
    padding: 20px;
    border-radius: 4px;
    margin: 25px 0;
}

.calculator-result p {
    font-size: 1.15rem;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
}

.result-currency {
    color: #ff6b73;
    font-weight: 600;
}

#recoveryAmount {
    color: #ff6b73;
    font-weight: 700;
}

.calculator-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-top: 20px;
}

/* ==========================================
   10. Statistics Section
   ========================================== */
.stats-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b73;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.4;
}

/* ==========================================
   11. How It Works Section
   ========================================== */
.how-it-works-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.how-it-works-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.step-reverse {
    direction: rtl;
}

.step-reverse > * {
    direction: ltr;
}

.step-content {
    max-width: 540px;
}

.step-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.step-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-duration {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin: 20px 0;
}

.step-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

/* ==========================================
   12. Responsive Design
   ========================================== */

/* Tablet and below (991px and below) */
@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-grid,
    .calculator-grid,
    .how-it-works-step {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-reverse {
        direction: ltr;
    }

    .step-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-item-desktop {
        display: none;
    }

    /* Mobile Menu */
    .mobile-menu-toggle,
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 86px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 86px);
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 30px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-item {
        width: 100%;
    }

    .navbar-link::after {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 86px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 86px);
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 30px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .nav-link::after {
        display: none;
    }
}

/* Mobile (767px and below) */
@media screen and (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .calculator-col {
        padding: 25px;
    }

    .calculator-amount {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .topbar-nav {
        font-size: 12px;
        gap: 4px;
    }

    .topbar-link {
        padding: 2px 4px;
        gap: 4px;
    }

    .topbar-icon {
        width: 16px;
        height: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Small mobile (479px and below) */
@media screen and (max-width: 479px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .calculator-amount {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ==========================================
   12. Legal Foundation Section
   ========================================== */
.legal-section {
    padding: 80px 0;
}

.legal-section .section-title {
    color: #1a1a1a;
}

.legal-item {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

/* ==========================================
   Page Header for Subpages
   ========================================== */
.page-header {
    padding: 80px 0 60px 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==========================================
   Content Section
   ========================================== */
.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legal-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.legal-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-list {
    margin-left: 25px;
    color: #555;
    line-height: 1.8;
}

.legal-list li {
    margin-bottom: 15px;
}

/* ==========================================
   Info Cards and Grids
   ========================================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.info-icon {
    width: 48px;
    height: 48px;
    color: #ff6b73;
    margin-bottom: 20px;
}

/* ==========================================
   Check List
   ========================================== */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b73;
    font-weight: bold;
    font-size: 1.3rem;
}

/* ==========================================
   CTA and Warning Boxes
   ========================================== */
.cta-box {
    background: linear-gradient(135deg, #ff6b73 0%, #ff4f59 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(255, 107, 115, 0.3);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-box .btn {
    background-color: #fff;
    color: #ff6b73;
    font-weight: 600;
}

.cta-box .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    border-radius: 6px;
    margin: 30px 0;
}

.warning-box p {
    margin: 0;
    color: #856404;
    font-size: 1rem;
    line-height: 1.7;
}

.warning-box strong {
    color: #856404;
    font-weight: 600;
}

.info-box {
    background-color: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 20px 25px;
    border-radius: 6px;
    margin: 30px 0;
}

.info-box p {
    margin: 0;
    color: #0c5460;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-bubbles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-bubble {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid;
    display: flex;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.info-bubble.info {
    border-color: #ffd700;
}

.info-bubble.warning {
    border-color: #ff6b73;
}

.info-bubble.success {
    border-color: #4caf50;
}

.info-bubble p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.bubble-icon {
    width: 28px;
    height: 28px;
    color: #ffd700;
    flex-shrink: 0;
}

.info-bubble.warning .bubble-icon {
    color: #ff6b73;
}

.info-bubble.success .bubble-icon {
    color: #4caf50;
}

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

/* ==========================================
   13. FAQ Section
   ========================================== */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.accordion-item-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    gap: 20px;
}

.accordion-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    color: #ff6b73;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.accordion-item-content p {
    padding: 0 30px 25px 30px;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.accordion-item-content p:last-child {
    margin-bottom: 0;
}

.accordion-item-content a {
    color: #ff6b73;
    text-decoration: underline;
}

.accordion-item-content a:hover {
    color: #ff6b73;
}

.accordion-item-content .btn {
    margin-top: 20px;
    margin-left: 30px;
    margin-bottom: 10px;
    display: inline-block;
    color: #fff;
}

/* ==========================================
   14. Testimonials Section
   ========================================== */
.testimonial-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-mask {
    position: relative;
    overflow: hidden;
}

.testimony-slide {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.testimony-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimony-text {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimony-author {
    font-size: 1.05rem;
    color: #666;
    font-weight: 600;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff6b73;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.slider-arrow:hover {
    background-color: #ff4f59;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

.slide-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.w-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.w-slider-dot:hover {
    background-color: #bbb;
}

.w-slider-dot.w-active {
    background-color: #ff6b73;
    transform: scale(1.2);
}

/* ==========================================
   15. Comparison Section
   ========================================== */
.comparison-section {
    padding: 80px 0;
    background-color: #fff;
}

.comparison-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 50px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.comparison-card.featured {
    background: #ff6b73;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(140, 84, 255, 0.3);
}

.comparison-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.comparison-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.comparison-card.featured .comparison-title {
    color: #fff;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.comparison-item {
    padding: 15px 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 1.05rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.comparison-item::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.comparison-item.positive {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
}

.comparison-item.positive::before {
    content: '✓';
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-item.negative {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
}

.comparison-item.negative::before {
    content: '✗';
    color: #f44336;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-item.neutral {
    background-color: rgba(158, 158, 158, 0.1);
    color: #666;
}

.comparison-item.neutral::before {
    content: '–';
    color: #999;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-card.featured .comparison-item.positive {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.comparison-card.featured .comparison-item.positive::before {
    color: #ffd700;
}

/* ==========================================
   16. Footer
   ========================================== */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-link:hover {
    color: #ff6b73;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
}

/* ==========================================
   17. Responsive Design - Additional
   ========================================== */

/* Tablet and below (991px and below) */
@media screen and (max-width: 991px) {
    .legal-item {
        grid-template-columns: 1fr;
    }

    .legal-bubbles {
        flex-direction: row;
    }

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

    .comparison-card.featured {
        transform: scale(1);
    }

    .comparison-card.featured:hover {
        transform: scale(1) translateY(-5px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonial-slider {
        padding: 0 50px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

/* Mobile (767px and below) */
@media screen and (max-width: 767px) {
    .legal-content {
        padding: 25px;
    }

    .legal-bubbles {
        flex-direction: column;
    }

    .info-bubble {
        padding: 15px;
        gap: 10px;
    }

    .bubble-icon {
        width: 24px;
        height: 24px;
    }

    .accordion-item-trigger {
        padding: 20px;
    }

    .accordion-heading {
        font-size: 1rem;
    }

    .accordion-icon {
        width: 24px;
        height: 24px;
    }

    .accordion-item-content p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }

    .testimonial-slider {
        padding: 0 40px;
    }

    .testimony-text {
        font-size: 1.1rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .comparison-card {
        padding: 30px 20px;
    }

    .comparison-title {
        font-size: 1.5rem;
    }

    .comparison-item {
        font-size: 0.95rem;
        padding: 12px 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer {
        padding: 40px 0 20px 0;
    }
}

/* ==========================================
   18. Utility Classes
   ========================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none;
}

/* ==========================================
   Steps Section
   ========================================== */
.steps-section {
    margin: 40px 0;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b73 0%, #ff4f59 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 115, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   Casino Grid and Cards
   ========================================== */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.casino-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.casino-card:hover {
    border-color: #ff6b73;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.casino-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.casino-card h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.casino-card h4 a:hover {
    color: #ff6b73;
}

.license-info {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Document Section
   ========================================== */
.document-section {
    margin: 40px 0;
}

.document-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0 15px 0;
}

.document-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px 0;
}

.checklist-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff6b73;
    margin: 30px 0;
}

.checklist-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.casino-list {
    columns: 2;
    column-gap: 40px;
    list-style-position: inside;
}

.casino-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #333;
    break-inside: avoid;
}

/* ==========================================
   Responsive Design for Content Pages
   ========================================== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .casino-list {
        columns: 1;
    }
    
    .legal-content {
        padding: 25px;
    }
}
