/* ===== TOBEPLAYPULS.COM - NEON PULSE THEME ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url(header.css);
@import url(footer.css);
:root {
    /* NEON PULSE Color Scheme */
    --primary: #FF00FF;        /* Magenta */
    --primary-dark: #CC00CC;
    --secondary: #00FFFF;       /* Cyan */
    --secondary-dark: #00CCCC;
    --accent: #FFFF00;          /* Yellow */
    --accent-dark: #CCCC00;
    --background: #0A0A0F;      /* Deep Black */
    --surface: #1A1A24;         /* Dark Purple */
    --surface-light: #2A2A34;
    --text: #FFFFFF;
    --text-muted: #AAAAAA;
    --border-light: rgba(255, 0, 255, 0.2);
    
    /* Glow Effects */
    --glow-primary: 0 0 10px rgba(255, 0, 255, 0.5);
    --glow-secondary: 0 0 10px rgba(0, 255, 255, 0.5);
    --glow-accent: 0 0 10px rgba(255, 255, 0, 0.5);
    
    /* Fonts - Futuristic */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: var(--glow-primary);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: var(--glow-secondary);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    font-family: var(--font-body);
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); text-shadow: var(--glow-primary); }
.text-secondary { color: var(--secondary); text-shadow: var(--glow-secondary); }
.text-accent { color: var(--accent); text-shadow: var(--glow-accent); }
.text-white { color: var(--text); }
.text-muted { color: var(--text-muted); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-surface { background-color: var(--surface); }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: var(--text);
    box-shadow: var(--glow-primary);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--background);
    box-shadow: var(--glow-secondary);
    border: 1px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--secondary);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text);
    box-shadow: var(--glow-primary);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-small {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary);
    color: var(--background);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-small:hover {
    background: var(--secondary-dark);
    box-shadow: var(--glow-secondary);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
        text-shadow: 0 0 20px var(--primary);
    }
}

.pulse-element {
    animation: pulse 2s infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.glow-element {
    animation: glow 2s infinite;
}

/* ===== HEADER PLACEHOLDER STYLES ===== */
#header-placeholder {
    height: 80px;
    background: var(--surface);
    border-bottom: 3px solid var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '⚡⚡⚡';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--primary);
}

.hero::after {
    content: '⚡⚡⚡';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    color: var(--secondary);
    transform: rotate(-15deg);
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1 1 500px;
}

.hero-badge {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: var(--primary);
    display: block;
    font-size: 4rem;
    margin-top: 5px;
    text-shadow: var(--glow-primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--primary);
    padding-left: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    font-family: var(--font-heading);
    text-shadow: var(--glow-secondary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.pulse-icon i {
    font-size: 12rem;
    color: var(--primary);
    filter: drop-shadow(0 0 20px var(--primary));
    animation: pulse 3s infinite;
}
/* ===== HOMEPAGE ADDITIONAL STYLES ===== */

/* SRIJ Trust Badge */
.srij-badge {
    padding: 30px 0;
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-item i {
    font-size: 2rem;
    color: var(--primary);
    filter: drop-shadow(var(--glow-primary));
}

.badge-item span {
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-body);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: var(--background);
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 0, 255, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border: 1px solid var(--primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    padding: 40px 30px;
    flex: 1 1 220px;
    max-width: 280px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    filter: drop-shadow(var(--glow-primary));
}

.feature-card:hover .feature-icon {
    border-color: var(--secondary);
}

.feature-card:hover .feature-icon i {
    color: var(--secondary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Games Section */
.games-section {
    padding: 60px 0;
    background: var(--surface);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.game-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--glow-secondary);
}

.game-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.game-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.game-card:hover .game-icon {
    border-color: var(--secondary);
}

.game-card:hover .game-icon i {
    color: var(--secondary);
}

.game-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text);
}

.game-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: var(--background);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.brand-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    flex: 1 1 300px;
    max-width: 350px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.brand-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--primary);
    color: var(--background);
    font-weight: 700;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--secondary);
}

.brand-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.brand-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text);
}

.brand-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.brand-rating i {
    color: var(--accent);
    font-size: 0.9rem;
}

.brand-rating span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.brand-bonus {
    background: rgba(255, 0, 255, 0.1);
    padding: 15px;
    margin: 10px 0 15px;
    text-align: center;
    border: 1px solid var(--primary);
}

.bonus-label {
    display: block;
    font-size: 0.6rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.bonus-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-heading);
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0 20px;
    flex: 1;
}

.brand-features span {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-features i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.brand-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.brand-footer .btn-small {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8rem;
}

.brand-footer .btn-small:first-child {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.brand-footer .btn-small:first-child:hover {
    background: var(--primary);
    color: var(--background);
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: var(--surface);
}

.info-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.info-content {
    flex: 1 1 400px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list-item i {
    color: var(--primary);
    font-size: 1.1rem;
    filter: drop-shadow(var(--glow-primary));
}

.info-list-item span {
    color: var(--text-muted);
}

.info-visual {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.info-circle {
    width: 280px;
    height: 280px;
    border: 3px dashed var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
}

.info-circle i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 10px;
    filter: drop-shadow(var(--glow-primary));
}

.info-circle span {
    font-size: 2rem;
    color: var(--text);
    font-weight: 700;
    font-family: var(--font-heading);
}

.info-circle small {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Payment Section */
.payment-section {
    padding: 60px 0;
    background: var(--background);
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
    padding: 15px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.payment-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--glow-secondary);
}

.payment-item i {
    font-size: 2.5rem;
    color: var(--accent);
    filter: drop-shadow(var(--glow-accent));
}

.payment-item span {
    font-weight: 600;
    color: var(--text-muted);
}

/* Responsible Section */
.responsible-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.responsible-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.responsible-content i {
    font-size: 3rem;
    color: var(--background);
}

.responsible-content p {
    color: var(--background);
    max-width: 800px;
    margin: 0;
}

.responsible-content a {
    color: var(--background);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--background);
}

.responsible-content a:hover {
    text-shadow: 0 0 10px var(--background);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background), var(--surface));
    text-align: center;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

.banner-content h2 {
    color: var(--text);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.banner-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-grid, .info-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats, .hero-cta {
        justify-content: center;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .info-list-item {
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .badge-container {
        gap: 20px;
    }
    
    .badge-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        gap: 20px;
    }
    
    .payment-item {
        min-width: 70px;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
}
/* ===== ABOUT PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '⚡⚡⚡';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 12rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--primary);
}

.page-hero::after {
    content: '⚡⚡⚡';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 10rem;
    opacity: 0.03;
    color: var(--secondary);
    transform: rotate(-15deg);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--background);
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.mission-content {
    flex: 1 1 500px;
}

.mission-content h2 {
    margin-bottom: 25px;
}

.mission-text {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.mission-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.mission-stats .stat-item {
    border-left: 2px solid var(--primary);
    padding-left: 15px;
}

.mission-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-heading);
    line-height: 1;
    text-shadow: var(--glow-secondary);
}

.mission-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.pulse-circle {
    width: 300px;
    height: 300px;
    border: 3px dashed var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
    animation: rotate 20s linear infinite;
}

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

.pulse-circle i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 15px;
    filter: drop-shadow(var(--glow-primary));
    animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.pulse-circle span {
    font-size: 2rem;
    color: var(--text);
    font-family: var(--font-heading);
    font-weight: 700;
    animation: counterRotate 20s linear infinite;
}

.pulse-circle small {
    color: var(--text-muted);
    font-size: 1rem;
    animation: counterRotate 20s linear infinite;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--surface);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.value-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px 30px;
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    filter: drop-shadow(var(--glow-primary));
}

.value-card:hover .value-icon {
    border-color: var(--secondary);
}

.value-card:hover .value-icon i {
    color: var(--secondary);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Methodology Highlight */
.methodology-highlight {
    padding: 60px 0;
    background: var(--background);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '⚡⚡⚡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.03;
    color: var(--secondary);
    white-space: nowrap;
    width: 100%;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: var(--glow-primary);
}

.highlight-icon i {
    font-size: 2.5rem;
    color: var(--background);
}

.highlight-box h2 {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.highlight-box p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-muted);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--surface);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.team-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px 30px 30px;
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '⚡';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 5rem;
    opacity: 0.05;
    color: var(--secondary);
    transform: rotate(-10deg);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
}

.team-avatar i {
    font-size: 4rem;
    color: var(--background);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text);
}

.team-role {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    text-decoration: none;
}

.team-social-link:hover {
    background: var(--primary);
    color: var(--background);
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background);
}

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

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question {
    background: rgba(255, 0, 255, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-stats {
        justify-content: center;
    }
    
    .mission-stats .stat-item {
        align-items: center;
    }
    
    .pulse-circle {
        width: 250px;
        height: 250px;
    }
    
    .pulse-circle i {
        font-size: 4rem;
    }
    
    .pulse-circle span {
        font-size: 1.5rem;
    }
    
    .values-grid, .team-grid {
        gap: 20px;
    }
    
    .value-card, .team-card {
        max-width: 100%;
    }
    
    .highlight-box {
        padding: 30px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mission-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .pulse-circle {
        width: 220px;
        height: 220px;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
    }
    
    .team-avatar i {
        font-size: 3rem;
    }
}
/* ===== METHODOLOGY PAGE STYLES ===== */

/* Methodology Hero */
.methodology-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.methodology-hero::before {
    content: '⚡⚡⚡';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--primary);
}

.methodology-hero::after {
    content: '✓✓✓';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 12rem;
    opacity: 0.03;
    color: var(--secondary);
    transform: rotate(-15deg);
}

.methodology-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Intro Section */
.methodology-intro {
    padding: 80px 0;
    background: var(--surface);
}

.intro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.intro-content {
    flex: 2 1 500px;
}

.intro-content h2 {
    margin-bottom: 25px;
}

.intro-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.intro-stats {
    flex: 1 1 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.intro-stat-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
}

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

.intro-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: var(--glow-secondary);
}

.intro-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Criteria Section */
.criteria-section {
    padding: 80px 0;
    background: var(--background);
}

.criteria-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.criterion-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition);
}

.criterion-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: var(--glow-primary);
}

.criterion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.criterion-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.criterion-icon i {
    font-size: 2rem;
    color: var(--primary);
    filter: drop-shadow(var(--glow-primary));
}

.criterion-title {
    flex: 1;
}

.criterion-title h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.criterion-weight {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid var(--secondary);
}

.criterion-score {
    margin-bottom: 15px;
}

.score-badge {
    background: var(--primary);
    color: var(--background);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid var(--secondary);
}

.criterion-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

.criterion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.criterion-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.criterion-list li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Scoring System */
.scoring-section {
    padding: 60px 0;
    background: var(--surface);
}

.scoring-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.scoring-box h2 {
    text-align: center;
    margin-bottom: 10px;
}

.scoring-box > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.scoring-grid {
    max-width: 600px;
    margin: 0 auto 20px;
}

.scoring-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.scoring-range {
    min-width: 70px;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.scoring-label {
    min-width: 100px;
    color: var(--text);
    font-size: 0.9rem;
}

.scoring-bar {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.scoring-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s;
}

.scoring-note {
    text-align: center;
    color: var(--accent);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 20px;
}

/* Testing Process */
.testing-section {
    padding: 80px 0;
    background: var(--background);
}

.timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--background);
    position: relative;
    z-index: 2;
    border: 3px solid var(--secondary);
    box-shadow: var(--glow-primary);
}

.timeline-content {
    flex: 1;
    padding-bottom: 20px;
}

.timeline-content h3 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Verification Section */
.verification-section {
    padding: 60px 0;
    background: var(--surface);
}

.verification-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.verification-item {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
}

.verification-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.verification-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    filter: drop-shadow(var(--glow-secondary));
}

.verification-item h4 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.verification-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Transparency Section */
.transparency-section {
    padding: 60px 0 80px;
    background: var(--background);
}

.transparency-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.transparency-box::before {
    content: '✓✓✓';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.05;
    color: var(--secondary);
    transform: rotate(-10deg);
}

.transparency-box i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    filter: drop-shadow(var(--glow-primary));
}

.transparency-box h2 {
    margin-bottom: 20px;
}

.transparency-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.transparency-signature {
    color: var(--accent) !important;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .methodology-hero h1 {
        font-size: 2.5rem;
    }
    
    .intro-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .intro-stats {
        width: 100%;
    }
    
    .criterion-header {
        flex-direction: column;
        text-align: center;
    }
    
    .criterion-title {
        text-align: center;
    }
    
    .criterion-list {
        grid-template-columns: 1fr;
    }
    
    .scoring-item {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .scoring-range, .scoring-label {
        min-width: auto;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .verification-grid {
        gap: 15px;
    }
    
    .verification-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .transparency-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .scoring-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .scoring-bar {
        width: 100%;
    }
    
    .timeline-item {
        gap: 15px;
    }
    
    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* ===== REVIEW PAGES STYLES ===== */

/* Reviews Hero */
.reviews-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.reviews-hero::before {
    content: '⚡⚡⚡';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 12rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--primary);
}

.reviews-hero::after {
    content: '✓✓✓';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 12rem;
    opacity: 0.03;
    color: var(--secondary);
    transform: rotate(-15deg);
}

.reviews-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Filter Section */
.filter-section {
    padding: 30px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.filter-label i {
    color: var(--primary);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    padding: 8px 20px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

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

.filter-btn.active {
    background: var(--primary);
    color: var(--background);
    border-color: var(--primary);
}

.filter-sort select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    padding: 8px 15px;
    border-radius: 4px;
    font-family: var(--font-body);
    cursor: pointer;
}

/* Reviews Grid */
.reviews-grid-section {
    padding: 60px 0;
    background: var(--background);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    flex: 1 1 350px;
    max-width: 380px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.review-card-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: var(--background);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--glow-primary);
    z-index: 2;
    font-family: var(--font-heading);
}

.review-card.coming-soon {
    opacity: 0.7;
}

.review-card.coming-soon .review-card-badge {
    background: var(--surface-light);
    color: var(--text-muted);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--background);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: var(--font-heading);
    border: 2px solid var(--accent);
}

.review-card.coming-soon .review-logo {
    background: var(--surface-light);
    border-color: var(--text-muted);
}

.review-rating {
    flex: 1;
}

.rating-stars i {
    color: var(--accent);
    font-size: 0.9rem;
}

.review-card.coming-soon .rating-stars i {
    color: var(--text-muted);
}

.rating-score {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.review-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text);
    font-family: var(--font-heading);
}

.review-bonus {
    background: rgba(255, 0, 255, 0.1);
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid var(--primary);
}

.review-card.coming-soon .review-bonus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.bonus-tag {
    display: block;
    font-size: 0.6rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.review-card.coming-soon .bonus-tag {
    color: var(--text-muted);
}

.bonus-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.review-card.coming-soon .bonus-value {
    color: var(--text-muted);
}

.review-pros-cons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex: 1;
}

.review-pros, .review-cons {
    flex: 1;
}

.review-pros p, .review-cons p {
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-pros i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.review-cons i {
    color: var(--primary);
    font-size: 0.8rem;
}

.review-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-review {
    flex: 2;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--text);
    text-decoration: none;
    text-align: center;
    font-size: 0.8rem;
    transition: var(--transition);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-review:hover {
    background: var(--primary);
    color: var(--background);
}

.btn-review i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.btn-review:hover i {
    transform: translateX(5px);
}

.btn-bonus {
    flex: 1;
    padding: 10px;
    background: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 4px;
    color: var(--background);
    text-decoration: none;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-bonus:hover {
    background: transparent;
    color: var(--secondary);
}

.btn-disabled {
    flex: 1;
    padding: 10px;
    background: var(--surface-light);
    border: 1px solid var(--text-muted);
    border-radius: 4px;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.8rem;
    cursor: not-allowed;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
    background: var(--surface);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 8px;
    background: var(--background);
    padding: 5px;
    border: 1px solid var(--border-light);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background: var(--primary);
    color: var(--background);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-body);
}

.table-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-logo {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--background);
    font-family: var(--font-heading);
}

.table-rating {
    color: var(--accent);
    font-weight: 600;
}

.table-rating i {
    font-size: 0.8rem;
    margin-left: 3px;
}

.table-bonus {
    color: var(--text);
    font-weight: 600;
}

.table-good {
    color: var(--secondary);
}

.table-mid {
    color: var(--accent);
}

.table-btn {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary);
    color: var(--background);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* Methodology Link */
.methodology-link {
    padding: 60px 0;
    background: var(--background);
}

.methodology-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.methodology-box h3 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.methodology-box p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-options {
        width: 100%;
    }
    
    .filter-sort {
        width: 100%;
    }
    
    .filter-sort select {
        width: 100%;
    }
    
    .review-pros-cons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .reviews-hero h1 {
        font-size: 2rem;
    }
    
    .review-footer {
        flex-direction: column;
    }
    
    .btn-review, .btn-bonus {
        width: 100%;
    }
}
/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '✉️';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 12rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--primary);
}

.contact-hero::after {
    content: '📞';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 12rem;
    opacity: 0.03;
    color: var(--secondary);
    transform: rotate(-15deg);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background: var(--surface);
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.contact-info-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px 30px;
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

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

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

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    filter: drop-shadow(var(--glow-primary));
}

.contact-info-card:hover .contact-icon {
    border-color: var(--secondary);
}

.contact-info-card:hover .contact-icon i {
    color: var(--secondary);
}

.contact-info-card h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-info-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-link {
    display: block;
    color: var(--secondary);
    text-decoration: none;
    margin: 5px 0;
    transition: var(--transition);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.contact-link:hover {
    color: var(--primary);
    transform: scale(1.05);
}

.contact-hours {
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
    margin: 5px 0 !important;
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Contact Social */
.contact-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.contact-social-link:hover {
    background: var(--primary);
    color: var(--background);
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: var(--background);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 250px;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 0, 255, 0.1);
    box-shadow: var(--glow-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.form-group select {
    cursor: pointer;
    color: var(--text-muted);
}

.form-group select option {
    background: var(--surface);
    color: var(--text);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    flex: 0 0 auto;
}

.checkbox-group label {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit button i {
    margin-left: 8px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    filter: drop-shadow(var(--glow-secondary));
}

.form-success h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.form-success p {
    color: var(--text-muted);
}

/* FAQ Contact Section */
.faq-contact-section {
    padding: 60px 0;
    background: var(--surface);
}

.faq-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.faq-contact-content {
    flex: 1 1 400px;
}

.faq-contact-content h2 {
    margin-bottom: 15px;
}

.faq-contact-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.faq-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.faq-contact-item:hover {
    background: rgba(255, 0, 255, 0.1);
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: var(--glow-primary);
}

.faq-contact-item i:first-child {
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-contact-item span {
    flex: 1;
}

.faq-contact-item i:last-child {
    color: var(--secondary);
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}

.faq-contact-item:hover i:last-child {
    opacity: 1;
}

.faq-contact-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.pulse-circle-small {
    width: 250px;
    height: 250px;
    border: 3px dashed var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-secondary);
    animation: rotate 20s linear infinite;
}

.pulse-circle-small i {
    font-size: 5rem;
    color: var(--secondary);
    filter: drop-shadow(var(--glow-secondary));
    animation: counterRotate 20s linear infinite;
}

/* Location Section */
.location-section {
    padding: 60px 0;
    background: var(--background);
}

.location-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.location-card i.fa-map-marker-alt {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    filter: drop-shadow(var(--glow-primary));
}

.location-card h3 {
    color: var(--text);
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.location-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.location-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 1rem;
}

.location-note i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        flex: 1 1 100%;
    }
    
    .faq-contact-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-contact-item {
        text-align: left;
    }
    
    .pulse-circle-small {
        width: 200px;
        height: 200px;
    }
    
    .pulse-circle-small i {
        font-size: 4rem;
    }
    
    .location-card {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-card {
        width: 100%;
        max-width: 100%;
    }
    
    .checkbox-group {
        flex-wrap: wrap;
    }
    
    .location-card h3 {
        font-size: 1.5rem;
    }
}
/* ===== LEGAL CONTENT STYLES (Affiliate Disclosure, Privacy, Terms, Cookies) ===== */

/* Legal Content Section */
.legal-content-section {
    padding: 60px 0;
    background: var(--background);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 50px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Legal Intro */
.legal-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

.legal-intro i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(255, 0, 255, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--primary);
    filter: drop-shadow(var(--glow-primary));
}

.legal-intro h2 {
    margin-bottom: 20px;
}

.legal-intro p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Legal Sections */
.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    box-shadow: var(--glow-primary);
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section p a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-section p a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Legal Lists */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.legal-list li i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.legal-list li a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.legal-list li a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Legal Highlight Box */
.legal-highlight-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
    padding: 25px 30px;
    margin: 30px 0;
}

.legal-highlight-box h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-highlight-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.legal-highlight-box p strong {
    color: var(--accent);
}

.legal-highlight-box .legal-list {
    margin: 15px 0 0 0;
}

.legal-highlight-box .legal-list li:last-child {
    margin-bottom: 0;
}

.legal-highlight-box .legal-list li i {
    color: var(--accent);
}

/* Summary Box */
.summary-box {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border-left: 4px solid var(--accent);
    margin: 40px 0;
}

.summary-box h4 {
    color: var(--primary);
}

.summary-box .legal-list li i {
    color: var(--primary);
}

/* Legal Footer */
.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.legal-footer p {
    color: var(--text-muted);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 5px 0;
}

.legal-footer p strong {
    color: var(--secondary);
    opacity: 1;
}

/* Subheadings inside sections */
.legal-section h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 20px 0 10px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-section h4:first-of-type {
    margin-top: 10px;
}

/* Contact information block */
.legal-section p strong {
    color: var(--secondary);
}

/* Address formatting */
.legal-section br {
    display: block;
    content: "";
    margin-top: 5px;
}

/* Nested lists */
.legal-list + h4 {
    margin-top: 25px;
}

/* External Links */
.legal-list a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-list a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px;
    }
    
    .legal-intro i {
        font-size: 3rem;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
    
    .legal-intro p {
        font-size: 1rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p {
        font-size: 0.95rem;
    }
    
    .legal-highlight-box {
        padding: 20px;
    }
    
    .legal-highlight-box p {
        font-size: 1rem;
    }
    
    .legal-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 20px 15px;
    }
    
    .legal-intro i {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
    
    .legal-section h3::after {
        width: 40px;
    }
    
    .legal-list li {
        align-items: flex-start;
    }
    
    .legal-list li i {
        margin-top: 2px;
    }
}
/* ===== PRIVACY PAGE ADDITIONAL STYLES ===== */

/* These styles work with the legal-content-section styles already added */

/* Subheadings inside sections */
.legal-section h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 20px 0 10px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-section h4:first-of-type {
    margin-top: 10px;
}

/* Contact information block */
.legal-section p strong {
    color: var(--secondary);
}

/* Address formatting */
.legal-section br {
    display: block;
    content: "";
    margin-top: 5px;
}

/* Nested lists */
.legal-list + h4 {
    margin-top: 25px;
}

/* CNPD Contact Info Styling */
.legal-section p:has(strong:contains("CNPD")) {
    background: rgba(255, 255, 0, 0.05);
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-section h4 {
        font-size: 1rem;
    }
    
    .legal-section p br {
        display: none;
    }
    
    .legal-section p {
        display: block;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .legal-section h4 {
        font-size: 0.95rem;
    }
}
/* ===== COOKIES PAGE STYLES ===== */

/* Cookies Table */
.cookies-table-wrapper {
    overflow-x: auto;
    margin: 20px 0 30px;
    border-radius: 4px;
    background: var(--background);
    border: 1px solid var(--border-light);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cookies-table thead {
    background: var(--primary);
}

.cookies-table thead tr th {
    padding: 12px 15px;
    text-align: left;
    color: var(--background);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookies-table tbody tr {
    border-bottom: 1px solid var(--border-light);
}

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

.cookies-table tbody tr td {
    padding: 12px 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.cookies-table tbody tr td:first-child {
    font-weight: 600;
    color: var(--secondary);
}

.cookies-table tbody tr:hover {
    background: rgba(255, 0, 255, 0.05);
}

/* Cookie Preferences Button */
.cookie-preferences-btn {
    margin: 25px 0 15px;
    text-align: center;
}

.cookie-preferences-btn .btn {
    padding: 12px 30px;
    font-size: 1rem;
    min-width: 250px;
}

/* External Links */
.legal-list a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-list a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .cookies-table thead tr th {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .cookies-table tbody tr td {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .cookie-preferences-btn .btn {
        width: 100%;
        padding: 12px 20px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .cookies-table thead tr th {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .cookies-table tbody tr td {
        padding: 8px;
        font-size: 0.8rem;
    }
}
/* ===== TERMS AND CONDITIONS PAGE STYLES ===== */

/* Legal section with alternating icons */
.legal-section .legal-list i.fa-times-circle {
    color: var(--primary);
}

.legal-section .legal-list i.fa-check-circle {
    color: var(--secondary);
}

/* Company identification */
.legal-section ul.legal-list li:first-child {
    margin-top: 5px;
}

/* Contact information */
.legal-section strong {
    color: var(--accent);
}

/* External links */
.legal-section a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Responsible gambling section highlight */
.legal-section.responsible-highlight {
    border-left: 4px solid var(--accent);
    padding-left: 25px;
    margin-left: -25px;
    background: linear-gradient(90deg, rgba(255, 255, 0, 0.03) 0%, transparent 100%);
    margin-top: 30px;
    margin-bottom: 30px;
}

.legal-section.responsible-highlight h3 {
    color: var(--accent);
}

.legal-section.responsible-highlight h3::after {
    background: var(--accent);
}

/* Help resources */
.legal-section ul.legal-list li .fa-check-circle + a {
    margin-left: 5px;
}

/* Last updated */
.legal-footer p strong {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-section.responsible-highlight {
        padding-left: 15px;
        margin-left: -15px;
    }
}

@media (max-width: 480px) {
    .legal-section ul.legal-list li {
        align-items: flex-start;
    }
    
    .legal-section ul.legal-list li i {
        margin-top: 3px;
    }
}
/* ===== RESPONSIBLE GAMBLING PAGE STYLES ===== */

/* Mission Section */
.rg-mission-section {
    padding: 60px 0;
    background: var(--background);
}

.rg-mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.rg-mission-content {
    flex: 2 1 500px;
}

.rg-mission-content h2 {
    margin-bottom: 20px;
}

.rg-mission-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.rg-mission-stats {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rg-stat-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.rg-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary);
    border-radius: 50%;
}

.rg-stat-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.rg-stat-card:hover .rg-stat-icon {
    border-color: var(--primary);
}

.rg-stat-card:hover .rg-stat-icon i {
    color: var(--primary);
}

.rg-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: var(--glow-accent);
}

.rg-stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Warning Signs Section */
.rg-warning-section {
    padding: 60px 0;
    background: var(--surface);
}

.rg-warning-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
}

.rg-warning-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px 25px;
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.rg-warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

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

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

.rg-warning-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.rg-warning-icon i {
    font-size: 2rem;
    color: var(--primary);
    filter: drop-shadow(var(--glow-primary));
}

.rg-warning-card:hover .rg-warning-icon {
    border-color: var(--secondary);
}

.rg-warning-card:hover .rg-warning-icon i {
    color: var(--secondary);
}

.rg-warning-card h3 {
    color: var(--text);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.rg-warning-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

.rg-warning-cta {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 0;
    padding: 20px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 4px;
    border-left: 4px solid var(--primary);
}

.rg-warning-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

/* Tips Section */
.rg-tips-section {
    padding: 60px 0;
    background: var(--background);
}

.rg-tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.rg-tips-content {
    flex: 2 1 500px;
}

.rg-tips-content h2 {
    margin-bottom: 30px;
}

.rg-tip-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
}

.rg-tip-item:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: var(--secondary);
    transform: translateX(5px);
}

.rg-tip-number {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--background);
    flex-shrink: 0;
    border: 2px solid var(--secondary);
}

.rg-tip-item:hover .rg-tip-number {
    background: var(--primary);
    border-color: var(--primary);
}

.rg-tip-text {
    flex: 1;
}

.rg-tip-text h4 {
    color: var(--text);
    margin-bottom: 5px;
    font-size: 1rem;
}

.rg-tip-text p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.rg-tips-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.pulse-shield {
    width: 300px;
    height: 300px;
    border: 3px dashed var(--secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-secondary);
    animation: rotate 20s linear infinite;
}

.pulse-shield i {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    filter: drop-shadow(var(--glow-secondary));
    animation: counterRotate 20s linear infinite;
}

.pulse-shield span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    animation: counterRotate 20s linear infinite;
}

.pulse-shield strong {
    font-size: 2rem;
    color: var(--primary);
    font-family: var(--font-heading);
    animation: counterRotate 20s linear infinite;
}

/* Tools Section */
.rg-tools-section {
    padding: 60px 0;
    background: var(--surface);
}

.rg-tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.rg-tool-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px 25px;
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    transition: var(--transition);
}

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

.rg-tool-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.rg-tool-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    filter: drop-shadow(var(--glow-primary));
}

.rg-tool-card:hover .rg-tool-icon {
    border-color: var(--secondary);
}

.rg-tool-card:hover .rg-tool-icon i {
    color: var(--secondary);
}

.rg-tool-card h3 {
    color: var(--text);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.rg-tool-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Help Section */
.rg-help-section {
    padding: 60px 0;
    background: var(--background);
}

.rg-help-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.rg-help-box h2 {
    margin-bottom: 15px;
}

.rg-help-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.rg-help-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.rg-help-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px 25px;
    flex: 1 1 250px;
    max-width: 280px;
    transition: var(--transition);
}

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

.rg-help-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    filter: drop-shadow(var(--glow-accent));
}

.rg-help-card h3 {
    color: var(--text);
    margin-bottom: 10px;
}

.rg-help-phone {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 10px 0;
    font-family: var(--font-heading);
}

.rg-help-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    margin: 10px 0;
    transition: var(--transition);
}

.rg-help-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Exclusion Section */
.rg-exclusion-section {
    padding: 60px 0;
    background: var(--surface);
}

.rg-exclusion-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.rg-exclusion-content {
    flex: 1 1 400px;
}

.rg-exclusion-content h2 {
    margin-bottom: 20px;
}

.rg-exclusion-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.rg-exclusion-content h4 {
    color: var(--text);
    margin: 20px 0 10px;
    font-family: var(--font-heading);
}

.rg-exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.rg-exclusion-list li {
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rg-exclusion-list li i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.rg-exclusion-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.pulse-exclusion-circle {
    width: 300px;
    height: 300px;
    border: 3px dashed var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
    animation: rotate 20s linear infinite;
}

.pulse-exclusion-circle i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 15px;
    filter: drop-shadow(var(--glow-primary));
    animation: counterRotate 20s linear infinite;
}

.pulse-exclusion-circle span {
    font-size: 1.5rem;
    color: var(--text);
    font-family: var(--font-heading);
    font-weight: 700;
    animation: counterRotate 20s linear infinite;
}

.pulse-exclusion-circle small {
    color: var(--text-muted);
    font-size: 1rem;
    animation: counterRotate 20s linear infinite;
}

/* Family Section */
.rg-family-section {
    padding: 60px 0;
    background: var(--background);
}

.rg-family-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.rg-family-box h2 {
    margin-bottom: 20px;
}

.rg-family-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.rg-family-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.rg-family-item {
    flex: 1 1 200px;
    max-width: 220px;
}

.rg-family-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--background);
    font-family: var(--font-heading);
    border: 2px solid var(--secondary);
}

.rg-family-item:hover .rg-family-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.rg-family-item h4 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1rem;
}

.rg-family-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .rg-mission-grid,
    .rg-tips-grid,
    .rg-exclusion-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .rg-mission-content h2,
    .rg-tips-content h2,
    .rg-exclusion-content h2 {
        text-align: center;
    }
    
    .rg-tip-item {
        text-align: left;
    }
    
    .rg-exclusion-list li {
        justify-content: center;
    }
    
    .rg-warning-cta p {
        font-size: 1rem;
    }
    
    .rg-help-phone {
        font-size: 1.5rem;
    }
    
    .pulse-shield,
    .pulse-exclusion-circle {
        width: 250px;
        height: 250px;
    }
    
    .pulse-shield i,
    .pulse-exclusion-circle i {
        font-size: 4rem;
    }
    
    .pulse-shield strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .rg-stat-number {
        font-size: 2rem;
    }
    
    .rg-tip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rg-tip-number {
        margin: 0 auto;
    }
    
    .pulse-shield,
    .pulse-exclusion-circle {
        width: 220px;
        height: 220px;
    }
    
    .rg-family-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .rg-family-item {
        max-width: 100%;
        width: 100%;
    }
}
/* ===== REVIEW PAGES STYLES - NEON PULSE THEME ===== */

/* Breadcrumb Section */
.breadcrumb-section {
    background: var(--surface);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-list a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.breadcrumb-list a:hover {
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

.breadcrumb-list i {
    color: var(--primary);
    font-size: 0.7rem;
}

.breadcrumb-list span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Review Hero */
.review-hero {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    border-bottom: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.review-hero::before {
    content: '⚡⚡⚡';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 12rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--primary);
}

.review-hero::after {
    content: '⚡⚡⚡';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 10rem;
    opacity: 0.03;
    color: var(--secondary);
    transform: rotate(-15deg);
}

.review-hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.review-hero-info {
    flex: 2 1 500px;
}

.review-brand {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.review-brand-logo {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--background);
    font-family: var(--font-heading);
    border: 2px solid var(--accent);
    box-shadow: var(--glow-primary);
}

.review-brand h1 {
    margin-bottom: 5px;
    font-size: 2.2rem;
}

.review-brand h1 span {
    font-size: 1.1rem;
    color: var(--secondary);
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-stars i {
    color: var(--accent);
    font-size: 1rem;
    filter: drop-shadow(var(--glow-accent));
}

.rating-score {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.rating-excellent {
    background: rgba(0, 255, 255, 0.1);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid var(--secondary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Stats */
.review-quick-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.quick-stat {
    display: flex;
    flex-direction: column;
}

.quick-stat .stat-label {
    font-size: 0.6rem;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.quick-stat .stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-body);
    margin-top: 3px;
}

/* Hero Actions */
.review-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Badge */
.review-hero-badge {
    flex: 1 1 200px;
    display: flex;
    justify-content: center;
}

.hero-badge-content {
    text-align: center;
    padding: 20px;
    background: rgba(255, 0, 255, 0.1);
    border: 2px dashed var(--primary);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.hero-badge-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.badge-tag {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-rank {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-heading);
    text-shadow: var(--glow-primary);
    margin: 5px 0;
}

.badge-text {
    display: block;
    color: var(--text);
    font-size: 0.7rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Review Content Section */
.review-content-section {
    padding: 60px 0;
    background: var(--background);
}

.review-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.review-main {
    flex: 3 1 600px;
}

.review-sidebar {
    flex: 1 1 300px;
}

/* Pros & Cons Card */
.pros-cons-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.pros-cons-card h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.pros-cons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pros-list, .cons-list {
    flex: 1 1 250px;
}

.pros-list h3, .cons-list h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pros-list h3 {
    color: var(--secondary);
}

.cons-list h3 {
    color: var(--primary);
}

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

.pros-list li, .cons-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.pros-list i {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 3px;
}

.cons-list i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 3px;
}

/* Verdict Card */
.verdict-card {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.verdict-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.verdict-score {
    text-align: center;
    min-width: 120px;
}

.score-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-heading);
    text-shadow: var(--glow-primary);
}

.score-max {
    color: var(--text-muted);
    font-size: 1rem;
    font-family: var(--font-body);
}

.verdict-text {
    flex: 1;
}

.verdict-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.verdict-recommend {
    color: var(--secondary);
    font-size: 0.9rem;
    font-family: var(--font-body);
    border-left: 3px solid var(--secondary);
    padding-left: 15px;
}

.verdict-recommend i {
    margin-right: 5px;
}

/* Bonus Detail Card */
.bonus-detail-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.bonus-detail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.bonus-detail-info {
    flex: 2 1 400px;
}

.bonus-highlight {
    background: rgba(255, 0, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid var(--primary);
}

.bonus-highlight.secondary {
    border-color: var(--secondary);
    background: rgba(0, 255, 255, 0.1);
}

.bonus-highlight .bonus-highlight-label {
    display: block;
    font-size: 0.7rem;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.bonus-highlight .bonus-highlight-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
    text-shadow: var(--glow-accent);
}

.bonus-detail-info h3, .bonus-detail-info h4 {
    color: var(--text);
    margin: 20px 0 10px;
    font-size: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-terms, .bonus-steps {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.bonus-terms li, .bonus-steps li {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.bonus-terms i, .bonus-steps i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.bonus-terms strong, .bonus-steps strong {
    color: var(--primary);
    margin-right: 5px;
}

.bonus-detail-score {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    box-shadow: var(--glow-secondary);
    margin-bottom: 15px;
}

.score-circle.small {
    width: 100px;
    height: 100px;
    font-size: 1rem;
}

.score-details {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.score-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.score-item span:last-child {
    color: var(--accent);
    font-weight: 600;
}

.bonus-tip {
    background: rgba(255, 255, 0, 0.1);
    border-left: 3px solid var(--accent);
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.bonus-tip p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.bonus-tip i {
    color: var(--accent);
    margin-right: 8px;
}

.score-text {
    color: var(--secondary);
    font-size: 0.8rem;
    text-align: center;
    font-family: var(--font-body);
}

/* Bonus Subsection */
.bonus-subsection {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

.bonus-subsection:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bonus-subsection h3 {
    color: var(--text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-subsection h3 i {
    color: var(--primary);
}

/* Review Sections */
.review-sections {
    margin-bottom: 30px;
}

.review-section-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 15px;
}

.review-section-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-section-card h3 i {
    color: var(--secondary);
}

.section-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.rating-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: var(--font-body);
}

.rating-text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.8rem;
    font-family: var(--font-body);
}

.review-section-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Highlight Section */
.review-section-card.highlight-section {
    border-left: 4px solid var(--primary);
    background: linear-gradient(90deg, rgba(255, 0, 255, 0.03) 0%, var(--surface) 100%);
}

.review-section-card.highlight-section h3 i {
    color: var(--primary);
}

/* FAQ Card */
.faq-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
}

.faq-card h3 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: var(--text);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

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

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

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

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question {
    background: rgba(255, 0, 255, 0.1);
    border-bottom: 1px solid var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    color: var(--primary);
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    top: 100px;
}

.sidebar-card h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-shadow: var(--glow-primary);
}

.score-breakdown {
    margin-bottom: 20px;
}

.score-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.score-row span:last-child {
    color: var(--accent);
    font-weight: 600;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-top: 15px;
    box-sizing: border-box;
}

/* Bonus Card */
.bonus-card {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border: 2px solid var(--primary);
}

.bonus-offer {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    margin: 10px 0;
    font-family: var(--font-heading);
    text-shadow: var(--glow-accent);
    line-height: 1.2;
}

.bonus-value-small {
    font-size: 1.2rem;
    color: var(--secondary);
    text-align: center;
    margin: 5px 0;
    font-family: var(--font-body);
}

.bonus-code {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 10px 0;
    font-family: var(--font-body);
}

.bonus-code strong {
    color: var(--primary);
    background: rgba(255, 0, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.bonus-info {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    margin: 10px 0;
    font-family: var(--font-body);
}

/* Highlight Card */
.highlight-card {
    border-left: 4px solid var(--secondary);
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.03) 0%, var(--surface) 100%);
}

.highlight-card h4 i {
    color: var(--secondary);
    margin-right: 5px;
}

/* Speed Meter */
.speed-meter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.speed-meter:last-of-type {
    border-bottom: none;
}

.speed-label {
    color: var(--text);
}

.speed-value {
    color: var(--secondary);
    font-weight: 600;
    background: rgba(0, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Power Odds List */
.power-odds-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.power-odds-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.power-event {
    color: var(--text);
}

.power-odd {
    color: var(--accent);
    font-weight: 700;
}

.normal-odd {
    color: var(--text-muted);
    font-size: 0.7rem;
    text-decoration: line-through;
    margin-left: 5px;
    opacity: 0.5;
}

.power-note {
    color: var(--secondary);
    font-size: 0.7rem;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
    font-family: var(--font-body);
}

/* Odds Comparison */
.comparison-note {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.odds-comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.odds-comparison-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.odds-book {
    color: var(--text);
}

.odds-value {
    color: var(--text-muted);
}

.odds-value.highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Calculator Items */
.calc-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.calc-item.highlight {
    color: var(--accent);
    font-weight: 700;
}

.constructor-total {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid var(--primary);
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-heading);
    display: flex;
    justify-content: space-between;
}

.constructor-total strong {
    color: var(--secondary);
}

/* Alternative List */
.alternative-list {
    list-style: none;
    padding: 0;
}

.alternative-list li {
    margin-bottom: 12px;
}

.alternative-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.alternative-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
    border-bottom-color: var(--primary);
}

.alt-name {
    color: inherit;
}

.alt-rating {
    color: var(--accent);
    font-weight: 600;
}

/* Last Updated */
.last-updated {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 5px;
}

.last-updated i {
    color: var(--secondary);
}

.disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.7;
    font-style: italic;
    font-family: var(--font-body);
    line-height: 1.5;
}

/* Related Reviews Section */
.related-reviews-section {
    padding: 60px 0;
    background: var(--surface);
    border-top: 2px solid var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.related-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 150px;
    max-width: 180px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
}

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

.related-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    color: var(--background);
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.related-card h4 {
    color: var(--text);
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

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

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '⚡⚡⚡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    opacity: 0.1;
    color: var(--background);
    white-space: nowrap;
    width: 100%;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    color: var(--background);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.banner-content h2 span {
    color: var(--accent);
}

.banner-content p {
    color: var(--background);
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .review-hero-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .review-brand {
        flex-direction: column;
    }
    
    .review-quick-stats {
        justify-content: center;
    }
    
    .review-hero-actions {
        justify-content: center;
    }
    
    .pros-cons-grid {
        flex-direction: column;
    }
    
    .verdict-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-detail-grid {
        flex-direction: column;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .related-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .related-card {
        max-width: 100%;
        width: 100%;
    }
    
    .sidebar-card {
        position: static;
    }
}

@media (max-width: 480px) {
    .review-quick-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badge-content {
        padding: 15px;
    }
    
    .badge-rank {
        font-size: 2.2rem;
    }
    
    .score-number {
        font-size: 2.5rem;
    }
    
    .review-brand-logo {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .review-brand h1 {
        font-size: 1.8rem;
    }
    
    .review-brand h1 span {
        font-size: 0.9rem;
    }
    
    .bonus-highlight .bonus-highlight-value {
        font-size: 1.5rem;
    }
}