/**
 * BJ88NOW Theme Styles
 * Modern Dark Theme for Casino Reviews
 */

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--sidebar);
}

/* Top Bar */
.header-top {
    border-bottom: 1px solid var(--sidebar-border);
    background: var(--sidebar);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.75rem;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.header-top-left .separator {
    display: none;
}

@media (min-width: 640px) {
    .header-top-left .separator,
    .header-top-left .hide-mobile {
        display: inline;
    }
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-top-right a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.header-top-right a:hover {
    color: var(--sidebar-foreground);
}

/* Main Navigation */
.header-nav {
    border-bottom: 1px solid var(--sidebar-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.logo-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    color: var(--sidebar-foreground);
}

.logo-tagline {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

/* Desktop Menu */
.desktop-menu {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-menu {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
}

.nav-menu {
    gap: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sidebar-foreground);
    border-radius: var(--radius);
    background: transparent;
    border: none;
    transition: background 0.2s;
}

.nav-link:hover {
    background: var(--sidebar-accent);
}

.nav-link .icon {
    width: 1rem;
    height: 1rem;
    opacity: 0.6;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    padding: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: all 0.2s;
}

.nav-dropdown.is-open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: var(--muted);
}

/* Nav Actions */
.nav-actions {
    gap: 0.75rem;
}

.search-toggle {
    padding: 0.5rem;
}

.search-toggle .icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: var(--sidebar-foreground);
}

.mobile-menu-toggle .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.site-header.menu-open .mobile-menu-toggle .menu-icon {
    display: none;
}

.site-header.menu-open .mobile-menu-toggle .close-icon {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    border-bottom: 1px solid var(--sidebar-border);
    background: var(--sidebar);
}

.mobile-menu.is-open {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-content {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sidebar-foreground);
    border-radius: var(--radius);
    transition: background 0.2s;
}

.mobile-nav-link:hover {
    background: var(--sidebar-accent);
}

.mobile-nav-group {
    margin-top: 0.5rem;
}

.mobile-nav-label {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.mobile-nav-cta {
    padding-top: 1rem;
}

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

.site-footer {
    border-top: 1px solid var(--sidebar-border);
    background: var(--sidebar);
}

/* Main Footer */
.footer-main {
    padding: 3rem 0 4rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Footer Brand */
.footer-brand {
    max-width: 20rem;
}

.footer-brand .site-logo {
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    color: var(--sidebar-foreground);
    background: var(--sidebar-accent);
    border-radius: 9999px;
}

.trust-badge .icon {
    width: 0.875rem;
    height: 0.875rem;
}

.trust-badge .icon.accent { color: var(--accent); }
.trust-badge .icon.gold { color: var(--gold); }
.trust-badge .icon.primary { color: var(--primary); }

/* Footer Links */
.footer-links h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sidebar-foreground);
}

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

.footer-links li {
    margin-top: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--sidebar-foreground);
}

/* Responsible Gambling */
.footer-responsible {
    border-top: 1px solid var(--sidebar-border);
    padding: 1.5rem 0;
}

.responsible-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.responsible-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--sidebar-foreground);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.responsible-divider {
    width: 1px;
    height: 2rem;
    background: var(--sidebar-border);
}

.responsible-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sidebar-foreground);
}

.responsible-warning {
    max-width: 40rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--sidebar-border);
    padding: 1rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.legal-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.legal-links a:hover {
    color: var(--sidebar-foreground);
}

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

.hero-section {
    position: relative;
    background: var(--sidebar);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--sidebar) 0%, rgba(20, 20, 40, 0.95) 100%);
}

.hero-content {
    position: relative;
    padding: 4rem 0 6rem;
}

@media (min-width: 1024px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
    }
}

/* Hero Left */
.hero-left {
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .hero-left {
        margin-bottom: 0;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sidebar-foreground);
    background: rgba(42, 42, 74, 0.5);
    border: 1px solid var(--sidebar-border);
    border-radius: 9999px;
}

.hero-badge .icon {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--sidebar-foreground);
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title .accent {
    display: block;
    margin-top: 0.5rem;
    color: var(--accent);
}

.hero-description {
    max-width: 32rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Search */
.hero-search {
    max-width: 28rem;
    margin-top: 2rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--sidebar-accent);
    border: 1px solid var(--sidebar-border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.search-box-inner {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0.75rem;
    padding: 0 1rem;
}

.search-box .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
}

.search-box input {
    flex: 1;
    padding: 0.875rem 0;
    font-size: 1rem;
    color: var(--sidebar-foreground);
    background: transparent;
    border: none;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-box .btn {
    margin: 0.375rem;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item .stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--sidebar-foreground);
}

.stat-item .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Right - Rankings */
.hero-rankings {
    background: rgba(42, 42, 74, 0.3);
    border: 1px solid var(--sidebar-border);
    border-radius: 1rem;
    padding: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-rankings {
        padding: 2rem;
    }
}

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

.rankings-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sidebar-foreground);
}

.rankings-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
}

.rankings-link:hover {
    text-decoration: underline;
}

/* Ranking Item */
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--sidebar-accent);
    border: 1px solid transparent;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.ranking-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(42, 42, 74, 0.8);
}

.ranking-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-weight: 700;
    color: var(--sidebar-foreground);
    background: var(--sidebar-border);
    border-radius: 0.5rem;
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ranking-name {
    font-weight: 600;
    color: var(--sidebar-foreground);
}

.ranking-tag {
    padding: 0.125rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--accent);
    background: rgba(16, 185, 129, 0.2);
    border-radius: 9999px;
}

.ranking-bonus {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.ranking-rating {
    text-align: right;
}

.ranking-rating-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent);
}

.ranking-rating-max {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Trust Indicators Bar */
.trust-bar {
    border-top: 1px solid var(--sidebar-border);
    background: rgba(42, 42, 74, 0.3);
    padding: 1.5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
}

.trust-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.trust-icon.primary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.trust-icon.accent {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}

.trust-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.trust-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.trust-text .trust-title {
    font-weight: 600;
    color: var(--sidebar-foreground);
}

.trust-text .trust-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FEATURED CASINOS SECTION
   ============================================ */

.featured-section {
    padding: 2.5rem 0 3rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1.5rem;
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 1.75rem;
    }
}

.section-description {
    max-width: 40rem;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.section-header .btn {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .section-header .btn {
        margin-top: 0;
        flex-shrink: 0;
    }
}

/* Methodology Note */
.methodology-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(42, 42, 74, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.methodology-note .icon {
    width: 0.875rem;
    height: 0.875rem;
    margin-top: 0.125rem;
    color: var(--muted-foreground);
    flex-shrink: 0;
}

.methodology-note p {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

.methodology-note strong {
    color: var(--foreground);
}

.methodology-note a {
    font-weight: 500;
    color: var(--primary);
}

.methodology-note a:hover {
    text-decoration: underline;
}

/* Casino Card */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.casino-card {
    position: relative;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.casino-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.casino-card-inner {
    display: grid;
    gap: 0.75rem;
    padding: 0.875rem;
}

@media (min-width: 768px) {
    .casino-card-inner {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1rem;
        padding: 0.875rem 1rem;
    }
}

/* Casino Rank & Logo */
.casino-identity {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.casino-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-foreground);
    background: var(--primary);
    border-radius: 0.5rem;
}

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
}

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

.casino-logo-placeholder {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--muted-foreground);
}

.casino-mobile-info {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .casino-mobile-info {
        display: none;
    }
}

.casino-mobile-info .casino-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
}

.casino-mobile-info .casino-rating-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.125rem;
}

.casino-mobile-info .rating-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.casino-mobile-info .rating-count {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Casino Info */
.casino-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.casino-desktop-title {
    display: none;
}

@media (min-width: 768px) {
    .casino-desktop-title {
        display: block;
    }
}

.casino-desktop-title .title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.casino-desktop-title .casino-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
}

.casino-desktop-title .casino-rating-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.125rem;
}

.casino-desktop-title .rating-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.casino-desktop-title .rating-count {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Features */
.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    color: var(--foreground);
    background: var(--muted);
    border-radius: 9999px;
}

.feature-tag .icon {
    width: 0.625rem;
    height: 0.625rem;
    color: var(--accent);
}

/* Payment Methods */
.casino-payments {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.casino-payments .label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.payment-tags {
    display: flex;
    gap: 0.1875rem;
}

.payment-tag {
    padding: 0.0625rem 0.375rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--secondary-foreground);
    background: var(--secondary);
    border-radius: var(--radius-sm);
}

/* Casino CTA */
.casino-cta {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

@media (min-width: 768px) {
    .casino-cta {
        width: 11rem;
    }
}

.bonus-box {
    padding: 0.5rem 0.625rem;
    text-align: center;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
}

.bonus-label {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
}

.bonus-value {
    margin-top: 0.125rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--accent);
}

.bonus-terms {
    margin-top: 0.125rem;
    font-size: 0.625rem;
    color: var(--muted-foreground);
}

/* Compact buttons in casino card */
.casino-cta .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
}

.casino-cta .btn .icon {
    width: 0.75rem;
    height: 0.75rem;
}

/* ============================================
   GAME CATEGORIES SECTION
   ============================================ */

.categories-section {
    padding: 2rem 0 2.5rem;
    background: rgba(42, 42, 74, 0.3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header-center {
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-grid {
    display: grid;
    gap: 0.625rem;
}

@media (min-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.category-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.category-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.category-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.category-icon.red { background: rgba(239, 68, 68, 0.1); color: var(--destructive); }
.category-icon.gray { background: rgba(160, 160, 176, 0.1); color: var(--muted-foreground); }
.category-icon.primary { background: rgba(99, 102, 241, 0.1); color: var(--primary); }
.category-icon.accent { background: rgba(16, 185, 129, 0.1); color: var(--accent); }
.category-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.category-content {
    flex: 1;
}

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

.category-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.category-card:hover .category-arrow {
    transform: translateX(2px);
    color: var(--primary);
}

.category-arrow {
    width: 1rem;
    height: 1rem;
    color: var(--muted-foreground);
    transition: all 0.2s;
}

.category-description {
    margin-top: 0.125rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--muted-foreground);
}

.category-count {
    display: inline-flex;
    margin-top: 0.375rem;
    padding: 0.0625rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--secondary-foreground);
    background: var(--secondary);
    border-radius: 9999px;
}

/* ============================================
   REVIEW PAGE STYLES
   ============================================ */

/* Review Hero */
.review-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.review-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.review-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    transform: translate(50%, -50%);
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.review-hero-content {
    position: relative;
    padding: 2.5rem 0 3.5rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #94a3b8;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    color: #475569;
}

.breadcrumb .current {
    color: var(--accent);
}

/* Review Header */
.review-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .review-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.review-main-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .review-main-info {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Review Logo */
.review-logo-container {
    position: relative;
}

.review-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--accent), #059669);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
    overflow: hidden;
}

.review-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-logo-placeholder {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.review-verified {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.review-verified .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

/* Review Details */
.review-details {
    flex: 1;
}

.review-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
}

.review-badge .icon {
    width: 0.75rem;
    height: 0.75rem;
}

.review-badge.accent {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.review-badge.gold {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.review-badge.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.review-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 1024px) {
    .review-title {
        font-size: 2.25rem;
    }
}

.review-rating-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-stars .stars .star {
    width: 1.25rem;
    height: 1.25rem;
}

.review-rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.review-rating-max {
    color: #94a3b8;
}

.review-rating-label {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background: var(--accent);
    border-radius: 9999px;
}

/* Review Meta */
.review-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.review-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.review-meta-item .icon {
    width: 1rem;
    height: 1rem;
    color: #64748b;
}

/* Review Features */
.review-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.review-feature {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #cbd5e1;
    background: rgba(71, 85, 105, 0.5);
    border-radius: 9999px;
}

/* Review CTA Card */
.review-cta-card {
    width: 100%;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
}

@media (min-width: 1024px) {
    .review-cta-card {
        width: 20rem;
    }
}

.review-cta-bonus {
    text-align: center;
}

.review-cta-bonus .label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.review-cta-bonus .value {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.review-bonus-code {
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
    background: rgba(15, 23, 42, 0.5);
    border: 1px dashed #475569;
    border-radius: 0.75rem;
}

.review-bonus-code .label {
    font-size: 0.75rem;
    color: #64748b;
}

.review-bonus-code .code {
    margin-top: 0.25rem;
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.review-cta-card .btn {
    margin-top: 1.25rem;
    padding: 1rem 2rem;
    width: 100%;
}

.review-cta-disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    text-align: center;
    color: #64748b;
}

/* Review Content Layout */
.review-content-wrapper {
    padding: 2rem 0 4rem;
}

.review-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .review-layout {
        grid-template-columns: 1fr 20rem;
    }
}

/* Review Main Content */
.review-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Review Card */
.review-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: var(--radius-xl);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #334155;
}

.review-card-header .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
}

.review-card-header .icon-wrapper.accent {
    background: rgba(16, 185, 129, 0.1);
}

.review-card-header .icon-wrapper .icon {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

.review-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.review-card-content {
    padding: 1.5rem;
}

.review-card-content p {
    line-height: 1.7;
    color: #94a3b8;
}

/* Pros and Cons */
.pros-cons-grid {
    display: grid;
}

@media (min-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pros-section {
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-bottom: 1px solid #334155;
}

@media (min-width: 768px) {
    .pros-section {
        border-right: 1px solid #334155;
        border-bottom: none;
    }
}

.cons-section {
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.05);
}

.pros-cons-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pros-cons-title .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}

.pros-cons-title .icon-circle .icon {
    width: 1rem;
    height: 1rem;
    color: white;
}

.pros-section .icon-circle {
    background: var(--accent);
}

.pros-section .pros-cons-title {
    color: #34d399;
}

.cons-section .icon-circle {
    background: var(--destructive);
}

.cons-section .pros-cons-title {
    color: #f87171;
}

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

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.pros-cons-list .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pros-section .pros-cons-list .icon {
    color: var(--accent);
}

.cons-section .pros-cons-list .icon {
    color: var(--destructive);
}

.pros-cons-list span {
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* Rating Breakdown */
.rating-breakdown-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .rating-breakdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rating-item {
    padding: 1rem;
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid #334155;
    border-radius: 0.75rem;
}

.rating-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.rating-item-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-item-label .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
}

.rating-item-label .icon {
    width: 1rem;
    height: 1rem;
    color: white;
}

.rating-item-label span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
}

.rating-item-value {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-item-value .star {
    width: 1rem;
    height: 1rem;
    fill: var(--gold);
    color: var(--gold);
}

.rating-item-value span {
    font-weight: 700;
    color: white;
}

.rating-item-bar {
    height: 0.5rem;
    background: #334155;
    border-radius: 9999px;
    overflow: hidden;
}

.rating-item-bar-fill {
    height: 100%;
    border-radius: 9999px;
}

/* Full Review Content */
.review-prose {
    color: #94a3b8;
    line-height: 1.7;
}

.review-prose h2 {
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #334155;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.review-prose h2:first-child {
    margin-top: 0;
}

.review-prose p {
    margin-top: 0.75rem;
}

.review-prose ul {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.review-prose li {
    margin-top: 0.25rem;
}

.review-prose strong {
    color: #e2e8f0;
}

/* Review Sidebar */
.review-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .review-sidebar {
        position: sticky;
        top: 6rem;
    }
}

/* Sidebar Card */
.sidebar-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: var(--radius-xl);
}

.sidebar-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #334155;
}

.sidebar-card-header .icon {
    width: 1rem;
    height: 1rem;
}

.sidebar-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.sidebar-card-content {
    padding: 0;
}

/* Quick Info */
.quick-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #334155;
}

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

.quick-info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.quick-info-label .icon {
    width: 1rem;
    height: 1rem;
}

.quick-info-value {
    font-weight: 600;
    color: white;
}

.quick-info-value.accent {
    color: var(--accent);
}

/* Exclusive Offer Card */
.offer-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.offer-card-content {
    padding: 1rem;
}

.offer-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.offer-code-box {
    margin-top: 0.75rem;
}

.offer-code-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.offer-code-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px dashed #475569;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

.offer-code-btn:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.offer-code-btn .code {
    font-family: monospace;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: white;
}

.offer-code-btn .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #64748b;
}

.offer-code-btn.copied .icon {
    color: var(--accent);
}

.offer-card .btn {
    margin-top: 1rem;
    width: 100%;
}

.offer-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    text-align: center;
    color: #64748b;
}

/* Tags List */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
}

.tag {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.5rem;
}

.tag.default {
    background: #334155;
    color: #cbd5e1;
}

.tag.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
}

/* Table of Contents */
.toc-list {
    padding: 0.5rem 0;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #94a3b8;
    transition: all 0.2s;
}

.toc-item:hover {
    background: #334155;
    color: white;
}

.toc-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    background: #334155;
    border-radius: var(--radius-sm);
}

/* Icon colors for review cards */
.icon-wrapper.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.icon-wrapper.gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-wrapper.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.icon-wrapper.pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.icon-wrapper.cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.icon-wrapper.green { background: linear-gradient(135deg, #10b981, #059669); }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 640px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 641px) {
    .hide-desktop {
        display: none !important;
    }
}

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

/* Background Effects */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(16, 185, 129, 0.1), transparent),
        linear-gradient(180deg, var(--sidebar) 0%, rgba(15, 15, 26, 0.98) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}

/* Trust Badges Row */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-badge--verified {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border-color: rgba(16, 185, 129, 0.3);
}

.hero-badge--verified .icon {
    color: var(--accent);
}

.hero-badge--updated {
    background: rgba(42, 42, 74, 0.5);
}

.hero-badge--updated .icon {
    color: var(--primary);
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-cta-group .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta-group .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

/* Enhanced Stats */
.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(42, 42, 74, 0.3);
    border: 1px solid var(--sidebar-border);
    border-radius: var(--radius);
}

.hero-stats .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    color: white;
}

.hero-stats .stat-content {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--foreground), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* Archive Header */
.archive-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.archive-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.archive-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.archive-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.archive-stat {
    text-align: center;
}

.archive-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.archive-stat .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination-wrapper .nav-links {
    display: flex;
    gap: 0.5rem;
}

.pagination-wrapper .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    font-weight: 500;
    color: var(--foreground);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.pagination-wrapper .page-numbers:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-wrapper .page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* No Results */
.no-results {
    padding: 4rem 2rem;
    text-align: center;
}

.no-results-icon {
    color: var(--muted-foreground);
}

.no-results-icon .icon {
    width: 4rem;
    height: 4rem;
}

/* ============================================
   FILTER BAR
   ============================================ */

.filter-bar {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 160px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.filter-label .icon {
    opacity: 0.7;
}

.filter-select {
    width: 100%;
    padding: 0.625rem 2rem 0.625rem 0.875rem;
    font-size: 0.875rem;
    color: var(--foreground);
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.filter-select:hover {
    border-color: var(--primary);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.filter-reset {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-reset:hover {
    color: var(--foreground);
    background: var(--muted);
    border-color: var(--foreground);
}

/* Loading State */
.filter-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    color: var(--muted-foreground);
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* No Results Filter */
.no-results-filter {
    text-align: center;
    padding: 3rem;
    color: var(--muted-foreground);
}

.no-results-filter p {
    margin-bottom: 1rem;
}

/* Responsive Filter */
@media (max-width: 768px) {
    .filter-form {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .filter-reset {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   HOW WE REVIEW SECTION
   ============================================ */

.how-we-review-section {
    background: var(--background);
}

.review-criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .review-criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .review-criteria-grid {
        grid-template-columns: 1fr;
    }
}

.criteria-card {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, transform 0.2s;
}

.criteria-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.criteria-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: var(--radius);
    color: var(--primary);
}

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

.criteria-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.criteria-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

/* ============================================
   ABOUT CASINOS SECTION
   ============================================ */

.about-casinos-section {
    background: var(--card);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

.content-main h2 {
    margin-bottom: 2rem;
}

.content-block {
    margin-bottom: 2rem;
}

.content-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.content-block p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    padding: 1.5rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.sidebar-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.tips-list {
    list-style: none;
}

.tips-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.tips-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.popular-games-list {
    list-style: none;
}

.popular-games-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border);
}

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

.game-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.game-provider {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

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

.faq-section {
    background: var(--background);
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--card);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question[aria-expanded="true"] {
    background: rgba(99, 102, 241, 0.05);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon .icon {
    width: 20px;
    height: 20px;
    color: var(--muted-foreground);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--muted-foreground);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    background: linear-gradient(135deg, var(--sidebar) 0%, var(--card) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.final-cta-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Background class */
.bg-card {
    background-color: var(--card);
}

/* Padding utilities */
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Centered section header */
.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-header-center .section-title {
    margin-bottom: 0.75rem;
}

.section-header-center .section-description {
    margin: 0 auto;
}
