:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary: #F59E0B;
    --accent: #EF4444;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --text: #1F2937;
    --text-light: #6B7280;
    --bg: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}



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

/* Prevent horizontal overflow on body and html */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative; /* Ensure proper positioning context */
}

/* Additional overflow prevention */
body > * {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, #1a4d2e, #2d5a3d);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
}

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs-header {
    background: #f8f9fa;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5rem;
    color: #6b7280;
}

.breadcrumb-list a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.breadcrumb-path {
    color: #1a4d2e;
    font-size: 0.9rem;
}



/* Hero Section */
.hero {
    background: white;
    color: var(--text);
    padding: 3rem 0;
}

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

.hero-frame {
    position: relative;
    background: white;
    border: 3px solid #1a4d2e;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(26, 77, 46, 0.2);
    max-width: 1200px;
    width: 100%;
}

.frame-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a4d2e, #2d5a3d);
    color: white;
    font-size: 2rem;
    padding: 0.5rem;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.hero-frame .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.casino-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1a4d2e;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    width: fit-content;
}

.casino-icon {
    font-size: 2rem;
    color: #90EE90;
}

.casino-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--text);
    margin: 0;
}

.casino-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.checkmark {
    color: #10B981;
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.promo-offer {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #e9ecef;
}

.promo-offer p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.highlight {
    color: #EF4444;
    font-weight: bold;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.no-expiry {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #FFA500, #FF69B4);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
}

.arrow {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1a4d2e, #2d5a3d);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
    border: 2px solid #1a4d2e;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d5a3d, #1a4d2e);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #1a4d2e;
    border: 2px solid #1a4d2e;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1a4d2e, #2d5a3d);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.3);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

/* Special styles for table buttons */
.table .btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 6px;
    min-width: 80px;
    text-align: center;
}

.table .btn-primary.btn-small {
    background: linear-gradient(135deg, #1a4d2e, #2d5a3d);
    box-shadow: 0 2px 8px rgba(26, 77, 46, 0.2);
}

.table .btn-secondary.btn-small {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
    border-radius: 16px;
    font-weight: 700;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
    transition: transform 0.1s;
}

/* Table of Contents */
.toc {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.toc h2 {
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text);
}

.toc-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.toc-link {
    color: #1a4d2e;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #1a4d2e;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.toc-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 77, 46, 0.1), transparent);
    transition: left 0.5s;
}

.toc-link:hover::before {
    left: 100%;
}

.toc-link:hover {
    background: linear-gradient(135deg, #1a4d2e, #2d5a3d);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.3);
    border-color: #1a4d2e;
}

/* Main content */
main {
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Sections */
.section {
    padding: 4rem 0;
    border-bottom: 1px solid #e9ecef;
    background: white;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a4d2e;
}

.section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* Cards */
.card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

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

/* Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.stars {
    color: #F59E0B;
    font-size: 1.5rem;
}

.score {
    font-size: 2rem;
    font-weight: bold;
    color: #1a4d2e;
}

/* Key Facts */
.key-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.fact-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #e9ecef;
}

.fact-card h4 {
    color: #1a4d2e;
    margin-bottom: 0.5rem;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pros {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10B981;
}

.cons {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
}

.pros h3, .cons h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.pros h3 {
    color: #10B981;
}

.cons h3 {
    color: #EF4444;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.pros li:before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.cons li:before {
    content: "✗";
    color: #EF4444;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Banners */
.warning-banner {
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border: 1px solid #F59E0B;
}

.info-banner {
    background: rgba(26, 77, 46, 0.1);
    padding: 1rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border: 1px solid #1a4d2e;
}

.disclaimer-banner {
    background: rgba(239, 68, 68, 0.1);
    padding: 1rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border: 1px solid #EF4444;
}

.responsible-gaming {
    background: rgba(16, 185, 129, 0.1);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border: 1px solid #10B981;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.responsible-gaming h4 {
    margin-bottom: 1rem;
}

.responsible-gaming ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

/* Tabs */
.tabs {
    margin: 2rem 0;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 77, 46, 0.1), transparent);
    transition: left 0.5s;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active {
    border-bottom-color: #1a4d2e;
    color: #1a4d2e;
    font-weight: 700;
}

.tab-btn:hover {
    color: #1a4d2e;
    transform: translateY(-1px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Table container for mobile scrolling */
.table-container {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    margin: 0 -1rem; /* Extend beyond card padding for full scroll */
    padding: 0 1rem; /* Add padding back for content */
    max-width: 100vw; /* Prevent horizontal overflow */
    box-sizing: border-box; /* Include padding in width calculation */
    width: calc(100% + 2rem); /* Ensure full width including margins */
}

/* Ensure table has minimum width for mobile */
.table {
    min-width: 600px; /* Minimum width to prevent squashing */
    width: 100%; /* Ensure table takes full width of container */
}

.table-container::-webkit-scrollbar {
    height: 6px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #1a4d2e;
    border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #2d5a3d;
}

.table th, .table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.table th {
    background: #1a4d2e;
    color: white;
    font-weight: 600;
}

.table tr:nth-child(even) {
    background: #f8f9fa;
}

.table tr:hover {
    background: #f0f0f0;
}

/* Accordion */
.accordion {
    margin: 1rem 0;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a4d2e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 77, 46, 0.1), transparent);
    transition: left 0.5s;
}

.accordion-header:hover::before {
    left: 100%;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-content {
    padding: 1rem;
    display: none;
    border-top: 1px solid #e9ecef;
    background: white;
}

.accordion-content.active {
    display: block;
}

/* Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.provider-card {
    background: white;
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.provider-logo {
    width: 60px;
    height: 60px;
    background: #1a4d2e;
    margin: 0 auto 0.5rem;
    border-radius: var(--radius);
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.slot-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slot-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #1a4d2e, #2d5a3d);
}

.slot-info {
    padding: 1rem;
}

/* KYC Process */
.kyc-process {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.process-steps {
    list-style: none;
    counter-reset: step-counter;
}

.process-steps li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    background: #1a4d2e;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Security List */
.security-list {
    margin: 2rem 0;
    padding-left: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #e9ecef;
}

/* Sort Buttons */
.sort-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.sort-buttons .btn {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #1a4d2e;
    border: 2px solid #1a4d2e;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sort-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 77, 46, 0.1), transparent);
    transition: left 0.5s;
}

.sort-buttons .btn:hover::before,
.sort-buttons .btn.active::before {
    left: 100%;
}

.sort-buttons .btn:hover,
.sort-buttons .btn.active {
    background: linear-gradient(135deg, #1a4d2e, #2d5a3d);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.3);
}

/* Reviews */
.reviews-container {
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-footer {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Review Form */
.review-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-form .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    background: linear-gradient(135deg, #1a4d2e, #2d5a3d);
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
    border: 2px solid #1a4d2e;
}

.review-form .btn:hover {
    background: linear-gradient(135deg, #2d5a3d, #1a4d2e);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.4);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: var(--radius);
    background: white;
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a4d2e;
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #e9ecef;
    transition: all 0.3s ease;
}

.rating-input label:hover {
    color: #F59E0B;
}

/* Author Info */
.author-info {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1a4d2e;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.update-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #1a4d2e, #2d5a3d);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid #1a4d2e;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 35px rgba(26, 77, 46, 0.4);
    background: linear-gradient(135deg, #2d5a3d, #1a4d2e);
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.breadcrumbs {
    margin-bottom: 2rem;
}

.breadcrumbs a {
    color: #1a4d2e;
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    margin-top: 1rem;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-section a:hover {
    color: #1a4d2e;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-frame {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-frame .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .frame-icon {
        font-size: 1.5rem;
        top: -15px;
        padding: 0.4rem;
    }
    
    .casino-logo {
        align-self: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .casino-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .promo-offer {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        display: none;
    }
    
    .toc-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .toc-link {
        width: 100%;
        text-align: center;
        max-width: 300px;
        min-height: 44px; /* Touch-friendly height */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile TOC improvements */
    .toc {
        position: sticky;
        top: 60px; /* Below header */
        z-index: 50;
        background: #f8f9fa;
        border-bottom: 1px solid #e9ecef;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .section h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .key-facts {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .fact-card {
        padding: 1rem;
    }
    
    .table {
        font-size: 0.9rem;
        min-width: 500px; /* Smaller minimum width for mobile */
    }
    
    .table th, .table td {
        padding: 0.75rem 0.5rem;
        word-break: break-word; /* Prevent text overflow */
    }
    
    /* Mobile table container improvements */
    .table-container {
        margin: 0 -1.5rem; /* Extend beyond card padding */
        padding: 0 1.5rem;
        border-radius: 0; /* Remove border radius on mobile for full width */
        width: calc(100% + 3rem); /* Ensure full width including margins */
        max-width: 100vw; /* Prevent viewport overflow */
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .accordion-header {
        padding: 0.75rem;
        font-size: 1rem;
        min-height: 44px; /* Touch-friendly */
        display: flex;
        align-items: center;
    }
    
    .accordion-content {
        padding: 1rem;
        border-top: 1px solid #e9ecef;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    /* Mobile accordion improvements */
    .accordion-item {
        border-radius: 8px;
        margin-bottom: 0.75rem;
    }
    
    /* Mobile tab improvements */
    .tab-buttons {
        border-bottom: 2px solid #e9ecef;
        margin-bottom: 1.5rem;
    }
    
    .tab-btn {
        border-bottom: 3px solid transparent;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .provider-card {
        padding: 0.75rem;
        border-radius: 8px;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .provider-logo {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .slot-image {
        height: 100px;
        border-radius: 8px 8px 0 0;
    }
    
    .slot-info {
        padding: 0.75rem;
        text-align: center;
    }
    
    .slot-info h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .slot-info p {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    /* Mobile grid improvements */
    .providers-grid,
    .slots-grid {
        margin: 1.5rem 0;
    }
    
    .reviews-container {
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .review-form {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .rating-input {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .author-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border-width: 2px;
    }
    
    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Mobile review improvements */
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-date {
        align-self: flex-end;
    }
    
    .review-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0.75rem;
        border-top: 1px solid #e9ecef;
    }
    
    /* Comparison table mobile adaptation */
    .table {
        font-size: 0.85rem;
    }
    
    .table th, .table td {
        padding: 0.5rem 0.25rem;
        word-break: break-word;
    }
    
    .table th {
        font-size: 0.8rem;
    }
    
    .table .btn-small {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        min-width: 60px;
    }
    
    /* Mobile table improvements */
    .table-container {
        border-radius: 8px;
        margin: 0 -1rem; /* Extend beyond card padding */
    }
    
    /* Mobile form improvements */
    .form-group input,
    .form-group textarea,
    .form-group select {
        -webkit-appearance: none;
        border-radius: 8px;
        font-size: 16px; /* Prevent iOS zoom */
    }
    
    /* Mobile rating improvements */
    .rating-input label {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    

    
    /* Mobile footer improvements */
    .footer {
        margin-top: 2rem;
    }
    
    .breadcrumbs {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .breadcrumbs a,
    .breadcrumbs span {
        font-size: 0.85rem;
    }
    

}

/* Medium screens */
@media (max-width: 1024px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .hero-frame {
        max-width: 1000px;
    }
    
    .hero-frame .hero-content {
        gap: 2.5rem;
    }
    
    .key-facts {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .table {
        min-width: 700px;
    }
    
    .table th, .table td {
        padding: 0.6rem 0.4rem;
        word-break: break-word; /* Prevent text overflow */
    }
    
    .table .btn-small {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    /* Medium screen table container */
    .table-container {
        margin: 0 -1rem;
        padding: 0 1rem;
        width: calc(100% + 2rem); /* Ensure full width including margins */
        max-width: 100vw; /* Prevent viewport overflow */
    }
}

/* Large screens */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .hero-frame {
        max-width: 1100px;
    }
    
    /* Large screen table container */
    .table-container {
        margin: 0 -2rem;
        padding: 0 2rem;
        width: calc(100% + 4rem); /* Ensure full width including margins */
        max-width: 100vw; /* Prevent viewport overflow */
    }
}

/* Touch-friendly elements for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .toc-link:hover {
        transform: none;
    }
    
    .card:hover {
        transform: none;
    }
    
    .provider-card:hover {
        transform: none;
    }
    
    .slot-card:hover {
        transform: none;
    }
    
    .review-card:hover {
        transform: none;
    }
    
    .accordion-header:hover {
        transform: none;
    }
    
    .tab-btn:hover {
        transform: none;
    }
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    .nav {
        position: relative;
    }
    
    .logo-text {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }
}

/* Mobile button improvements */
@media (max-width: 768px) {
    .btn {
        min-height: 44px; /* Touch-friendly size */
        padding: 0.75rem 1.5rem;
    }
    
    .btn-large {
        min-height: 48px;
        padding: 1rem 2rem;
    }
    
    .btn-small {
        min-height: 40px;
        padding: 0.5rem 1rem;
    }
}

/* Mobile card improvements */
@media (max-width: 768px) {
    .card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }
    
    .fact-card {
        padding: 1rem;
        border-radius: 8px;
    }
}

/* Mobile form improvements */
@media (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.6rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn, .toc-link, .tab-btn, .accordion-header {
        -webkit-tap-highlight-color: rgba(26, 77, 46, 0.2);
        touch-action: manipulation;
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better mobile spacing */
    .section {
        scroll-margin-top: 80px; /* Account for sticky header */
    }
    
    /* Mobile-specific shadows */
    .card, .provider-card, .slot-card, .review-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    /* Mobile button states */
    .btn:active, .toc-link:active, .tab-btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .section {
        padding: 1.5rem 0;
    }
    
    .hero-frame {
        padding: 1rem;
        margin: 0 0.5rem;
        border-width: 2px;
        border-radius: 15px;
    }
    
    .frame-icon {
        font-size: 1.2rem;
        top: -12px;
        padding: 0.3rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .casino-name {
        font-size: 1.2rem;
    }
    
    .casino-logo-image {
        height: 40px;
    }
    
    .casino-icon {
        font-size: 1.5rem;
    }
    
    .promo-offer {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .toc-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .section h3 {
        font-size: 1.3rem;
    }
    
    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .key-facts {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .fact-card {
        padding: 0.75rem;
    }
    
    .pros-cons {
        gap: 1rem;
    }
    
    .pros, .cons {
        padding: 1.5rem;
    }
    
    .table {
        font-size: 0.8rem;
    }
    
    .table th, .table td {
        padding: 0.5rem 0.25rem;
    }
    
    .tab-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .accordion-header {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .accordion-content {
        padding: 0.75rem;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .provider-card {
        padding: 0.5rem;
    }
    
    .provider-logo {
        width: 40px;
        height: 40px;
    }
    
    .slots-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .slot-image {
        height: 80px;
    }
    
    .slot-info {
        padding: 0.5rem;
    }
    
    .slot-info h4 {
        font-size: 0.9rem;
    }
    
    .slot-info p {
        font-size: 0.8rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .rating-input label {
        font-size: 1.2rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    

    
    /* Small mobile comparison table */
    .table {
        font-size: 0.75rem;
        min-width: 450px; /* Even smaller minimum width for very small screens */
    }
    
    .table th, .table td {
        padding: 0.4rem 0.2rem;
        word-break: break-word; /* Prevent text overflow */
    }
    
    .table th {
        font-size: 0.75rem;
    }
    
    .table .btn-small {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        min-width: 50px;
    }
    
    /* Mobile table container for very small screens */
    .table-container {
        margin: 0 -0.5rem; /* Minimal margin for very small screens */
        padding: 0 0.5rem;
        border-radius: 0;
        width: calc(100% + 1rem); /* Ensure full width including margins */
        max-width: 100vw; /* Prevent viewport overflow */
    }
    
    /* Add scroll indicator for small screens */
    .table-container::after {
        content: '← Swipe →';
        display: block;
        text-align: center;
        padding: 0.5rem;
        color: #1a4d2e;
        font-size: 0.8rem;
        font-weight: 500;
        background: rgba(26, 77, 46, 0.1);
        border-radius: 0 0 var(--radius) var(--radius);
    }
}
