/* ===================================
   FREEBONUS CASINO WEBSITE
   COMPLETE MODULAR CSS ARCHITECTURE
   ================================= */

/* === BASE FOUNDATION === */
@import url('css/base/variables.css');
@import url('css/base/reset.css');
@import url('css/base/typography.css');

/* === LAYOUT MODULES === */
@import url('css/layout/header.css');
@import url('css/layout/hero.css');
@import url('css/layout/footer.css');

/* === COMPONENT MODULES === */
@import url('css/components/buttons.css');
@import url('css/components/badges.css');
@import url('css/components/casino-cards.css');
@import url('css/components/counters.css');
@import url('css/components/forms.css');
@import url('css/components/blog.css');

/* === UTILITY MODULES === */
@import url('css/utilities/casino-utilities.css');
@import url('css/utilities/casino-mapping.css');
@import url('css/utilities/layout.css');
@import url('css/utilities/animations.css');
@import url('css/utilities/legacy-compatibility.css');

/* ===================================
   MAIN CONTENT SECTIONS
   ================================= */

/* Main Content Layout */
.blog-article-main,
.main-content {
    padding: 120px 0 60px 0;
    min-height: 100vh;
}

/* ===================================
   ENHANCED HERO SECTION CONTENT
   ================================= */

/* Enhanced Hero Content Container */
.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Hero Title */
.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}



/* Enhanced Feature Bullet Points */
.hero-features-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.hero-features-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.feature-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-text:hover {
    color: var(--text-light);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.feature-separator {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    opacity: 0.7;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Enhanced Hero Introduction Text */
.hero-intro {
    max-width: 900px;
    margin: 3rem auto 4rem auto;
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.hero-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    text-align: left;
    font-weight: 400;
    opacity: 0.95;
}

/* Responsive Design for Enhanced Hero */
@media (max-width: 1024px) {
    .hero-content {
        padding: 2rem 1rem;
        max-width: 95%;
    }

    .hero-title {
        font-size: clamp(2.2rem, 4.5vw, 3.8rem);
        margin-bottom: 1.25rem;
    }

    .hero-features-text {
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
        margin: 2rem auto;
    }

    .feature-text {
        font-size: 1.2rem;
    }

    .hero-intro {
        margin: 2.5rem auto 3.5rem auto;
        padding: 2rem;
    }

    .hero-intro p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
    }



    .hero-features-text {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.25rem;
        margin: 1.5rem auto 2rem auto;
        border-radius: 25px;
    }

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

    .feature-separator {
        font-size: 1.5rem;
        transform: rotate(90deg);
    }

    .hero-intro {
        margin: 2rem auto 3rem auto;
        padding: 1.5rem;
        border-radius: 15px;
    }

    .hero-intro p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 3.5vw, 2.2rem);
        margin-bottom: 0.75rem;
    }



    .hero-features-text {
        padding: 0.75rem 1rem;
        margin: 1.25rem auto 1.5rem auto;
        gap: 0.75rem;
    }

    .feature-text {
        font-size: 1rem;
    }

    .feature-separator {
        font-size: 1.25rem;
    }

    .hero-intro {
        margin: 1.5rem auto 2.5rem auto;
        padding: 1.25rem;
        border-radius: 12px;
    }

    .hero-intro p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* ===================================
   STATIC TABLE OF CONTENTS
   ================================= */

/* Main TOC Container */
.table-of-contents-static {
    max-width: 700px;
    margin: 2rem auto 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(20, 20, 20, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.table-of-contents-static::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 30, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header Section */
.toc-header-static {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.toc-title-static {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.toc-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.toc-title-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toc-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-muted);
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

/* Navigation Section */
.toc-nav-static {
    position: relative;
    z-index: 1;
}

.toc-list-static {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.toc-item {
    position: relative;
}

.toc-link-static {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover effect background */
.toc-link-static::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

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

.toc-link-static:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(212, 175, 55, 0.15);
    text-decoration: none !important;
}

.toc-link-static:focus {
    outline: 2px solid rgba(212, 175, 55, 0.5);
    outline-offset: 2px;
}

/* Number styling */
.toc-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.toc-link-static:hover .toc-number {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

/* Text styling */
.toc-text {
    flex: 1;
    transition: color 0.3s ease;
}

.toc-link-static:hover .toc-text {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .table-of-contents-static {
        margin: 1.5rem 1rem 0 1rem;
        padding: 1.5rem;
        max-width: none;
    }

    .toc-header-static {
        margin-bottom: 1.5rem;
    }

    .toc-title-static {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .toc-icon {
        font-size: 1.25rem;
    }

    .toc-subtitle {
        font-size: var(--font-size-sm);
    }

    .toc-list-static {
        gap: 0.5rem;
    }

    .toc-link-static {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        font-size: var(--font-size-sm);
    }

    .toc-link-static:hover {
        transform: translateX(4px);
    }

    .toc-number {
        width: 2rem;
        height: 2rem;
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 480px) {
    .table-of-contents-static {
        margin: 1.5rem 0.5rem 0 0.5rem;
        padding: 1rem;
    }

    .toc-title-static {
        font-size: 1.25rem;
    }

    .toc-link-static {
        padding: 0.6rem 0.75rem;
        gap: 0.6rem;
    }

    .toc-number {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.7rem;
    }

    .toc-text {
        font-size: var(--font-size-sm);
        line-height: 1.3;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .toc-link-static,
    .toc-number,
    .toc-link-static::before {
        transition: none;
    }

    .toc-link-static:hover {
        transform: none;
    }

    .toc-link-static:hover .toc-number {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .table-of-contents-static {
        border-color: var(--text-light);
        background: var(--dark-bg);
    }

    .toc-link-static {
        border-color: var(--text-muted);
    }

    .toc-link-static:hover {
        border-color: var(--text-light);
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Casinos Section */
.casinos-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.casinos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 20s ease-in-out infinite;
}

/* Floating Background Elements for Casino Section */
.casinos-section::after {
    content: '🎰 🃏 🎲 💎 🍀 ⭐ 🎯 🔥';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 2rem;
    opacity: 0.02;
    animation: scrollBackground 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scrollBackground {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* Casino Grid */
.casinos-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Search Section */
.search-section {
    padding: 2rem 0;
    background: rgba(26, 26, 26, 0.5);
    margin-top: 80px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Stats Counter */
.stats-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stats-counter:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.counter-icon {
    font-size: 2rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.counter-content h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
    margin: 0;
    font-family: var(--font-heading);
}

.counter-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   ENHANCED SEO CONTENT SECTION
   ================================= */

/* SEO Content Section */
.seo-content-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.seo-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(196, 30, 58, 0.015) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Enhanced Content Card */
.seo-content-section .content-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

/* Enhanced Section Title */
.seo-content-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    line-height: 1.2;
    position: relative;
}

.seo-content-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.8;
}

/* Enhanced Content Text Container */
.content-text {
    position: relative;
    z-index: 1;
}

/* Enhanced Paragraphs */
.content-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: justify;
    opacity: 0.95;
    font-weight: 400;
}

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

/* Enhanced Subheadings */
.content-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem 0;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    position: relative;
    padding-left: 2rem;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.8;
}

.content-text h3:first-of-type {
    margin-top: 2rem;
}

/* Enhanced Links */
.content-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.content-text a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.content-text a:hover {
    color: var(--text-light);
    border-bottom-color: transparent;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.content-text a:hover::before {
    width: 100%;
}

/* Responsive Design for SEO Content */
@media (max-width: 1024px) {
    .seo-content-section {
        padding: 4rem 0;
    }

    .seo-content-section .content-card {
        margin: 0 1rem;
        padding: 2.5rem;
        border-radius: 20px;
    }

    .seo-content-section .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .content-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.8rem;
    }

    .content-text h3 {
        font-size: 1.5rem;
        margin: 2.5rem 0 1.25rem 0;
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 3rem 0;
    }

    .seo-content-section .content-card {
        margin: 0 0.5rem;
        padding: 2rem;
        border-radius: 16px;
    }

    .seo-content-section .section-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 1.5rem;
    }

    .seo-content-section .section-title::after {
        width: 60px;
        height: 2px;
        bottom: -12px;
    }

    .content-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .content-text h3 {
        font-size: 1.3rem;
        margin: 2rem 0 1rem 0;
        padding-left: 1.25rem;
    }

    .content-text h3::before {
        width: 3px;
    }
}

@media (max-width: 480px) {
    .seo-content-section {
        padding: 2rem 0;
    }

    .seo-content-section .content-card {
        margin: 0 0.25rem;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .seo-content-section .section-title {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        margin-bottom: 1.25rem;
    }

    .seo-content-section .section-title::after {
        width: 50px;
        height: 2px;
        bottom: -10px;
    }

    .content-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .content-text h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.75rem 0;
        padding-left: 1rem;
    }

    .content-text h3:first-of-type {
        margin-top: 1.25rem;
    }
}

/* Related Pages Section */
.related-pages-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.related-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
}

/* Clickable Card Wrapper */
.related-page-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.related-page-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.related-page-card:hover {
    background: rgba(26, 26, 26, 0.98);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.related-page-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.related-page-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 100px 0 2rem 0;
    }

    .casinos-section {
        padding: 2rem 0;
    }

    .search-section {
        padding: 1.5rem 0;
        margin-top: 60px;
    }

    .stats-counter {
        padding: 1rem;
        gap: 0.75rem;
    }

    .counter-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .counter-content h3 {
        font-size: 1.5rem;
    }

    .related-pages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .related-page-card {
        padding: 1.5rem;
    }
}

/* ===================================
   ENHANCED STEP-BY-STEP GUIDE
   ================================= */

/* Step Guide Section */
.step-guide-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.step-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 30, 58, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Enhanced Guide Subtitle */
.guide-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0.5rem auto 3.5rem auto;
    max-width: 700px;
    text-align: center;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Steps Container with Enhanced Design */
.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
    z-index: 1;
}

/* Enhanced Step Items */
.step-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(212, 175, 55, 0.1);
}

/* Hover effects */
.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.step-item:hover::before {
    left: 100%;
}

.step-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.15);
}

/* Enhanced Step Number */
.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        0 0 0 3px rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 2;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #ffd700, var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 35px rgba(212, 175, 55, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 0 3px rgba(212, 175, 55, 0.2);
}

.step-item:hover .step-number::before {
    opacity: 0.8;
}

/* Enhanced Step Content */
.step-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.step-item:hover .step-title {
    color: var(--text-light);
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.step-item:hover .step-description {
    opacity: 1;
}

.step-description a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    padding-bottom: 1px;
}

.step-description a:hover {
    color: var(--text-light);
    border-bottom-color: var(--primary-color);
}

.step-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Enhanced Step Icon */
.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover .step-icon {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.step-item:hover .step-icon::before {
    opacity: 0.6;
}



/* Responsive Design for Enhanced Steps */
@media (max-width: 768px) {
    .step-guide-section {
        padding: 3rem 0;
    }

    .guide-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .steps-container {
        gap: 1.5rem;
        padding: 1rem 0;
    }



    .step-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .step-item:hover {
        transform: translateY(-3px);
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto;
        grid-row: 1;
    }

    .step-content {
        grid-row: 2;
        text-align: center;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto;
        grid-row: 3;
    }

    .step-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .step-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .step-item:hover .step-number {
        transform: scale(1.05);
    }

    .step-item:hover .step-icon {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .step-guide-section {
        padding: 2rem 0;
    }

    .guide-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .step-item {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.95rem;
    }
}

/* ===================================
   ENHANCED CASINO COMPARISON TABLE
   ================================= */

/* Enhanced Table Section */
.best-casinos-table-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.best-casinos-table-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(196, 30, 58, 0.015) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Enhanced Content Card */
.best-casinos-table-section .content-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Section Title */
.best-casinos-table-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    line-height: 1.2;
    position: relative;
}

.best-casinos-table-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.8;
}

/* Enhanced Table Wrapper */
.casinos-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(212, 175, 55, 0.1);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

/* Enhanced Table */
.casinos-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

/* Enhanced Table Header */
.casinos-comparison-table thead {
    background: var(--gradient-primary);
    position: relative;
}

.casinos-comparison-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.casinos-comparison-table th {
    padding: 2rem 2.5rem;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Enhanced Table Body */
.casinos-comparison-table tbody tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.casinos-comparison-table tbody tr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
    transition: width 0.4s ease;
    z-index: 0;
}

.casinos-comparison-table tbody tr:hover::before {
    width: 100%;
}

.casinos-comparison-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.01);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.casinos-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.casinos-comparison-table td {
    padding: 2rem 2.5rem;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

/* Enhanced Category Cell */
.category-cell {
    font-weight: 600;
    color: var(--text-light);
    min-width: 320px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-cell i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 2rem;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

.casinos-comparison-table tbody tr:hover .category-cell i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
}

/* Enhanced Casino Cell */
.casino-cell {
    min-width: 300px;
}

.casino-link {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(196, 30, 58, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.casino-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

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

.casino-link:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(196, 30, 58, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.casino-link strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.casino-link:hover strong {
    color: var(--text-light);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    text-decoration: none;
}

/* Ensure no underline effects on casino links */
.casino-link,
.casino-link:hover,
.casino-link:focus,
.casino-link:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

.casino-link strong,
.casino-link:hover strong,
.casino-link:focus strong,
.casino-link:active strong {
    text-decoration: none !important;
    border-bottom: none !important;
}



/* Responsive Design for Enhanced Casino Table */
@media (max-width: 1024px) {
    .best-casinos-table-section {
        padding: 4rem 0;
    }

    .best-casinos-table-section .content-card {
        margin: 0 1rem;
        padding: 2.5rem;
        border-radius: 20px;
    }

    .best-casinos-table-section .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .casinos-comparison-table th,
    .casinos-comparison-table td {
        padding: 1.5rem 2rem;
    }

    .category-cell {
        min-width: 280px;
    }

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

    .casino-link strong {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .best-casinos-table-section {
        padding: 3rem 0;
    }

    .best-casinos-table-section .content-card {
        margin: 0 0.5rem;
        padding: 2rem;
        border-radius: 16px;
    }

    .best-casinos-table-section .section-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 1.5rem;
    }

    .best-casinos-table-section .section-title::after {
        width: 60px;
        height: 2px;
        bottom: -12px;
    }

    .casinos-table-wrapper {
        margin: 1rem -0.5rem 0 -0.5rem;
        border-radius: 12px;
        border-left: none;
        border-right: none;
    }

    .casinos-comparison-table {
        border-radius: 12px;
    }

    .casinos-comparison-table th,
    .casinos-comparison-table td {
        padding: 1.25rem 1rem;
    }

    .casinos-comparison-table th {
        font-size: 1rem;
    }

    .category-cell {
        min-width: 200px;
        gap: 0.75rem;
    }

    .category-cell i {
        font-size: 1.25rem;
        width: 1.5rem;
    }

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

    .casino-link {
        padding: 1.25rem;
        gap: 0.6rem;
        border-radius: 12px;
    }

    .casino-link strong {
        font-size: 1.2rem;
    }


}

@media (max-width: 480px) {
    .best-casinos-table-section {
        padding: 2rem 0;
    }

    .best-casinos-table-section .content-card {
        margin: 0 0.25rem;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .best-casinos-table-section .section-title {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        margin-bottom: 1.25rem;
    }

    .best-casinos-table-section .section-title::after {
        width: 50px;
        height: 2px;
        bottom: -10px;
    }

    .casinos-table-wrapper {
        margin: 1rem -0.25rem 0 -0.25rem;
        border-radius: 8px;
    }

    .casinos-comparison-table {
        border-radius: 8px;
    }

    .casinos-comparison-table th,
    .casinos-comparison-table td {
        padding: 1rem 0.75rem;
    }

    .casinos-comparison-table th {
        font-size: 0.9rem;
    }

    .category-cell {
        min-width: 180px;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }

    .category-cell i {
        font-size: 1.5rem;
        width: auto;
        margin-bottom: 0.25rem;
    }

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

    .casino-link {
        padding: 1rem;
        gap: 0.5rem;
        border-radius: 8px;
    }

    .casino-link strong {
        font-size: 1.1rem;
        text-align: center;
    }
}

/* ===================================
   ENHANCED CROSS-LINKING SECTION
   ================================= */

/* Enhanced Cross-Linking Section */
.cross-linking-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.cross-linking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.025) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 30, 58, 0.015) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Enhanced Content Container */
.cross-linking-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Enhanced Text Section */
.cross-linking-text {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Enhanced Title */
.cross-linking-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    line-height: 1.2;
    position: relative;
}

.cross-linking-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.8;
}

/* Enhanced Description */
.cross-linking-description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
    text-align: left;
}

/* Enhanced Description Links */
.cross-linking-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.cross-linking-description a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.cross-linking-description a:hover {
    color: var(--text-light);
    border-bottom-color: transparent;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.cross-linking-description a:hover::before {
    width: 100%;
}

/* Enhanced Cards Container */
.cross-linking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

/* Enhanced Cross-Link Cards */
.cross-link-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Enhanced Card Background Effect */
.cross-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

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

/* Enhanced Card Hover Effects */
.cross-link-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.2);
    text-decoration: none;
}

/* Enhanced Card Icon */
.cross-card-icon {
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: var(--dark-bg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}



.cross-card-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #ffd700, var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cross-link-card:hover .cross-card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow:
        0 15px 40px rgba(212, 175, 55, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.cross-link-card:hover .cross-card-icon::before {
    opacity: 0.8;
}

/* Enhanced Card Title */
.cross-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cross-link-card:hover .cross-card-title {
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Enhanced Card Description */
.cross-card-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cross-link-card:hover .cross-card-description {
    opacity: 1;
    color: var(--text-light);
}

/* Enhanced Card Arrow */
.cross-card-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Arrow icon centering fix */
.cross-card-arrow i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.cross-card-arrow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cross-link-card:hover .cross-card-arrow {
    color: var(--dark-bg);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(6px) scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Ensure icon stays centered during hover animation */
.cross-link-card:hover .cross-card-arrow i {
    transform: translateX(0);
}

.cross-link-card:hover .cross-card-arrow::before {
    opacity: 0.6;
}

/* Coming Soon State for Cross-Link Cards */
.cross-link-card.coming-soon {
    cursor: default;
    opacity: 0.7;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(20, 20, 20, 0.7) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    pointer-events: none;
}

.cross-link-card.coming-soon .cross-card-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.6) 0%, rgba(184, 148, 31, 0.6) 100%);
    opacity: 0.8;
}

.cross-link-card.coming-soon .cross-card-title {
    color: rgba(212, 175, 55, 0.8);
    opacity: 0.9;
}

.cross-link-card.coming-soon .cross-card-description {
    color: rgba(255, 255, 255, 0.6);
    opacity: 0.8;
}

.cross-link-card.coming-soon .cross-card-arrow {
    background: rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

.cross-link-card.coming-soon .cross-card-arrow i {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design for Enhanced Cross-Linking */
@media (max-width: 1024px) {
    .cross-linking-section {
        padding: 4rem 0;
    }

    .cross-linking-text {
        margin-bottom: 3rem;
        padding: 2.5rem;
        border-radius: 20px;
    }

    .cross-linking-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .cross-linking-description {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .cross-linking-cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .cross-link-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

    .cross-card-icon {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .cross-card-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .cross-card-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cross-linking-section {
        padding: 3rem 0;
    }

    .cross-linking-text {
        margin-bottom: 2.5rem;
        padding: 2rem;
        border-radius: 16px;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .cross-linking-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 1.25rem;
    }

    .cross-linking-title::after {
        width: 60px;
        height: 2px;
        bottom: -12px;
    }

    .cross-linking-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }

    .cross-linking-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding: 0 0.5rem;
    }

    .cross-link-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .cross-link-card:hover {
        transform: translateY(-5px);
    }

    .cross-card-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }

    .cross-card-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .cross-card-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .cross-card-arrow {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .cross-link-card:hover .cross-card-arrow {
        transform: translateX(4px) scale(1.04);
    }

    /* Responsive arrow icon centering */
    .cross-link-card:hover .cross-card-arrow i {
        transform: translateX(0);
    }

    .cross-link-card:hover .cross-card-icon {
        transform: scale(1.1) rotate(5deg);
    }
}

@media (max-width: 480px) {
    .cross-linking-section {
        padding: 2rem 0;
    }

    .cross-linking-text {
        margin-bottom: 2rem;
        padding: 1.5rem;
        border-radius: 12px;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

    .cross-linking-title {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        margin-bottom: 1rem;
    }

    .cross-linking-title::after {
        width: 50px;
        height: 2px;
        bottom: -10px;
    }

    .cross-linking-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .cross-linking-cards {
        gap: 1.25rem;
        margin-top: 2rem;
        padding: 0 0.25rem;
    }

    .cross-link-card {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }

    .cross-card-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .cross-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .cross-card-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .cross-card-arrow {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.1rem;
    }

    /* Small mobile arrow hover fix */
    .cross-link-card:hover .cross-card-arrow {
        transform: translateX(3px) scale(1.02);
    }

    .cross-link-card:hover .cross-card-arrow i {
        transform: translateX(0);
    }
}

/* ===================================
   MODERNIZED PROS & CONS SECTION
   ================================= */

/* Modern Pros & Cons Section */
.pros-cons-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

/* Advanced Background Effects */
.pros-cons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 30, 58, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.005) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Premium Content Card */
.pros-cons-section .content-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(20, 20, 20, 0.99) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 28px;
    padding: 4rem 3rem;
    backdrop-filter: blur(20px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

/* Sophisticated Section Title */
.pros-cons-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow:
        0 0 25px rgba(212, 175, 55, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    position: relative;
    letter-spacing: -0.5px;
}

.pros-cons-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 3px;
    opacity: 0.9;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Premium Introduction */
.pros-cons-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pros-cons-intro p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.9;
    margin: 0;
    opacity: 0.96;
    text-align: left;
    font-weight: 400;
}

/* Enhanced Introduction Links */
.pros-cons-intro a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pros-cons-intro a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.pros-cons-intro a:hover {
    color: var(--text-light);
    border-bottom-color: transparent;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.pros-cons-intro a:hover::before {
    width: 100%;
}

/* Premium Table Wrapper */
.pros-cons-table-wrapper {
    overflow-x: auto;
    margin-top: 4rem;
    border-radius: 24px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(15px);
    position: relative;
}

.pros-cons-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.02) 50%, transparent 70%);
    pointer-events: none;
    border-radius: 24px;
}

/* Clean Table Design - Override Original Styles */
.pros-cons-section .pros-cons-table {
    width: 100% !important;
    border-collapse: collapse !important;
    background: transparent !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    border: none !important;
    position: relative;
    z-index: 1;
}

/* Sophisticated Table Headers */
.pros-cons-table thead {
    position: relative;
}

.pros-cons-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    border-radius: 2px;
}

/* Override Original Header Styles */
.pros-cons-section .pros-cons-table th {
    padding: 3rem 2.5rem !important;
    text-align: center !important;
    font-family: var(--font-heading) !important;
    font-weight: 900 !important;
    font-size: 1.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    position: relative;
    color: var(--dark-bg) !important;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Pros Header */
.pros-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    position: relative;
    overflow: hidden;
}

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

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

.pros-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pros-header:hover::after {
    opacity: 1;
}

/* Premium Cons Header */
.cons-header {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    position: relative;
    overflow: hidden;
}

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

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

.cons-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cons-header:hover::after {
    opacity: 1;
}

.pros-cons-table th i {
    margin-right: 1rem;
    font-size: 1.8rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pros-cons-table th:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Advanced Table Body */
.pros-cons-table tbody tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pros-cons-table tbody tr::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.08));
    transition: left 0.6s ease;
    z-index: 0;
}

.pros-cons-table tbody tr:hover::before {
    left: 100%;
}

.pros-cons-table tbody tr::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.03);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.pros-cons-table tbody tr:hover::after {
    opacity: 1;
}

.pros-cons-table tbody tr:hover {
    transform: scale(1.015);
    box-shadow:
        0 6px 25px rgba(212, 175, 55, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.pros-cons-table tbody tr:last-child {
    border-bottom: none;
}

/* Override Original Table Cell Styles */
.pros-cons-section .pros-cons-table td {
    padding: 2.5rem 3rem !important;
    vertical-align: middle !important;
    position: relative;
    z-index: 1;
    border-right: none !important;
}

.pros-cons-section .pros-cons-table td:first-child {
    border-right: 2px solid rgba(212, 175, 55, 0.25) !important;
}

/* Clean Pros Cell - Override Original */
.pros-cons-section .pros-cell {
    color: var(--text-light) !important;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12) 0%, rgba(16, 185, 129, 0.08) 50%, rgba(52, 211, 153, 0.06) 100%) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pros-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #059669, #10b981, #34d399);
    opacity: 0.8;
    transition: width 0.3s ease;
}

.pros-cons-table tbody tr:hover .pros-cell::before {
    width: 8px;
}

.pros-cell i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
    transition: all 0.3s ease;
}

.pros-cell span {
    font-weight: 600;
    line-height: 1.7;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.pros-cons-table tbody tr:hover .pros-cell i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.6));
}

.pros-cons-table tbody tr:hover .pros-cell span {
    color: var(--text-light);
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

/* Clean Cons Cell - Override Original */
.pros-cons-section .cons-cell {
    color: var(--text-light) !important;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(239, 68, 68, 0.08) 50%, rgba(248, 113, 113, 0.06) 100%) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.cons-cell::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #dc2626, #ef4444, #f87171);
    opacity: 0.8;
    transition: width 0.3s ease;
}

.pros-cons-table tbody tr:hover .cons-cell::before {
    width: 8px;
}

.cons-cell i {
    color: #ef4444;
    margin-right: 1rem;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.4));
    transition: all 0.3s ease;
}

.cons-cell span {
    font-weight: 600;
    line-height: 1.7;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.pros-cons-table tbody tr:hover .cons-cell i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.6));
}

.pros-cons-table tbody tr:hover .cons-cell span {
    color: var(--text-light);
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

/* Premium Responsive Design for Pros & Cons */
@media (max-width: 1024px) {
    .pros-cons-section {
        padding: 4rem 0;
    }

    .pros-cons-section .content-card {
        margin: 0 1rem;
        padding: 3rem 2.5rem;
        border-radius: 24px;
    }

    .pros-cons-section .section-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        margin-bottom: 2.5rem;
    }

    .pros-cons-section .section-title::after {
        width: 80px;
        height: 3px;
        bottom: -16px;
    }

    .pros-cons-intro {
        margin-bottom: 3.5rem;
        padding: 2.5rem;
        border-radius: 20px;
    }

    .pros-cons-intro p {
        font-size: 1.15rem;
        line-height: 1.8;
    }

    .pros-cons-table-wrapper {
        margin-top: 3rem;
        border-radius: 20px;
    }

    .pros-cons-table th {
        padding: 2.5rem 2rem;
        font-size: 1.3rem;
    }

    .pros-cons-table th i {
        font-size: 1.6rem;
        margin-right: 0.8rem;
    }

    .pros-cons-table td {
        padding: 2rem 2.5rem;
    }

    .pros-cell i,
    .cons-cell i {
        font-size: 1.3rem;
    }

    .pros-cell span,
    .cons-cell span {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .pros-cons-section {
        padding: 3rem 0;
    }

    .pros-cons-section .content-card {
        margin: 0 0.5rem;
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

    .pros-cons-section .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.2rem);
        margin-bottom: 2rem;
    }

    .pros-cons-section .section-title::after {
        width: 70px;
        height: 3px;
        bottom: -14px;
    }

    .pros-cons-intro {
        margin-bottom: 3rem;
        padding: 2rem;
        border-radius: 16px;
    }

    .pros-cons-intro p {
        font-size: 1.05rem;
        line-height: 1.7;
        text-align: center;
    }

    .pros-cons-table-wrapper {
        margin: 2.5rem -0.5rem 0 -0.5rem;
        border-radius: 16px;
        border-left: none;
        border-right: none;
    }

    .pros-cons-table {
        border-radius: 16px;
    }

    .pros-cons-table th {
        padding: 2rem 1.5rem;
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .pros-cons-table th i {
        margin-right: 0.6rem;
        font-size: 1.4rem;
    }

    .pros-cons-table td {
        padding: 1.5rem 1.25rem;
    }

    .pros-cons-table tbody tr:hover {
        transform: scale(1.008);
    }

    .pros-cell i,
    .cons-cell i {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }

    .pros-cell span,
    .cons-cell span {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .pros-cons-section {
        padding: 2.5rem 0;
    }

    .pros-cons-section .content-card {
        margin: 0 0.25rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .pros-cons-section .section-title {
        font-size: clamp(1.5rem, 3vw, 1.9rem);
        margin-bottom: 1.5rem;
    }

    .pros-cons-section .section-title::after {
        width: 60px;
        height: 2px;
        bottom: -12px;
    }

    .pros-cons-intro {
        margin-bottom: 2.5rem;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .pros-cons-intro p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .pros-cons-table-wrapper {
        margin: 2rem -0.25rem 0 -0.25rem;
        border-radius: 12px;
    }

    .pros-cons-table {
        border-radius: 12px;
    }

    .pros-cons-table th {
        padding: 1.5rem 1rem;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .pros-cons-table th i {
        margin-right: 0.4rem;
        font-size: 1.2rem;
    }

    .pros-cons-table td {
        padding: 1.25rem 1rem;
    }

    .pros-cell i,
    .cons-cell i {
        font-size: 1.1rem;
        margin-right: 0.6rem;
    }

    .pros-cell span,
    .cons-cell span {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* ===================================
   CASINO FEATURES SECTION
   ================================= */

/* Main Section */
.casino-features-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Enhanced Content Card */
.casino-features-section .content-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.casino-features-section .content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

/* Section Title */
.casino-features-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
}

/* Features Introduction */
.features-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Bonus Info Grid */
.bonus-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Bonus Info Cards */
.bonus-info-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bonus-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bonus-info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bonus-info-card:hover::before {
    opacity: 1;
}

/* Bonus Info Icons */
.bonus-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.bonus-info-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), #b8941f, var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bonus-info-card:hover .bonus-info-icon {
    transform: scale(1.1);
    box-shadow:
        0 12px 35px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.bonus-info-card:hover .bonus-info-icon::before {
    opacity: 1;
}

.bonus-info-icon i {
    font-size: 2rem;
    color: var(--dark-bg);
    font-weight: 600;
}

/* Bonus Info Titles */
.bonus-info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transition: color 0.3s ease;
}

.bonus-info-card:hover .bonus-info-title {
    color: #f4e4a6;
}

/* Bonus Info Text */
.bonus-info-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.bonus-info-card:hover .bonus-info-text {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .casino-features-section {
        padding: 4rem 0;
    }

    .casino-features-section .content-card {
        margin: 0 1rem;
        padding: 2.5rem;
        border-radius: 20px;
    }

    .casino-features-section .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .features-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

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

    .bonus-info-card {
        padding: 2rem;
        border-radius: 16px;
    }

    .bonus-info-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .bonus-info-icon i {
        font-size: 1.8rem;
    }

    .bonus-info-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    .casino-features-section {
        padding: 3rem 0;
    }

    .casino-features-section .content-card {
        margin: 0 0.5rem;
        padding: 2rem;
        border-radius: 16px;
    }

    .casino-features-section .section-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 1.25rem;
    }

    .features-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

    .bonus-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .bonus-info-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .bonus-info-card:hover {
        transform: translateY(-4px);
    }

    .bonus-info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .bonus-info-icon i {
        font-size: 1.5rem;
    }

    .bonus-info-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .bonus-info-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .casino-features-section {
        padding: 2.5rem 0;
    }

    .casino-features-section .content-card {
        margin: 0 0.25rem;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .casino-features-section .section-title {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        margin-bottom: 1rem;
    }

    .features-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .bonus-info-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .bonus-info-card {
        padding: 1.25rem;
        border-radius: 10px;
    }

    .bonus-info-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .bonus-info-icon i {
        font-size: 1.25rem;
    }

    .bonus-info-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .bonus-info-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ===================================
   FAQ SECTION STYLES
   ================================= */

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.5);
}

.faq-question-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.faq-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-question {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
    opacity: 1;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-question-wrapper {
        padding: 1.5rem;
    }

    .faq-question-content {
        gap: 1rem;
    }

    .faq-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer-wrapper {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

/* ===================================
   ENHANCED MOBILE NAVIGATION
   ================================= */

/* Enhanced Hamburger Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 0.75rem;
        z-index: 1001;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(26, 26, 26, 0.8);
        border: 1px solid rgba(212, 175, 55, 0.3);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .hamburger::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        transition: left 0.5s ease;
    }

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

    .hamburger:hover {
        background: rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.5);
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: var(--primary-color);
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 3px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        position: relative;
        z-index: 1;
    }

    .hamburger.active {
        background: rgba(212, 175, 55, 0.2);
        border-color: var(--primary-color);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: #ffffff;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -7px);
        background: #ffffff;
    }

    /* Enhanced Mobile Navigation Overlay */
    .nav {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        z-index: 1000;
        padding-top: 80px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: none;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .nav-list {
        flex-direction: column !important;
        gap: 0.75rem;
        text-align: center;
        width: 100%;
        max-width: 420px;
        padding: 0 1rem;
        animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        position: relative;
        z-index: 1001; /* Ensure nav-list is above nav overlay */
    }

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

    .nav-item {
        width: 100%;
        opacity: 0;
        animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        position: relative;
        z-index: 1002; /* Ensure nav-items are above nav-list */
    }

    /* Mobile Dropdown Z-Index Fixes */
    .dropdown {
        position: relative;
        z-index: 1002; /* Ensure dropdown container is above nav overlay */
    }

    .dropdown-toggle {
        cursor: pointer;
        position: relative;
        z-index: 1003; /* Ensure toggle is clickable */
    }

    .dropdown-menu {
        z-index: 1004 !important; /* Higher than mobile nav overlay */
        position: relative !important; /* Ensure z-index takes effect */
        background: rgba(15, 15, 15, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
        border-radius: 10px !important;
        margin-top: 0.75rem !important;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 350px !important;
        padding: 0.75rem 0 !important;
        border-color: rgba(212, 175, 55, 0.5) !important;
    }

    .dropdown-menu a {
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        padding: 1rem 2rem !important;
        margin: 0.25rem 1rem !important;
        border-left: 3px solid rgba(212, 175, 55, 0.4) !important;
        border-radius: 8px !important;
        background: rgba(26, 26, 26, 0.4) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        color: #ffffff !important;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus {
        background: rgba(212, 175, 55, 0.1) !important;
        border-left-color: var(--primary-color) !important;
        color: #ffffff !important;
        transform: translateX(8px) !important;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2) !important;
    }

    .dropdown-toggle::after {
        content: '▼' !important;
        font-size: 0.8rem !important;
        margin-left: 0.5rem !important;
        transition: transform 0.3s ease !important;
        color: var(--primary-color) !important;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg) !important;
    }

    .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .nav-item:nth-child(6) { animation-delay: 0.35s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-list a {
        font-size: 1.2rem !important;
        font-weight: 600;
        padding: 1.25rem 2rem !important;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: rgba(26, 26, 26, 0.6);
        border: 1px solid rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .nav-list a:hover,
    .nav-list a:focus {
        background: rgba(212, 175, 55, 0.15) !important;
        color: #ffffff !important;
        transform: translateY(-3px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow:
            0 8px 25px rgba(212, 175, 55, 0.3),
            0 0 20px rgba(212, 175, 55, 0.2);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
}
