/* PlayVerde - Professional Green Theme CSS */
:root {
    --primary: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #22c55e;
    --secondary: #1e293b;
    --secondary-dark: #0f172a;
    --gold: #b45309;
    --blue: #2563eb;
    --purple: #7c3aed;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #6b7280;
    --gray-500: #4b5563;
    --gray-600: #374151;
    --gray-700: #1f2937;
    --gray-800: #111827;
    --gray-900: #030712;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --focus-ring: 0 0 0 3px rgba(22, 163, 74, 0.5);
}

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

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

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* Accessibility - Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    box-shadow: var(--focus-ring);
}

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1rem;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 var(--radius) 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Navbar */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

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

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.navbar .logo img { height: 40px; width: auto; }

.nav-links { display: flex; list-style: none; gap: 0.25rem; }

.nav-links a {
    color: var(--gray-600);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    background: rgba(34, 197, 94, 0.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius);
}

.mobile-menu-btn:hover span {
    background: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 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='%2322c55e' fill-opacity='0.05'%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");
    opacity: 0.5;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item { text-align: center; }

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

/* SVG Icon Styles */
.svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.svg-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Trust Badge Icons - 24x24 */
.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--gray-600);
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-badge:hover .trust-icon {
    transform: scale(1.1);
    color: var(--primary);
}

/* Feature Icons (Por Que Confiar) - 64x64 */
.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon svg {
    width: 64px;
    height: 64px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
    color: var(--primary-light);
}

/* Category Icons - 48x48 */
.category-icon-pro {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--primary);
}

.category-icon-pro svg {
    width: 48px;
    height: 48px;
}

.category-card-pro:hover .category-icon-pro {
    transform: scale(1.1);
    color: var(--primary-dark);
}

/* Icon Animations */
@keyframes iconFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.svg-icon {
    animation: iconFadeIn 0.5s ease-out;
}

/* Magnifying glass subtle animation */
.icon-search:hover svg {
    animation: searchPulse 0.6s ease;
}

@keyframes searchPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05) rotate(5deg); }
}

/* Rocket animation */
.icon-rocket:hover svg {
    animation: rocketLaunch 0.4s ease;
}

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

/* Shield pulse animation */
.icon-shield:hover svg {
    animation: shieldPulse 0.5s ease;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); }

.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: white; color: var(--secondary); border-color: white; }

.btn-outline-primary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: white; }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: white; }
.section-dark { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); color: white; }

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

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.section-title.light { color: white; }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.light { color: rgba(255,255,255,0.9); }

/* Platform Cards */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.platform-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s;
}

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

.platform-card.featured { border: 2px solid var(--primary); }

.platform-badge {
    position: absolute;
    top: -0.75rem;
    right: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.platform-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: var(--radius);
    background: var(--gray-100);
    padding: 0.5rem;
}

.platform-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.platform-rating { display: flex; align-items: center; gap: 0.5rem; }
.platform-rating .stars { color: var(--gold); font-size: 1rem; }
.platform-rating .rating-score { font-weight: 700; color: var(--gray-700); font-size: 0.9rem; }

.platform-bonus {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    text-align: center;
}

.platform-bonus .bonus-label { display: block; font-size: 0.8rem; opacity: 0.9; margin-bottom: 0.25rem; }
.platform-bonus .bonus-value { font-size: 1.5rem; font-weight: 800; }

.platform-features {
    list-style: none;
    margin-bottom: 1rem;
}

.platform-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
}

.platform-features li:last-child { border-bottom: none; }
.platform-features .check { color: var(--primary); font-weight: bold; }

.platform-tags { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-green { background: rgba(34, 197, 94, 0.1); color: var(--primary-dark); }
.tag-blue { background: rgba(59, 130, 246, 0.1); color: var(--blue); }
.tag-purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.tag-gold { background: rgba(245, 158, 11, 0.1); color: var(--gold); }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9rem; opacity: 0.8; }

/* Criteria Grid - 3x2 Layout */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.criteria-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.criteria-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.criteria-score {
    display: inline-block;
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.criteria-item h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--gray-800); }
.criteria-item p { font-size: 0.8rem; color: var(--gray-500); }

/* Brand Grid - Standardized Square Cards */
/* All Platforms Section - Modern Redesign */
.section-alt {
    background: linear-gradient(180deg, var(--gray-50) 0%, white 50%, var(--gray-50) 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* Enhanced Section Header */
.section-header-enhanced {
    margin-bottom: 2.5rem;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.platform-count {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.25);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1rem 1.25rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.brand-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow:
        0 20px 40px rgba(34, 197, 94, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.06);
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card:hover::after {
    opacity: 1;
}

.brand-card:hover .brand-img {
    transform: scale(1.1);
}

.brand-card:hover .brand-name {
    color: var(--primary-dark);
}

.brand-img {
    width: 100px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 0.875rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.brand-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-800);
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.brand-rating-small {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.55rem;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    gap: 0.2rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.brand-rating-small::before {
    content: '★';
    font-size: 0.65rem;
}

.brand-card:hover .brand-rating-small {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* Category Cards Pro */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card-pro {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.category-card-pro:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.category-icon-pro {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-content h3 { font-size: 1.1rem; color: var(--gray-800); margin-bottom: 0.25rem; }
.category-content p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.category-count { font-size: 0.75rem; font-weight: 700; color: var(--primary); }

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

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

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

.faq-question:hover { background: var(--gray-50); }

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

.faq-item.active .faq-icon { transform: rotate(45deg); }

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

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Responsible Gaming Section */
.responsible-section {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 3rem 0;
}

.responsible-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.responsible-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.responsible-text h3 {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.responsible-text p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.responsible-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.responsible-links a {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 0 1.5rem;
}

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

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

.footer-section p {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.75rem; }
.footer-section ul a {
    color: #d1d5db;
    font-size: 0.9rem;
    transition: color 0.2s;
    padding: 0.25rem 0;
    display: inline-block;
}
.footer-section ul a:hover { color: var(--primary-light); }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.8rem;
}

/* Today's Update Section */
.section-today {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    padding: 3rem 0;
}

.section-today .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.today-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.today-icon svg {
    width: 32px;
    height: 32px;
}

.today-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.today-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.today-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.today-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.15);
}

.today-card:hover::before {
    transform: scaleX(1);
}

.today-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.today-card:hover img {
    transform: scale(1.08);
}

.today-info {
    text-align: center;
}

.today-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.today-rating {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.today-rating .star {
    display: inline-flex;
    align-items: center;
    width: 14px;
    height: 14px;
}

.today-rating .star svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1;
}

.today-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius);
    text-transform: uppercase;
}

.today-card:nth-child(2) .today-badge {
    background: #ef4444;
}

.today-card:nth-child(3) .today-badge {
    background: var(--gold);
}

.today-card:nth-child(4) .today-badge {
    background: var(--purple);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .today-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero { padding: 3rem 0; }
    .hero h1 { font-size: 1.75rem; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stats .stat-number { font-size: 1.75rem; }

    .trust-badges { gap: 1rem; }
    .trust-badge { font-size: 0.75rem; }
    .trust-icon { width: 20px; height: 20px; }
    .trust-icon svg { width: 20px; height: 20px; }

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

    .platform-grid { grid-template-columns: 1fr; }
    .platform-card { padding: 1.25rem; }

    .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .feature-card { padding: 1.25rem; }
    .feature-icon { width: 48px; height: 48px; }
    .feature-icon svg { width: 48px; height: 48px; }
    .category-icon-pro { width: 40px; height: 40px; }
    .category-icon-pro svg { width: 40px; height: 40px; }
    .today-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .today-card img { width: 60px; height: 60px; }
    .today-icon { width: 24px; height: 24px; }
    .today-icon svg { width: 24px; height: 24px; }

    .criteria-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

    .section-header-enhanced { margin-bottom: 2rem; }
    .section-title-wrapper { gap: 0.75rem; }
    .platform-count { font-size: 0.75rem; padding: 0.35rem 0.75rem; }

    .brand-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1.25rem; }
    .brand-card { padding: 1.25rem 0.875rem 1rem; }
    .brand-card:hover { transform: translateY(-5px); }
    .brand-img { width: 85px; height: 48px; }

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

    .responsible-content { flex-direction: column; text-align: center; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-stats { flex-direction: column; gap: 1rem; }

    .criteria-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
    .brand-card { aspect-ratio: auto; padding: 1rem 0.75rem 0.875rem; }
    .brand-img { width: 75px; height: 42px; margin-bottom: 0.5rem; }
    .brand-name { font-size: 0.85rem; }
    .brand-rating-small {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    .brand-rating-small::before { font-size: 0.55rem; }

    .section-title-wrapper { flex-direction: column; gap: 0.5rem; }
    .platform-count { font-size: 0.7rem; padding: 0.3rem 0.65rem; }

    .feature-icon { width: 40px; height: 40px; }
    .feature-icon svg { width: 40px; height: 40px; }
    .trust-icon { width: 18px; height: 18px; }
    .trust-icon svg { width: 18px; height: 18px; }
    .category-icon-pro { width: 36px; height: 36px; }
    .category-icon-pro svg { width: 36px; height: 36px; }
}

/* ============================
   Review Page Styles
   ============================ */

/* Breadcrumb */
.breadcrumb {
    background: var(--gray-100);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
}

.breadcrumb-list a { color: var(--gray-500); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .separator { color: var(--gray-400); }
.breadcrumb-list .current { color: var(--gray-700); font-weight: 500; }

/* Review Hero */
.review-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.review-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 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='%2322c55e' fill-opacity='0.05'%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");
    opacity: 0.5;
}

.review-hero .container { position: relative; z-index: 1; }

.review-hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.review-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: var(--radius-xl);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

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

.review-info { flex: 1; }

.review-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.review-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.review-rating-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.review-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
}

.review-score-info { flex: 1; }
.review-score-label { font-size: 0.875rem; opacity: 0.8; }

.review-stars {
    color: var(--gold);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.review-cta {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

/* Quick Stats */
.quick-stats {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.quick-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.quick-stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.quick-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.quick-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Table of Contents */
.toc {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
}

.toc h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
}

.toc-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.toc-list a:hover {
    background: var(--primary);
    color: white;
}

.toc-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gray-200);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
}

.toc-list a:hover .toc-number {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Review Content */
.review-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    padding: 3rem 0;
}

.review-main { }

.review-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

/* Review Sections */
.review-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.review-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.review-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
    margin: 1.5rem 0 0.75rem;
}

.review-section p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Bonus Card */
.bonus-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin: 1.5rem 0;
    text-align: center;
}

.bonus-card-label { font-size: 0.9rem; opacity: 0.9; margin-bottom: 0.5rem; }
.bonus-card-value { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.bonus-card-terms { font-size: 0.8rem; opacity: 0.8; }

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.promo-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
}

.promo-item h4 {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.promo-item p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

/* Payment Table */
.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.payment-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.payment-table td {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.payment-table tr:hover td {
    background: var(--gray-50);
}

/* Highlight Tags */
.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--gray-700);
}

.highlight-tag.featured {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary-dark);
}

/* Security Features */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.security-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.security-item h4 {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.security-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

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

.pros-list, .cons-list {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.pros-list h4, .cons-list h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-list h4 { color: var(--primary); }
.cons-list h4 { color: #dc2626; }

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

.pros-list li, .cons-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* Conclusion Box */
.conclusion-box {
    background: linear-gradient(135deg, var(--gray-50), white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 1.5rem 0;
}

.conclusion-score {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.conclusion-score-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.conclusion-score-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
}

.sidebar-cta h4 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-cta .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Related Brands */
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.related-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.related-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.related-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.related-card h5 {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.related-rating {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

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

    .review-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .review-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .review-info h1 { font-size: 1.75rem; }
    .review-meta { justify-content: center; }
    .review-rating-box { flex-direction: column; text-align: center; }
    .review-cta { justify-content: center; margin: 1rem 0 0; }

    .quick-stats-grid { grid-template-columns: 1fr; }
    .toc-list { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }

    .review-sidebar { grid-template-columns: 1fr; }
}

/* ============================
   Review Page SVG Icons
   ============================ */

/* Base Icon Styles */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

/* Meta Icons (small, inline) */
.meta-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-light);
    margin-right: 0.25rem;
}

.meta-icon svg {
    width: 18px;
    height: 18px;
}

/* Stat Icons (large, in stat boxes) */
.stat-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.quick-stat-item:hover .stat-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Promo Icons */
.promo-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.promo-icon svg {
    width: 40px;
    height: 40px;
}

.promo-item:hover .promo-icon {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Security Icons */
.security-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.security-icon svg {
    width: 24px;
    height: 24px;
}

.security-item:hover .security-icon {
    background: var(--primary-dark);
    transform: scale(1.1) rotate(5deg);
}

/* Pros/Cons Header Icons */
.list-header-icon {
    width: 24px;
    height: 24px;
}

.list-header-icon svg {
    width: 24px;
    height: 24px;
}

.pros-list .list-header-icon {
    color: var(--primary);
}

.cons-list .list-header-icon {
    color: #dc2626;
}

/* Info Icons (sidebar) */
.info-icon {
    width: 18px;
    height: 18px;
    color: var(--gray-500);
    margin-right: 0.5rem;
}

.info-icon svg {
    width: 18px;
    height: 18px;
}

/* Star Ratings */
.star-rating {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
}

.star-rating .star {
    width: 20px;
    height: 20px;
}

.star-rating .star svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1;
}

.star-rating .star.empty svg {
    fill: none;
    stroke: var(--gray-300);
}

/* Small Star Rating */
.star-rating-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gold);
    font-weight: 600;
}

.star-rating-sm .star {
    width: 16px;
    height: 16px;
}

.star-rating-sm .star svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1;
}

/* Brazil Flag Icon */
.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    overflow: hidden;
    display: inline-flex;
    margin-right: 0.25rem;
}

.flag-br {
    background: linear-gradient(to bottom, #009c3b 0%, #009c3b 50%, #ffdf00 50%, #ffdf00 100%);
    position: relative;
}

.flag-br::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #002776;
    border-radius: 50%;
}

/* Responsive Icon Sizes */
@media (max-width: 768px) {
    .stat-icon {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }

    .stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .promo-icon {
        width: 32px;
        height: 32px;
    }

    .promo-icon svg {
        width: 32px;
        height: 32px;
    }

    .security-icon {
        width: 40px;
        height: 40px;
    }

    .security-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* User Reviews Section */
.user-reviews-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.user-review-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.user-review-card:hover {
    box-shadow: var(--shadow-md);
}

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

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    width: 16px;
    height: 16px;
}

.review-text {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .user-review-card {
        padding: 1rem;
    }

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

/* Platforms Grid for Category Pages */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.platforms-grid .platform-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
}

.platforms-grid .platform-card h3 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.platforms-grid .platform-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.platform-rating {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Stat Cards for Category Pages */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Legal Table of Contents */
.legal-toc {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
}

.legal-toc h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.legal-toc ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    list-style: none;
}

.legal-toc ul li a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--gray-600);
    font-size: 0.85rem;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.legal-toc ul li a:hover {
    background: var(--primary);
    color: white;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

/* ============================================
   NEW COMPONENTS - System Optimization 2026
   ============================================ */

/* Page Table of Contents (Sticky) */
.page-toc {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.page-toc h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.page-toc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-toc ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.page-toc ul li a:hover,
.page-toc ul li a.active {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border-left-color: var(--primary);
}

.page-toc ul li a .toc-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
}

.page-toc ul li a:hover .toc-number,
.page-toc ul li a.active .toc-number {
    background: var(--primary);
    color: white;
}

/* Timeline Component */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table thead th {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--gray-800);
}

.comparison-table tbody tr:hover td {
    background: rgba(34, 197, 94, 0.05);
}

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

.comparison-table .highlight {
    background: rgba(34, 197, 94, 0.15);
    font-weight: 600;
    color: var(--primary-dark);
}

/* Game Card Enhanced */
.game-card-enhanced {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.game-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.game-card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.25rem;
    position: relative;
}

.game-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.game-card-header .provider {
    font-size: 0.85rem;
    opacity: 0.9;
}

.game-card-header .game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.game-card-body {
    padding: 1.5rem;
}

.game-card-body p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.game-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.game-stat {
    text-align: center;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.game-stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.game-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.game-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Provider Grid */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.provider-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.provider-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.provider-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

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

.provider-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.provider-info .founded {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.provider-card-body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.provider-games {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.provider-games .game-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
}

/* Badges */
.badge-rtp {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-volatility {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-volatility.high {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.badge-volatility.medium {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.badge-volatility.low {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.badge-popular {
    background: linear-gradient(135deg, var(--gold), #d97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Strategy Card */
.strategy-card {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.strategy-card h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strategy-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.strategy-card.warning {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.strategy-card.warning h4 {
    color: #d97706;
}

.strategy-card.danger {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.strategy-card.danger h4 {
    color: #dc2626;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.step-content {
    flex: 1;
    padding-top: 0.25rem;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Legal Section Styles */
.legal-section {
    scroll-margin-top: 100px;
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: var(--gray-800);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.legal-section h3 {
    color: var(--gray-700);
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-highlight {
    background: rgba(34, 197, 94, 0.08);
    border-left: 4px solid var(--primary);
    padding: 1.25rem;
    margin: 1.25rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.legal-highlight p {
    margin: 0;
    color: var(--gray-700);
}

/* Content Two Column Layout */
.content-two-col {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.content-main {
    min-width: 0;
}

.content-sidebar {
    position: sticky;
    top: 100px;
}

/* Responsible Gaming Notice */
.responsible-notice {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
}

.responsible-notice h4 {
    color: #d97706;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.responsible-notice p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.responsible-notice a {
    color: #d97706;
    font-weight: 600;
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-200), transparent);
    margin: 3rem 0;
}

/* Stats Grid Enhanced */
.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item-enhanced {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.stat-item-enhanced:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-item-enhanced .stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-item-enhanced .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item-enhanced .stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Games Grid Enhanced */
.games-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Responsive for New Components */
@media (max-width: 1024px) {
    .content-two-col {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
        order: -1;
    }

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

@media (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .game-card-stats {
        grid-template-columns: 1fr;
    }

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

    .stats-grid-enhanced {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline::before {
        left: 4px;
    }

    .timeline-item::before {
        left: -1.25rem;
        width: 12px;
        height: 12px;
    }
}
