/* Variables */
:root {
    --primary-red: #DC2626;
    --primary-gold: #F59E0B;
    --accent-yellow: #FDE047;
    --dark-red: #991B1B;
    --light-gold: #FEF3C7;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gray-800);
}

.logo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.brand:hover .logo {
    transform: scale(1.1);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--gray-600);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, var(--primary-gold) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>');
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-gold);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-yellow));
    color: var(--gray-900);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Table of Contents */
.table-of-contents {
    padding: 4rem 0;
    background: var(--white);
}

.table-of-contents h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 3rem;
    position: relative;
}

.table-of-contents h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    border-radius: 2px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.toc-item:hover {
    background: var(--white);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.toc-number {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-gold));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 60px;
    text-align: center;
}

.toc-title {
    font-weight: 600;
    flex: 1;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

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

.content-section h2 {
    font-size: 2.2rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
}

.content-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-red), var(--primary-gold));
    border-radius: 2px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Cards */
.fact-card, .warning-card, .info-card {
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.fact-card {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-left: 4px solid #2196F3;
}

.warning-card {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-left: 4px solid #FF9800;
}

.info-card {
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
    border-left: 4px solid #9C27B0;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.casino-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.casino-logo {
    width: 60px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* License Tags */
.license-tag {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.license-tag.mf {
    background: linear-gradient(45deg, #4CAF50, #81C784);
    color: var(--white);
}

.license-tag.curacao {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    color: var(--white);
}

/* Bonus Tags */
.bonus-tag {
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-yellow));
    color: var(--gray-900);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Metric Tags */
.metric {
    padding: 0.3rem 0.6rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
}

.metric.games {
    background: linear-gradient(45deg, #E91E63, #F06292);
    color: var(--white);
}

.metric.payout {
    background: linear-gradient(45deg, #2196F3, #64B5F6);
    color: var(--white);
}

.metric.support {
    background: linear-gradient(45deg, #9C27B0, #BA68C8);
    color: var(--white);
}

.metric.payments {
    background: linear-gradient(45deg, #607D8B, #90A4AE);
    color: var(--white);
}

/* CTA Buttons */
.cta-button, .review-cta {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.cta-button.primary, .review-cta.primary {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    color: var(--white);
}

.cta-button.secondary, .review-cta.secondary {
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-yellow));
    color: var(--gray-900);
}

.cta-button:hover, .review-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Grid Layouts */
.criteria-grid, .security-grid, .games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.criteria-card, .security-card, .game-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
}

.criteria-card:hover, .security-card:hover, .game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.criteria-card h4, .security-card h4, .game-card h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Casino Review Cards */
.casino-review-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.casino-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.casino-screenshot {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.casino-review-content {
    padding: 2rem;
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.review-logo {
    width: 60px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 8px;
    padding: 0.5rem;
    object-fit: contain;
}

.casino-header h3 {
    font-size: 1.8rem;
    color: var(--gray-900);
    flex: 1;
}

.license-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.license-badge.legal {
    background: linear-gradient(45deg, #4CAF50, #81C784);
    color: var(--white);
}

.license-badge.offshore {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    color: var(--white);
}

.casino-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.spec-value {
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 16px;
    font-size: 0.9rem;
    text-align: center;
}

.spec-value.license {
    background: linear-gradient(45deg, #4CAF50, #81C784);
    color: var(--white);
}

.spec-value.bonus {
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-yellow));
    color: var(--gray-900);
}

.spec-value.games {
    background: linear-gradient(45deg, #E91E63, #F06292);
    color: var(--white);
}

.spec-value.payout {
    background: linear-gradient(45deg, #2196F3, #64B5F6);
    color: var(--white);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 12px;
}

.pros {
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
    border-left: 4px solid #4CAF50;
}

.cons {
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    border-left: 4px solid #F44336;
}

.pros h5 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.cons h5 {
    color: #C62828;
    margin-bottom: 0.5rem;
}

.review-cta {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

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

.point-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.point-card h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Payment and Timing Info */
.payment-info, .timing-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-gold);
}

.payment-info h4, .timing-info h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    margin: 0.5rem 0;
    color: var(--gray-300);
}

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

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

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

.footer-bottom p {
    margin: 0.5rem 0;
    color: var(--gray-400);
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
}

/* Detailed Comparison Table Responsive */
@media (max-width: 1200px) {
    .detailed-comparison-table {
        font-size: 0.8rem;
    }

    .sub-header {
        font-size: 0.7rem;
        padding: 0.6rem 0.3rem;
        min-width: 70px;
    }

    .category-header {
        font-size: 0.85rem;
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 1024px) {
    .detailed-comparison-table {
        font-size: 0.75rem;
    }

    .detailed-comparison-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.75rem;
    }

    .casino-name-wrapper {
        gap: 0.3rem;
    }

    .table-logo {
        width: 50px;
        height: 30px;
    }

    .casino-name {
        font-size: 0.9rem;
    }

    .legal-badge, .offshore-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .comparison-table-wrapper {
        font-size: 0.85rem;
    }

    .casino-cell {
        min-width: 150px;
    }

    .casino-logo {
        width: 50px;
        height: 35px;
    }

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

    .criteria-grid, .security-grid, .games-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .casino-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .casino-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .nav-container {
        padding: 0 15px;
    }

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

    .casino-specs {
        grid-template-columns: 1fr;
    }

    .table-of-contents h2 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }
}

/* Rating Methodology Styles */
.rating-methodology {
    margin: 3rem 0;
}

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

.rating-category-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
}

.rating-category-card.primary-category {
    border-top-color: var(--primary-red);
    background: linear-gradient(135deg, #FEF2F2, #FECACA);
}

.rating-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.category-header h4 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin: 0;
}

.weight-badge {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-gold));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.criteria-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
}

.criteria-label {
    flex: 1;
    font-weight: 500;
    color: var(--gray-700);
}

.criteria-points {
    background: var(--primary-gold);
    color: var(--gray-900);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Rating Scale Styles */
.rating-scale-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 3rem 0;
}

.rating-scale-info h4 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.scale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.scale-item {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.scale-item.excellent {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    border: 2px solid #10B981;
}

.scale-item.very-good {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    border: 2px solid #3B82F6;
}

.scale-item.good {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border: 2px solid #F59E0B;
}

.scale-item.average {
    background: linear-gradient(135deg, #FED7AA, #FDBA74);
    border: 2px solid #EA580C;
}

.scale-item.below-average {
    background: linear-gradient(135deg, #FECACA, #FCA5A5);
    border: 2px solid #DC2626;
}

.scale-range {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.scale-label {
    font-weight: 600;
    color: var(--gray-800);
    display: block;
    margin-bottom: 0.5rem;
}

.scale-description {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Process Cards */
.evaluation-process {
    margin: 3rem 0;
}

.evaluation-process h4 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.process-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-gold);
}

.process-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.process-card h5 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Detailed Comparison Table */
.comprehensive-comparison {
    margin: 3rem 0;
}

.detailed-comparison-table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    table-layout: auto;
}

.detailed-comparison-table th {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 1rem 0.8rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detailed-comparison-table .casino-column {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    min-width: 180px;
}

.category-header {
    font-size: 0.95rem;
    font-weight: 700;
}

.legal-category { background: linear-gradient(135deg, #059669, #047857); }
.security-category { background: linear-gradient(135deg, #DC2626, #991B1B); }
.gaming-category { background: linear-gradient(135deg, #7C3AED, #5B21B6); }
.payment-category { background: linear-gradient(135deg, #F59E0B, #D97706); }
.support-category { background: linear-gradient(135deg, #0EA5E9, #0284C7); }

.legal-sub { background: linear-gradient(135deg, #059669, #047857); }
.security-sub { background: linear-gradient(135deg, #DC2626, #991B1B); }
.gaming-sub { background: linear-gradient(135deg, #7C3AED, #5B21B6); }
.payment-sub { background: linear-gradient(135deg, #F59E0B, #D97706); }
.support-sub { background: linear-gradient(135deg, #0EA5E9, #0284C7); }

.sub-header {
    font-size: 0.75rem;
    padding: 0.8rem 0.4rem;
    background: rgba(0, 0, 0, 0.15);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    min-width: 80px;
}

.detailed-comparison-table td {
    padding: 1rem 0.8rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    font-size: 0.85rem;
}

.casino-name-cell {
    text-align: left !important;
    min-width: 180px;
}

.casino-name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.table-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
    background: var(--gray-800);
    border-radius: 6px;
    padding: 0.3rem;
}

.casino-name {
    font-weight: 600;
    color: var(--gray-900);
}

.legal-badge, .offshore-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    align-self: flex-start;
}

.legal-badge {
    background: linear-gradient(45deg, #10B981, #059669);
    color: var(--white);
}

.offshore-badge {
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: var(--white);
}

.detailed-comparison-table .excellent {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    color: #065F46;
    font-weight: 600;
}

.detailed-comparison-table .good {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    color: #1E40AF;
    font-weight: 600;
}

.detailed-comparison-table .average {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
    font-weight: 600;
}

.detailed-comparison-table .warning {
    background: linear-gradient(135deg, #FED7AA, #FDBA74);
    color: #9A3412;
    font-weight: 600;
}

.detailed-comparison-table .negative {
    background: linear-gradient(135deg, #FECACA, #FCA5A5);
    color: #991B1B;
    font-weight: 600;
}

.detailed-comparison-table .positive {
    background: linear-gradient(135deg, #BBF7D0, #86EFAC);
    color: #14532D;
    font-weight: 700;
}

/* Comparison Summary */
.comparison-summary {
    margin: 3rem 0;
}

.comparison-summary h4 {
    color: var(--primary-red);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.summary-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.summary-card.advantages {
    border-left: 4px solid #10B981;
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
}

.summary-card.offshore-advantages {
    border-left: 4px solid #3B82F6;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.summary-card.risks {
    border-left: 4px solid #DC2626;
    background: linear-gradient(135deg, #FEF2F2, #FECACA);
}

.summary-card.recommendations {
    border-left: 4px solid #F59E0B;
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
}

.summary-card h5 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.summary-card ul {
    list-style: none;
    padding: 0;
}

.summary-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.summary-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 0.8rem;
}

/* Score Cards */
.scoring-breakdown {
    margin: 4rem 0;
}

.scoring-breakdown h4 {
    color: var(--primary-red);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.final-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.score-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.score-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.score-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border-bottom: 2px solid var(--gray-200);
}

.score-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
    background: var(--gray-800);
    border-radius: 8px;
    padding: 0.5rem;
}

.score-info {
    flex: 1;
}

.score-info h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    color: var(--gray-900);
}

.license-info {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.total-score {
    font-size: 2rem;
    font-weight: 800;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 100px;
}

.excellent-score {
    background: linear-gradient(45deg, #10B981, #059669);
    color: var(--white);
}

.good-score {
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: var(--white);
}

.score-breakdown {
    padding: 2rem;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.score-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    margin-left: 1rem;
    position: relative;
    height: 24px;
    background: var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(45deg, #10B981, #059669);
    border-radius: 12px;
    transition: width 0.3s ease;
}

.score-fill.warning {
    background: linear-gradient(45deg, #F59E0B, #D97706);
}

.score-text {
    position: absolute;
    right: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-800);
}

/* Responsible Gambling Styles */
.responsible-gambling-content {
    margin: 3rem 0;
}

.warning-signs-section {
    margin-bottom: 4rem;
}

.warning-signs-section h4 {
    color: var(--primary-red);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.warning-signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.warning-category {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.warning-category:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.warning-category.financial {
    border-left: 4px solid #DC2626;
    background: linear-gradient(135deg, #FEF2F2, #FECACA);
}

.warning-category.behavioral {
    border-left: 4px solid #F59E0B;
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
}

.warning-category.emotional {
    border-left: 4px solid #7C3AED;
    background: linear-gradient(135deg, #F3E8FF, #E9D5FF);
}

.warning-category.social {
    border-left: 4px solid #0EA5E9;
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
}

.warning-category h5 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.warning-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.warning-list li:last-child {
    border-bottom: none;
}

.warning-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

/* Prevention Tools */
.prevention-tools-section {
    margin: 4rem 0;
}

.prevention-tools-section h4 {
    color: var(--primary-red);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.tool-category {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.tool-category h5 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-gold);
}

.tool-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tool-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.tool-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.tool-card h6 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tool-example {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid var(--gray-200);
}

.example-label {
    font-weight: 600;
    color: var(--gray-600);
    margin-right: 0.5rem;
}

.example-value {
    font-weight: 700;
    color: var(--primary-red);
}

/* Support Resources */
.support-resources-section {
    margin: 4rem 0;
}

.support-resources-section h4 {
    color: var(--primary-red);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.support-category {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.support-category h5 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-gold);
}

.support-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.support-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.support-card h6 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: 600;
    color: var(--gray-600);
}

.contact-value {
    font-weight: 700;
    color: var(--primary-red);
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.features-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Prevention Strategies */
.prevention-strategies {
    margin: 4rem 0;
}

.prevention-strategies h4 {
    color: var(--primary-red);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.strategy-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.strategy-card.budgeting {
    border-top: 4px solid #10B981;
}

.strategy-card.time-management {
    border-top: 4px solid #3B82F6;
}

.strategy-card.emotional {
    border-top: 4px solid #7C3AED;
}

.strategy-card.social {
    border-top: 4px solid #F59E0B;
}

.strategy-card h5 {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    color: var(--primary-red);
    margin: 0;
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
    border-bottom: 1px solid var(--gray-200);
}

.strategy-content {
    padding: 2rem;
}

.strategy-tips h6 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.strategy-tips ul {
    list-style: none;
    padding: 0;
}

.strategy-tips li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.strategy-tips li:last-child {
    border-bottom: none;
}

.strategy-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.budget-calculator, .time-tracking, .emotional-tips, .social-support {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.budget-calculator h6, .time-tracking h6, .emotional-tips h6, .social-support h6 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.example-calculation {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.calc-label {
    font-weight: 600;
    color: var(--gray-600);
    margin-right: 0.5rem;
}

.calc-value {
    font-weight: 700;
    color: var(--primary-red);
}

/* Legal Protection */
.legal-protection {
    margin: 4rem 0;
}

.legal-protection h4 {
    color: var(--primary-red);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.legal-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-gold);
}

.legal-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.legal-card h5 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.legal-card ul {
    list-style: none;
    padding: 0;
}

.legal-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.legal-card li:last-child {
    border-bottom: none;
}

.legal-card li::before {
    content: '⚖';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

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

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

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

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

/* Print Styles */
@media print {
    .navbar,
    .hero-cta,
    .cta-button,
    .review-cta {
        display: none;
    }

    .hero {
        background: var(--white);
        color: var(--gray-900);
        min-height: auto;
        padding: 2rem;
    }

    .hero-title,
    .hero-description {
        color: var(--gray-900);
    }

    * {
        box-shadow: none !important;
    }
}