/* ====================================
   IMPORT HEADER STYLES
   ==================================== */
@import url('header.css');

/* ====================================
   GLOBAL STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F5F0FF; /* Light purple background */
    color: #1A1A2F;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a {
    text-decoration: none;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 60px 0 30px;
    color: #1A1A2F;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #9F7AEA, #FBBF24);
    border-radius: 3px;
}

.gold-text {
    color: #FBBF24;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn-primary {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(159, 122, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(159, 122, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #9F7AEA;
    color: #9F7AEA;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #9F7AEA;
    color: #ffffff;
}

/* ====================================
   HERO SECTION - SPLIT LAYOUT
   ==================================== */
.hero {
    background: linear-gradient(135deg, #1A1A2F, #2A2A4A);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(159,122,234,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-split {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 400px;
}

.hero-right {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.hero-badge {
    background: rgba(251, 191, 36, 0.2);
    color: #FBBF24;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.hero-highlight {
    color: #FBBF24;
    position: relative;
    display: inline-block;
}

.hero-highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(159, 122, 234, 0.3);
    z-index: -1;
}

.hero-left p {
    color: #CBD5E1;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

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

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #FBBF24;
    line-height: 1;
}

.hero-stat-label {
    color: #94A3B8;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Right - Stats Card */
.hero-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    border-radius: 30px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-card-header span {
    color: #FBBF24;
    font-weight: 600;
}

.hero-card-header small {
    color: #94A3B8;
}

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

.hero-card-rank {
    width: 30px;
    height: 30px;
    background: #9F7AEA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-card-info {
    flex: 1;
}

.hero-card-info h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
}

.hero-card-info p {
    color: #FBBF24;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-card-bonus {
    color: #FBBF24;
    font-weight: 700;
}

/* ====================================
   HERO CARD LINK STYLES
   ==================================== */
.hero-card-item-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: all 0.3s;
    border-radius: 12px;
}

.hero-card-item-link:hover {
    background: rgba(159, 122, 234, 0.1);
    transform: translateX(5px);
}

.hero-card-item-link .hero-card-item {
    margin-bottom: 0;
    padding: 10px;
    border: none;
}

.hero-card-item-link:hover .hero-card-item {
    background: transparent;
}
/* ====================================
   BOOKMAKER CARDS - HORIZONTAL WITH LOGOS
   ==================================== */
.bookmakers-section {
    padding: 60px 0;
}

.bookmakers-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.bookmaker-row {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid #E2E8F0;
}

.bookmaker-row:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(159, 122, 234, 0.15);
    border-color: #9F7AEA;
}

.bookmaker-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F5F0FF, #E9E0FF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #9F7AEA;
    border: 2px solid #9F7AEA;
}

.bookmaker-info {
    flex: 2;
    min-width: 200px;
}

.bookmaker-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #1A1A2F;
}

.bookmaker-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #FBBF24;
    font-weight: 600;
}

.rating-number {
    background: #F1F5F9;
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
}

.bookmaker-bonus {
    flex: 1;
    min-width: 150px;
}

.bookmaker-bonus .bonus-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #9F7AEA;
}

.bookmaker-bonus .bonus-desc {
    font-size: 0.9rem;
    color: #64748B;
}

.bookmaker-features {
    flex: 1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 150px;
}

.feature-pill {
    background: #F1F5F9;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #475569;
    white-space: nowrap;
}

.bookmaker-actions {
    display: flex;
    gap: 10px;
    min-width: 200px;
    justify-content: flex-end;
}

.btn-bookmaker {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-bookmaker:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(159, 122, 234, 0.4);
}

.btn-review {
    background: transparent;
    border: 2px solid #9F7AEA;
    color: #9F7AEA;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-review:hover {
    background: #9F7AEA;
    color: white;
}

/* ====================================
   FEATURES SECTION - TIMELINE STYLE
   ==================================== */
.features-section {
    background: white;
    padding: 80px 0;
    margin: 40px 0;
}

.features-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 60px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.features-timeline:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #9F7AEA, #FBBF24, #9F7AEA, transparent);
    z-index: 1;
}

@media (max-width: 768px) {
    .features-timeline:before {
        display: none;
    }
}

.timeline-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.timeline-item h3 {
    margin-bottom: 10px;
    color: #1A1A2F;
}

.timeline-item p {
    color: #64748B;
    font-size: 0.9rem;
}

/* ====================================
   STATS SECTION
   ==================================== */
.stats-banner {
    background: linear-gradient(135deg, #1A1A2F, #2A2A4A);
    border-radius: 30px;
    padding: 50px;
    margin: 60px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    color: white;
}

.stat-block {
    text-align: center;
    min-width: 150px;
}

.stat-block .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FBBF24;
    line-height: 1;
}

.stat-block .label {
    color: #CBD5E1;
    margin-top: 10px;
    font-size: 1rem;
}

/* ====================================
   RESPONSIBLE SECTION
   ==================================== */
.resp {
    background: linear-gradient(135deg, #FEE2E2, #FEF3C7);
    text-align: center;
    padding: 40px 20px;
    margin: 60px 0;
    border-radius: 20px;
}

.resp p {
    font-size: 0.95rem;
    max-width: 900px;
    margin: auto;
    color: #991B1B;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta {
    background: linear-gradient(135deg, #1A1A2F, #2A2A4A);
    border-radius: 30px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    font-size: 1.2rem;
    padding: 16px 40px;
}

/* ====================================
   FOOTER - COMPLETE STYLING
   ==================================== */
footer {
    background: #0F0F1F;
    color: #CBD5E1;
    padding: 60px 20px 30px;
    font-size: 0.9rem;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
footer:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

footer:after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ====================================
   FOOTER LINKS
   ==================================== */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(159, 122, 234, 0.2);
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9F7AEA, #FBBF24);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #FBBF24;
}

.footer-links a:hover:after {
    width: 100%;
}

/* ====================================
   FOOTER DISCLAIMER - OPTION 4 (GLASS)
   ==================================== */
.footer-disclaimer {
    background: rgba(26, 26, 47, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    border-radius: 20px;
    padding: 30px 35px;
    margin: 40px auto;
    max-width: 1000px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Decorative elements */
.footer-disclaimer:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #9F7AEA, #FBBF24, #9F7AEA, transparent);
}

.footer-disclaimer:after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FBBF24, #9F7AEA, #FBBF24, transparent);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.2px;
}

.commission-note {
    color: #FBBF24;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 2px;
}

.footer-disclaimer a {
    color: #FBBF24;
    text-decoration: underline;
    text-decoration-color: rgba(159, 122, 234, 0.5);
    text-underline-offset: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-disclaimer a:hover {
    color: #9F7AEA;
    text-decoration-color: #FBBF24;
}

/* ====================================
   FOOTER LOGOS SECTION
   ==================================== */
.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(159, 122, 234, 0.2);
    border-bottom: 1px solid rgba(159, 122, 234, 0.2);
}

.footer-logo {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.footer-logo img {
    height: 50px;
    width: auto;
    background: white;
    padding: 8px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(159, 122, 234, 0.3);
}

.footer-logo:hover img {
    box-shadow: 0 10px 25px rgba(159, 122, 234, 0.4);
    border-color: #FBBF24;
}

/* Specific logo adjustments */
.footer-logo img[alt="Interdit aux moins de 18 ans"] {
    padding: 5px 10px;
    height: 45px;
}

/* ====================================
   FOOTER BOTTOM
   ==================================== */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.8;
    border-top: 1px solid rgba(159, 122, 234, 0.1);
}

.footer-bottom strong {
    color: #FBBF24;
    font-weight: 700;
    background: rgba(159, 122, 234, 0.1);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 1rem;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 768px) {
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-disclaimer {
        padding: 25px 20px;
        margin: 30px 15px;
    }
    
    .footer-disclaimer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-logos {
        gap: 15px;
        padding: 20px 0;
    }
    
    .footer-logo img {
        height: 40px;
        padding: 6px 12px;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-disclaimer {
        padding: 20px 15px;
    }
    
    .footer-disclaimer p {
        font-size: 0.85rem;
    }
    
    .footer-logos {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
    }
    
    .footer-bottom strong {
        font-size: 0.85rem;
    }
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .bookmaker-row {
        padding: 20px;
    }
    
    .bookmaker-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .bookmaker-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bookmaker-actions {
        width: 100%;
        justify-content: stretch;
    }
    
    .btn-bookmaker, .btn-review {
        flex: 1;
        text-align: center;
    }
    
    .stats-banner {
        padding: 30px;
    }
    
    .cta {
        padding: 40px 20px;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .stat-block .number {
        font-size: 2rem;
    }
}
/* ====================================
   ABOUT PAGE STYLES - Royal Purple Theme
   ==================================== */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.about-hero:before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.about-badge {
    background: rgba(159, 122, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    color: #FBBF24;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

.gold-gradient {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purple-gradient {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    color: #CBD5E1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Section */
.about-stats {
    padding: 40px 0;
    background: white;
}

.stats-grid-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-card-about {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #9F7AEA;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: #64748B;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mission Section */
.about-mission {
    padding: 80px 0;
    background: #F8FAFC;
}

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

.mission-text {
    flex: 1 1 400px;
}

.mission-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1A1A2F;
}

.mission-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-highlight {
    background: linear-gradient(135deg, rgba(159, 122, 234, 0.1), rgba(251, 191, 36, 0.1));
    border-left: 4px solid #9F7AEA;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.highlight-icon {
    font-size: 2.5rem;
}

.highlight-text {
    color: #1A1A2F;
    font-weight: 500;
}

.mission-image {
    flex: 1 1 300px;
}

.image-placeholder {
    background: linear-gradient(135deg, #1A1A2F, #2A2A4A);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    border: 1px solid rgba(159, 122, 234, 0.3);
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.placeholder-text {
    color: #CBD5E1;
    font-style: italic;
}

/* Values Section */
.about-values {
    padding: 80px 0;
    background: white;
}

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

.value-card-glass {
    background: rgba(26, 26, 47, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 0 1 calc(25% - 23px);
    min-width: 220px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(159, 122, 234, 0.15);
    border-color: #9F7AEA;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card-glass h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card-glass p {
    color: #64748B;
    line-height: 1.6;
}

/* How We Work Section */
.about-work {
    padding: 80px 0;
    background: #F8FAFC;
}

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

.work-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background: linear-gradient(180deg, #9F7AEA, #FBBF24, #9F7AEA);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(159, 122, 234, 0.3);
    z-index: 2;
}

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

.step-content h3 {
    color: #1A1A2F;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: #64748B;
    line-height: 1.8;
}

/* Team Section */
.about-team {
    padding: 80px 0;
    background: white;
}

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

.team-card {
    background: linear-gradient(135deg, #F8FAFC, white);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(159, 122, 234, 0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: #9F7AEA;
}

.team-avatar {
    font-size: 4rem;
    margin-bottom: 20px;
}

.team-card h3 {
    color: #1A1A2F;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-role {
    color: #9F7AEA;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.team-card p {
    color: #64748B;
    line-height: 1.7;
}

/* Commitment Section */
.about-commitment {
    padding: 60px 0;
    background: #F8FAFC;
}

.commitment-box {
    background: linear-gradient(135deg, #1A1A2F, #2A2A4A);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    color: white;
}

.commitment-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.commitment-box p {
    color: #CBD5E1;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.commitment-logo img {
    height: 50px;
    background: white;
    padding: 8px 15px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.commitment-logo:hover img {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(159, 122, 234, 0.3);
}

/* FAQ Section */
.about-faq {
    padding: 80px 0;
    background: white;
}

.faq-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item-about {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #9F7AEA;
}

.faq-item-about h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item-about p {
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

.faq-item-about a {
    color: #9F7AEA;
    text-decoration: none;
    font-weight: 600;
}

.faq-item-about a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-about {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    border-radius: 30px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-about p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .value-card-glass {
        flex: 0 1 calc(50% - 15px);
    }
    
    .team-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .mission-grid {
        flex-direction: column;
    }
    
    .value-card-glass {
        flex: 0 1 100%;
    }
    
    .team-card {
        flex: 0 1 100%;
    }
    
    .faq-grid-about {
        grid-template-columns: 1fr;
    }
    
    .work-timeline:before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .commitment-box {
        padding: 40px 20px;
    }
    
    .cta-about {
        padding: 40px 20px;
    }
    
    .cta-about h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid-about {
        gap: 20px;
    }
    
    .stat-card-about {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-highlight {
        flex-direction: column;
        text-align: center;
    }
}
/* ====================================
   METHODOLOGY PAGE STYLES
   ==================================== */

/* Methodology Hero */
.methodology-hero {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.methodology-hero:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.methodology-hero:after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.methodology-badge {
    background: rgba(159, 122, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    color: #FBBF24;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.methodology-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

.methodology-hero p {
    color: #CBD5E1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Section */
.methodology-stats {
    padding: 40px 0;
    background: white;
}

.stats-grid-methodology {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-card-methodology {
    text-align: center;
    min-width: 150px;
}

.stat-card-methodology .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #9F7AEA;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-card-methodology .stat-label {
    color: #64748B;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Main Criteria */
.criteria-main {
    padding: 80px 0;
    background: #F8FAFC;
}

.criteria-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #64748B;
    font-size: 1.1rem;
}

.criteria-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pillar-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(159, 122, 234, 0.1);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(159, 122, 234, 0.15);
    border-color: #9F7AEA;
}

.pillar-header {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pillar-percent {
    background: #FBBF24;
    color: #0F0F1F;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.pillar-header h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

.pillar-content {
    padding: 25px;
}

.pillar-content p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.pillar-list li {
    padding: 8px 0;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
}

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

/* Detailed Process */
.detailed-process {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    max-width: 900px;
    margin: 40px auto 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.step-marker {
    position: relative;
    width: 60px;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(159, 122, 234, 0.3);
    position: relative;
    z-index: 2;
}

.step-line {
    position: absolute;
    top: 50px;
    left: 24px;
    width: 2px;
    height: calc(100% + 30px);
    background: linear-gradient(180deg, #9F7AEA, #FBBF24);
    z-index: 1;
}

.process-step:last-child .step-line {
    display: none;
}

.step-card {
    flex: 1;
    background: #F8FAFC;
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid #9F7AEA;
    margin-bottom: 20px;
}

.step-card h3 {
    color: #1A1A2F;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-card p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-detail {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.detail-badge {
    background: white;
    border: 1px solid rgba(159, 122, 234, 0.3);
    color: #9F7AEA;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Scoring System */
.scoring-system {
    padding: 80px 0;
    background: #F8FAFC;
}

.scoring-grid {
    max-width: 700px;
    margin: 40px auto;
}

.scoring-item {
    margin-bottom: 25px;
}

.scoring-category {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.category-name {
    color: #1A1A2F;
    font-weight: 600;
}

.category-weight {
    color: #9F7AEA;
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #E2E8F0;
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9F7AEA, #FBBF24);
    border-radius: 50px;
}

.scoring-note {
    background: rgba(159, 122, 234, 0.1);
    border-left: 4px solid #9F7AEA;
    padding: 20px;
    border-radius: 12px;
    max-width: 700px;
    margin: 30px auto 0;
}

.scoring-note p {
    color: #475569;
    margin: 0;
}

/* Transparency Section */
.transparency-section {
    padding: 60px 0;
    background: white;
}

.transparency-box {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    border-radius: 30px;
    padding: 60px;
    color: white;
}

.transparency-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.transparency-box p {
    color: #CBD5E1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.transparency-item {
    flex: 0 1 calc(25% - 23px);
    min-width: 200px;
    text-align: center;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(159, 122, 234, 0.3);
}

.transparency-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.transparency-item h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.transparency-item p {
    color: #CBD5E1;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.methodology-faq {
    padding: 80px 0;
    background: white;
}

.faq-grid-methodology {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item-methodology {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #FBBF24;
}

.faq-item-methodology h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item-methodology p {
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

.faq-item-methodology a {
    color: #9F7AEA;
    text-decoration: none;
    font-weight: 600;
}

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

/* CTA Section */
.cta-methodology {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    border-radius: 30px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
    color: white;
}

.cta-methodology h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-methodology p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .pillar-card {
        flex: 0 1 calc(50% - 15px);
    }
    
    .transparency-item {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .methodology-hero h1 {
        font-size: 2rem;
    }
    
    .pillar-card {
        flex: 0 1 100%;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-marker {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .step-line {
        display: none;
    }
    
    .faq-grid-methodology {
        grid-template-columns: 1fr;
    }
    
    .transparency-item {
        flex: 0 1 100%;
    }
    
    .transparency-box {
        padding: 40px 20px;
    }
    
    .cta-methodology {
        padding: 40px 20px;
    }
    
    .cta-methodology h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid-methodology {
        gap: 20px;
    }
    
    .stat-card-methodology {
        min-width: 120px;
    }
    
    .stat-card-methodology .stat-number {
        font-size: 2rem;
    }
    
    .pillar-header {
        flex-direction: column;
        text-align: center;
    }
}
/* ====================================
   RESPONSIBLE GAMBLING PAGE STYLES
   ==================================== */

/* Hero Section */
.responsible-hero {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.responsible-hero:before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.responsible-badge {
    background: rgba(159, 122, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    color: #FBBF24;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.responsible-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

.responsible-hero p {
    color: #CBD5E1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Warning Banner */
.warning-banner {
    padding: 30px 0;
    background: #FEE2E2;
}

.warning-content {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid #DC2626;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.warning-icon {
    font-size: 2.5rem;
}

.warning-text h3 {
    color: #991B1B;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.warning-text p {
    color: #7F1D1D;
    margin: 0;
}

.warning-text strong {
    color: #DC2626;
    font-size: 1.1rem;
}

/* Key Principles */
.key-principles {
    padding: 80px 0;
    background: white;
}

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

.principle-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #F8FAFC;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(159, 122, 234, 0.1);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(159, 122, 234, 0.1);
    border-color: #9F7AEA;
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.principle-card h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.principle-card p {
    color: #64748B;
    line-height: 1.6;
}

/* Warning Signs */
.warning-signs {
    padding: 80px 0;
    background: #F8FAFC;
}

.signs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.signs-column {
    flex: 1 1 300px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.signs-column h3 {
    color: #1A1A2F;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FBBF24;
}

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

.signs-list li {
    padding: 10px 0;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
}

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

.signs-cta {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(159, 122, 234, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.signs-cta p {
    color: #1A1A2F;
    font-weight: 500;
    margin: 0;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: white;
}

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

.tool-card-glass {
    flex: 0 1 calc(25% - 23px);
    min-width: 240px;
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.tool-card-glass:hover {
    transform: translateY(-5px);
    border-color: #9F7AEA;
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tool-card-glass h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tool-card-glass p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tool-note {
    background: #F1F5F9;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #475569;
}

/* ANJ Section */
.anj-section {
    padding: 60px 0;
    background: #F8FAFC;
}

.anj-glass-box {
    background: rgba(26, 26, 47, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
}

.anj-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.anj-logo-large {
    height: 60px;
    background: white;
    padding: 10px 20px;
    border-radius: 12px;
}

.anj-header h2 {
    color: #1A1A2F;
    font-size: 2rem;
}

.anj-glass-box p {
    color: #475569;
    max-width: 700px;
    margin: 0 auto 30px;
}

.anj-missions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.anj-mission {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mission-badge {
    font-size: 1.2rem;
}

.anj-footer {
    border-top: 1px solid rgba(159, 122, 234, 0.2);
    padding-top: 30px;
}

.anj-footer p {
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #9F7AEA;
    color: #9F7AEA;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #9F7AEA;
    color: white;
}

/* Help Resources */
.help-resources {
    padding: 80px 0;
    background: white;
}

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

.resource-card-glass {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s;
}

.resource-card-glass:hover {
    transform: translateY(-5px);
    border-color: #FBBF24;
}

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

.resource-icon {
    font-size: 2rem;
}

.resource-header h3 {
    color: #1A1A2F;
    font-size: 1.2rem;
}

.resource-card-glass p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-contact {
    background: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.resource-phone {
    color: #9F7AEA;
    font-weight: 700;
    margin-bottom: 5px;
}

.resource-web {
    color: #64748B;
    font-size: 0.9rem;
    word-break: break-all;
}

.resource-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.resource-badge {
    background: #F1F5F9;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #475569;
}

/* Self Assessment */
.self-assessment {
    padding: 60px 0;
    background: #F8FAFC;
}

.assessment-box {
    background: white;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.assessment-box h2 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 2rem;
}

.assessment-box p {
    color: #64748B;
    margin-bottom: 30px;
}

.assessment-questions {
    max-width: 600px;
    margin: 0 auto 30px;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #F1F5F9;
    text-align: left;
}

.question-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.question-text {
    color: #475569;
    flex: 1;
}

.assessment-result {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.assessment-result p {
    color: #92400E;
    margin: 0;
}

/* Parental Control */
.parental-control {
    padding: 60px 0;
    background: white;
}

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

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

.parental-content h2 {
    color: #1A1A2F;
    margin-bottom: 20px;
    font-size: 2rem;
}

.parental-content p {
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.parental-list li {
    padding: 10px 0;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
}

.parental-image {
    flex: 1 1 300px;
}

.image-placeholder-small {
    background: linear-gradient(135deg, #1A1A2F, #2A2A4A);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    color: white;
    border: 1px solid rgba(159, 122, 234, 0.3);
}
/* ====================================
   CONTACT PAGE STYLES
   ==================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.contact-badge {
    background: rgba(159, 122, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    color: #FBBF24;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

.contact-hero p {
    color: #CBD5E1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-cards {
    padding: 60px 0;
    background: white;
}

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

.info-card-glass {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s;
}

.info-card-glass:hover {
    transform: translateY(-5px);
    border-color: #9F7AEA;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card-glass h3 {
    color: #1A1A2F;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-card-glass p {
    color: #64748B;
    margin-bottom: 15px;
}

.info-link {
    display: inline-block;
    color: #9F7AEA;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-decoration: none;
    word-break: break-all;
}

.info-link:hover {
    color: #FBBF24;
}

.info-note {
    display: block;
    color: #94A3B8;
    font-size: 0.85rem;
}

.chat-disabled {
    color: #94A3B8;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.urgent-card {
    background: rgba(254, 226, 226, 0.3);
    border-color: rgba(220, 38, 38, 0.3);
}

.urgent-card:hover {
    border-color: #DC2626;
}

.urgent-link {
    color: #DC2626;
    font-size: 1.3rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: #F8FAFC;
}

.form-glass-box {
    background: white;
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(159, 122, 234, 0.2);
}

.form-glass-box h2 {
    color: #1A1A2F;
    margin-bottom: 10px;
    font-size: 2rem;
    text-align: center;
}

.form-glass-box > p {
    color: #64748B;
    text-align: center;
    margin-bottom: 30px;
}

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

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

.form-row .form-group {
    flex: 1 1 200px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #1A1A2F;
}

.form-control {
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: #F8FAFC;
}

.form-control:focus {
    outline: none;
    border-color: #9F7AEA;
    box-shadow: 0 0 0 3px rgba(159, 122, 234, 0.2);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #9F7AEA;
}

.checkbox-group label {
    font-weight: 400;
    color: #475569;
    cursor: pointer;
}

.checkbox-group a {
    color: #9F7AEA;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.form-success h3 {
    color: #059669;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.form-success p {
    color: #475569;
    margin: 0;
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: white;
}

.faq-grid-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item-contact {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #9F7AEA;
}

.faq-item-contact h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item-contact p {
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

.faq-item-contact a {
    color: #9F7AEA;
    text-decoration: none;
    font-weight: 600;
}

.faq-item-contact a:hover {
    text-decoration: underline;
}

/* Office Hours */
.office-hours {
    padding: 60px 0;
    background: #F8FAFC;
}

.hours-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hours-icon {
    font-size: 4rem;
    flex: 0 0 auto;
}

.hours-content {
    flex: 1;
}

.hours-content h3 {
    color: #1A1A2F;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(159, 122, 234, 0.2);
}

.day {
    color: #475569;
    font-weight: 600;
}

.time {
    color: #9F7AEA;
    font-weight: 600;
}

.hours-note {
    color: #64748B;
    font-style: italic;
    margin: 0;
}

/* Office Location */
.office-location {
    padding: 0 0 60px;
    background: #F8FAFC;
}

.location-glass-box {
    background: white;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    border: 1px solid rgba(159, 122, 234, 0.2);
}

.location-icon {
    font-size: 4rem;
    flex: 0 0 auto;
}

.location-content {
    flex: 1;
}

.location-content h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.address {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 10px;
}

.location-note {
    color: #94A3B8;
    font-style: italic;
    margin: 0;
}

/* Response Promise */
.response-promise {
    padding: 40px 0;
    background: white;
}

.promise-box {
    text-align: center;
}

.promise-box h2 {
    color: #1A1A2F;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.promise-item {
    text-align: center;
    min-width: 150px;
}

.promise-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #9F7AEA;
    line-height: 1;
    margin-bottom: 10px;
}

.promise-text {
    color: #64748B;
}

/* CTA Section */
.cta-contact {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    border-radius: 30px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
    color: white;
}

.cta-contact h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-contact p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .info-card-glass {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .form-glass-box {
        padding: 30px 20px;
    }
    
    .faq-grid-contact {
        grid-template-columns: 1fr;
    }
    
    .info-card-glass {
        flex: 0 1 100%;
    }
    
    .hours-glass-box {
        flex-direction: column;
        text-align: center;
    }
    
    .location-glass-box {
        flex-direction: column;
        text-align: center;
    }
    
    .hour-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .promise-grid {
        gap: 20px;
    }
    
    .cta-contact {
        padding: 40px 20px;
    }
    
    .cta-contact h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
    }
    
    .checkbox-group {
        align-items: flex-start;
    }
    
    .promise-item {
        min-width: 120px;
    }
    
    .promise-number {
        font-size: 2rem;
    }
}
/* ====================================
   AFFILIATE DISCLOSURE PAGE STYLES
   ==================================== */

/* Disclosure Hero */
.disclosure-hero {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.disclosure-hero:before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.disclosure-badge {
    background: rgba(159, 122, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    color: #FBBF24;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.disclosure-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

.disclosure-hero p {
    color: #CBD5E1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.disclosure-intro {
    padding: 60px 0;
    background: white;
}

.intro-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-icon {
    font-size: 4rem;
    flex: 0 0 auto;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.intro-text p {
    color: #64748B;
    line-height: 1.8;
    margin: 0;
}

/* Main Disclosure Grid */
.main-disclosure {
    padding: 40px 0 80px;
    background: #F8FAFC;
}

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

.disclosure-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(159, 122, 234, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.disclosure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(159, 122, 234, 0.15);
    border-color: #9F7AEA;
}

.disclosure-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9F7AEA, #FBBF24);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.disclosure-card h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.disclosure-card p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 20px;
}

.disclosure-card a {
    color: #9F7AEA;
    text-decoration: none;
    font-weight: 600;
}

.disclosure-card a:hover {
    text-decoration: underline;
}

.card-highlight {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.card-highlight.success {
    background: #DCFCE7;
    border-left-color: #059669;
}

.highlight-label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: #92400E;
}

.card-highlight.success .highlight-label {
    color: #065F46;
}

.card-highlight p {
    margin: 0;
    color: #92400E;
}

.card-highlight.success p {
    color: #065F46;
}

.integrity-badge {
    display: inline-block;
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.compliance-list li {
    padding: 5px 0;
    color: #64748B;
}

/* Quick Summary */
.quick-summary {
    padding: 60px 0;
    background: white;
}

.summary-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 50px;
}

.summary-glass-box h2 {
    color: #1A1A2F;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.summary-items {
    max-width: 700px;
    margin: 0 auto;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.summary-marker {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.summary-text {
    color: #475569;
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0;
    background: #F8FAFC;
}

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

.comparison-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 300px;
    padding: 40px;
    border-radius: 20px;
}

.comparison-card.negative {
    background: #FEE2E2;
    border: 1px solid #DC2626;
}

.comparison-card.positive {
    background: #DCFCE7;
    border: 1px solid #059669;
}

.comparison-card h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.comparison-card.negative h3 {
    color: #991B1B;
}

.comparison-card.positive h3 {
    color: #065F46;
}

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

.comparison-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-card.negative li {
    color: #7F1D1D;
}

.comparison-card.positive li {
    color: #065F46;
}

/* FAQ Section */
.disclosure-faq {
    padding: 80px 0;
    background: white;
}

.faq-grid-disclosure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item-disclosure {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #9F7AEA;
}

.faq-item-disclosure h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item-disclosure p {
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    padding: 40px 0;
    background: #F8FAFC;
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    color: #475569;
    font-weight: 500;
}

/* Responsible Reminder */
.responsible-reminder {
    padding: 20px 0;
    background: white;
}

.reminder-box {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.reminder-box p {
    color: #92400E;
    margin: 0;
}

/* CTA Section */
.cta-disclosure {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    border-radius: 30px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
    color: white;
}

.cta-disclosure h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-disclosure p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.cta-buttons .btn-primary {
    background: #FBBF24;
    color: #1A1A2F;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #9F7AEA;
}

/* Responsive */
@media (max-width: 1024px) {
    .disclosure-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .disclosure-hero h1 {
        font-size: 2rem;
    }
    
    .intro-glass-box {
        flex-direction: column;
        text-align: center;
    }
    
    .disclosure-card {
        flex: 0 1 100%;
    }
    
    .comparison-card {
        flex: 0 1 100%;
    }
    
    .faq-grid-disclosure {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
        gap: 15px;
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .cta-disclosure {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .summary-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .disclosure-card {
        padding: 25px;
    }
    
    .summary-glass-box {
        padding: 30px 20px;
    }
}
/* ====================================
   PRIVACY PAGE STYLES
   ==================================== */

/* Privacy Hero */
.privacy-hero {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.privacy-hero:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.privacy-badge {
    background: rgba(159, 122, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    color: #FBBF24;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.privacy-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

.privacy-hero p {
    color: #CBD5E1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Last Updated */
.last-updated-section {
    padding: 30px 0 0;
    background: white;
}

.last-updated-badge {
    display: flex;
    justify-content: center;
}

.last-updated-badge span {
    background: #F1F5F9;
    color: #64748B;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
}

/* Intro */
.privacy-intro {
    padding: 30px 0 20px;
    background: white;
}

.intro-privacy-box {
    background: #F8FAFC;
    border-left: 4px solid #9F7AEA;
    padding: 30px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-privacy-box p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Main Privacy Grid */
.privacy-main {
    padding: 40px 0 60px;
    background: white;
}

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

.privacy-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #F8FAFC;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(159, 122, 234, 0.1);
    transition: transform 0.3s;
}

.privacy-card:hover {
    transform: translateY(-5px);
    border-color: #9F7AEA;
}

.privacy-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.privacy-card h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.privacy-card p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.privacy-list li {
    padding: 8px 0;
    color: #475569;
    border-bottom: 1px solid #E2E8F0;
}

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

.privacy-list strong {
    color: #9F7AEA;
}

.privacy-note {
    background: #EFF6FF;
    border-left: 4px solid #2563EB;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
}

.privacy-note span {
    color: #1E40AF;
    font-size: 0.9rem;
}

.privacy-link {
    margin-top: 15px;
}

.btn-small {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(159, 122, 234, 0.3);
}

.mt-3 {
    margin-top: 15px;
}

/* Rights Section */
.rights-section {
    padding: 60px 0;
    background: #F8FAFC;
}

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

.rights-card {
    flex: 0 1 calc(33.333% - 17px);
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.rights-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.rights-card h3 {
    color: #1A1A2F;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.rights-card p {
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.rights-exercise {
    background: white;
    border-radius: 16px;
    padding: 35px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(159, 122, 234, 0.2);
}

.rights-exercise h3 {
    color: #1A1A2F;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.rights-exercise p {
    color: #475569;
    margin-bottom: 20px;
    text-align: center;
}

.exercise-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.exercise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F8FAFC;
    padding: 12px 20px;
    border-radius: 50px;
}

.exercise-label {
    font-weight: 600;
    color: #1A1A2F;
}

.exercise-item a {
    color: #9F7AEA;
    text-decoration: none;
}

.exercise-item a:hover {
    text-decoration: underline;
}

.exercise-note {
    color: #64748B;
    font-style: italic;
    margin: 0;
}

/* CNIL Section */
.cnil-section {
    padding: 40px 0;
    background: white;
}

.cnil-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cnil-icon {
    font-size: 3rem;
    flex: 0 0 auto;
}

.cnil-content {
    flex: 1;
}

.cnil-content h3 {
    color: #1A1A2F;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cnil-content p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cnil-link a {
    color: #9F7AEA;
    font-weight: 600;
    text-decoration: none;
}

.cnil-link a:hover {
    text-decoration: underline;
}

/* Children Section */
.children-section {
    padding: 40px 0;
    background: #F8FAFC;
}

.children-box {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.children-icon {
    font-size: 3rem;
    flex: 0 0 auto;
}

.children-content {
    flex: 1;
}

.children-content h3 {
    color: #92400E;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.children-content p {
    color: #7B341E;
    line-height: 1.7;
    margin: 0;
}

/* Changes Section */
.changes-section {
    padding: 40px 0;
    background: white;
}

.changes-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.changes-glass-box h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.changes-glass-box p {
    color: #64748B;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 10px;
}

/* Privacy Contact */
.privacy-contact {
    padding: 40px 0;
    background: #F8FAFC;
}

.contact-privacy-box {
    background: linear-gradient(135deg, #1A1A2F, #2A2A4A);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    color: white;
}

.contact-privacy-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-privacy-box p {
    color: #CBD5E1;
    margin-bottom: 30px;
}

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

.contact-privacy-buttons .btn-primary {
    background: #FBBF24;
    color: #1A1A2F;
}

.contact-privacy-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.contact-privacy-buttons .btn-secondary:hover {
    background: white;
    color: #1A1A2F;
}

/* Responsive */
@media (max-width: 1024px) {
    .privacy-card {
        flex: 0 1 calc(50% - 15px);
    }
    
    .rights-card {
        flex: 0 1 calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-card {
        flex: 0 1 100%;
    }
    
    .rights-card {
        flex: 0 1 100%;
    }
    
    .exercise-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .exercise-item {
        width: 100%;
        justify-content: center;
    }
    
    .cnil-glass-box {
        flex-direction: column;
        text-align: center;
    }
    
    .children-box {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-privacy-box {
        padding: 40px 20px;
    }
    
    .contact-privacy-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .privacy-card {
        padding: 25px;
    }
    
    .intro-privacy-box {
        padding: 20px;
    }
    
    .intro-privacy-box p {
        font-size: 1rem;
    }
    
    .rights-exercise {
        padding: 25px;
    }
}
/* ====================================
   COOKIES PAGE STYLES
   ==================================== */

/* Cookies Hero */
.cookies-hero {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.cookies-hero:before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cookies-badge {
    background: rgba(159, 122, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    color: #FBBF24;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.cookies-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

.cookies-hero p {
    color: #CBD5E1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro */
.cookies-intro {
    padding: 30px 0 20px;
    background: white;
}

.intro-cookies-box {
    background: #F8FAFC;
    border-left: 4px solid #9F7AEA;
    padding: 30px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-cookies-box p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* What are cookies */
.what-are-cookies {
    padding: 40px 0;
    background: white;
}

.cookies-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
}

.cookies-icon-header {
    font-size: 4rem;
    margin-bottom: 20px;
}

.cookies-glass-box h2 {
    color: #1A1A2F;
    margin-bottom: 20px;
    font-size: 2rem;
}

.cookies-glass-box p {
    color: #64748B;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* Cookie Types */
.cookie-types {
    padding: 60px 0;
    background: #F8FAFC;
}

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

.cookie-type-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cookie-type-card.essential .cookie-type-header {
    background: linear-gradient(135deg, #2563EB, #1E40AF);
}

.cookie-type-card.performance .cookie-type-header {
    background: linear-gradient(135deg, #059669, #047857);
}

.cookie-type-card.functionality .cookie-type-header {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.cookie-type-card.targeting .cookie-type-header {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
}

.cookie-type-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.cookie-badge {
    font-weight: 700;
    font-size: 1.1rem;
}

.cookie-required, .cookie-optional {
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.cookie-type-content {
    padding: 25px;
}

.cookie-type-content p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cookie-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.cookie-list li {
    padding: 6px 0;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
}

.cookie-duration {
    background: #F1F5F9;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    color: #475569;
    font-size: 0.85rem;
}

/* Third Party */
.third-party {
    padding: 60px 0;
    background: white;
}

.third-party-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 50px;
}

.third-party-glass-box h2 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 2rem;
    text-align: center;
}

.third-party-glass-box p {
    color: #64748B;
    text-align: center;
    margin-bottom: 40px;
}

.third-party-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.third-party-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F8FAFC;
    padding: 20px;
    border-radius: 16px;
    border-left: 4px solid #9F7AEA;
}

.third-party-logo {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.third-party-info h4 {
    color: #1A1A2F;
    margin-bottom: 5px;
}

.third-party-info p {
    color: #64748B;
    margin-bottom: 5px;
    text-align: left;
}

.third-party-info a {
    color: #9F7AEA;
    text-decoration: none;
    font-size: 0.9rem;
}

.third-party-info a:hover {
    text-decoration: underline;
}

.third-party-note {
    color: #94A3B8;
    font-size: 0.85rem;
}

/* Consent Banner Preview */
.consent-preview {
    padding: 60px 0;
    background: #F8FAFC;
}

.consent-banner-preview {
    background: #1A1A2F;
    border-radius: 16px;
    padding: 25px;
    max-width: 900px;
    margin: 30px auto 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.preview-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.preview-icon {
    font-size: 2.5rem;
    background: rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.preview-text {
    flex: 1;
    min-width: 250px;
}

.preview-text h4 {
    color: white;
    margin-bottom: 5px;
}

.preview-text p {
    color: #CBD5E1;
    margin: 0;
    font-size: 0.9rem;
}

.preview-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.preview-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.preview-btn.accept {
    background: #FBBF24;
    color: #1A1A2F;
}

.preview-btn.accept:hover {
    background: #F59E0B;
}

.preview-btn.customize {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.preview-btn.customize:hover {
    background: rgba(255,255,255,0.2);
}

.preview-btn.refuse {
    background: transparent;
    color: #CBD5E1;
}

.preview-btn.refuse:hover {
    color: white;
}

.preview-note {
    text-align: center;
    color: #64748B;
    font-size: 0.9rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Manage Cookies */
.manage-cookies {
    padding: 60px 0;
    background: white;
}

.manage-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 50px;
}

.manage-glass-box h2 {
    color: #1A1A2F;
    margin-bottom: 40px;
    font-size: 2rem;
    text-align: center;
}

.manage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.manage-item {
    flex: 1 1 300px;
}

.manage-item h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.manage-item p {
    color: #64748B;
    margin-bottom: 20px;
}

.demo-toggle {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #E2E8F0;
}

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

.toggle-status {
    color: #059669;
    font-weight: 600;
    font-size: 0.85rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #9F7AEA;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.manage-btn {
    display: inline-block;
    padding: 12px 25px;
}

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

.browser-list li {
    padding: 8px 0;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
}

.browser-list strong {
    color: #9F7AEA;
}

/* Retention Section */
.retention-section {
    padding: 40px 0;
    background: #F8FAFC;
}

.retention-box {
    background: white;
    border-left: 4px solid #9F7AEA;
    padding: 30px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.retention-box h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
}

.retention-box p {
    color: #475569;
    margin-bottom: 15px;
}

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

.retention-list li {
    padding: 8px 0;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
}

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

/* Cookies Rights */
.cookies-rights {
    padding: 60px 0;
    background: white;
}

.rights-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
}

.rights-glass-box h2 {
    color: #1A1A2F;
    margin-bottom: 20px;
    font-size: 2rem;
}

.rights-glass-box p {
    color: #64748B;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 15px;
}

.rights-glass-box a {
    color: #9F7AEA;
    text-decoration: none;
}

.rights-glass-box a:hover {
    text-decoration: underline;
}

/* FAQ */
.cookies-faq {
    padding: 60px 0;
    background: #F8FAFC;
}

.faq-grid-cookies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item-cookies {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #9F7AEA;
}

.faq-item-cookies h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item-cookies p {
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

/* CNIL Link */
.cnil-link-section {
    padding: 40px 0;
    background: white;
}

.cnil-cookies-box {
    text-align: center;
}

.cnil-cookies-box p {
    color: #475569;
    margin-bottom: 20px;
}

/* CTA */
.cta-cookies {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    border-radius: 30px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
    color: white;
}

.cta-cookies h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-cookies p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .cookies-hero h1 {
        font-size: 2rem;
    }
    
    .cookies-glass-box {
        padding: 30px 20px;
    }
    
    .cookie-type-card {
        flex: 0 1 100%;
    }
    
    .preview-content {
        flex-direction: column;
        text-align: center;
    }
    
    .preview-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .manage-grid {
        flex-direction: column;
    }
    
    .faq-grid-cookies {
        grid-template-columns: 1fr;
    }
    
    .cta-cookies {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .preview-buttons {
        flex-direction: column;
    }
    
    .preview-btn {
        width: 100%;
    }
    
    .third-party-item {
        flex-direction: column;
        text-align: center;
    }
    
    .toggle-item {
        flex-direction: column;
        gap: 10px;
    }
}
/* ====================================
   REVIEW LISTING PAGE STYLES
   ==================================== */

/* Review Hero */
.review-hero {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.review-hero:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.review-badge {
    background: rgba(159, 122, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    color: #FBBF24;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.review-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

.review-hero p {
    color: #CBD5E1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Review Stats */
.review-stats {
    padding: 40px 0;
    background: white;
}

.stats-review-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-review-item {
    text-align: center;
    min-width: 150px;
}

.stat-review-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #9F7AEA;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-review-label {
    color: #64748B;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Filter Section */
.review-filter-section {
    padding: 30px 0 50px;
    background: #F8FAFC;
}

.filter-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 20px;
    padding: 25px;
}

.filter-glass-box h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.filter-btn {
    background: white;
    border: 2px solid #E2E8F0;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #9F7AEA;
    color: #9F7AEA;
}

.filter-btn.active {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    border-color: #9F7AEA;
    color: white;
}

/* Reviews Grid */
.reviews-grid-section {
    padding: 20px 0 60px;
    background: #F8FAFC;
}

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

.review-card-main {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(159, 122, 234, 0.1);
    display: flex;
    flex-direction: column;
}

.review-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(159, 122, 234, 0.15);
    border-color: #9F7AEA;
}

.review-card-header {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.review-logo {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid #FBBF24;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.review-badge-top {
    background: #FBBF24;
    color: #1A1A2F;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.review-badge-top.hot {
    background: #F97316;
    color: white;
}

.review-badge-top.silver {
    background: #94A3B8;
    color: white;
}

.review-badge-top.gold {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
}

.review-card-body {
    padding: 25px;
    flex: 1;
}

.review-card-body h3 {
    color: #1A1A2F;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.review-rating-large {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #FBBF24;
    font-weight: 600;
}

.rating-score {
    background: #F1F5F9;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.review-bonus {
    background: #EFF6FF;
    border-left: 4px solid #9F7AEA;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bonus-tag {
    background: #9F7AEA;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.bonus-value {
    font-weight: 700;
    color: #1A1A2F;
}

.review-excerpt {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.review-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.review-feature {
    background: #F1F5F9;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #475569;
}

.review-criteria {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #F8FAFC;
    padding: 15px;
    border-radius: 12px;
}

.criteria-mini {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.criteria-mini span:first-child {
    color: #64748B;
}

.criteria-mini span:last-child {
    color: #FBBF24;
    font-weight: 600;
}

.review-card-footer {
    padding: 0 25px 25px 25px;
}

.btn-review-full {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-review-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(159, 122, 234, 0.3);
}

.coming-soon {
    opacity: 0.7;
}

.coming-soon .review-card-header {
    background: linear-gradient(135deg, #475569, #334155);
}

.btn-disabled {
    display: block;
    text-align: center;
    background: #E2E8F0;
    color: #94A3B8;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: not-allowed;
}

/* Pagination */
.pagination-section {
    padding: 30px 0 60px;
    background: #F8FAFC;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.page-item:hover {
    border-color: #9F7AEA;
    color: #9F7AEA;
}

.page-item.active {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    border-color: #9F7AEA;
    color: white;
}

.page-item.next {
    width: auto;
    padding: 0 15px;
}

/* Comparison Table */
.comparison-table-section {
    padding: 60px 0;
    background: white;
}

.table-responsive {
    overflow-x: auto;
    margin: 40px 0 15px;
}

.comparison-table-review {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.comparison-table-review th {
    background: #0F0F1F;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table-review td {
    padding: 12px 15px;
    border-bottom: 1px solid #E2E8F0;
    color: #475569;
}

.comparison-table-review tr:hover {
    background: #F8FAFC;
}

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

.rating-badge {
    display: inline-block;
    background: #FBBF24;
    color: #1A1A2F;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-table {
    display: inline-block;
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-table:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(159, 122, 234, 0.3);
}

.table-note {
    color: #64748B;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Methodology Link */
.methodology-link {
    padding: 40px 0;
    background: #F8FAFC;
}

.methodology-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.methodology-glass-box h3 {
    color: #1A1A2F;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.methodology-glass-box p {
    color: #64748B;
    margin-bottom: 20px;
}

/* CTA */
.cta-reviews {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    border-radius: 30px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
    color: white;
}

.cta-reviews h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-reviews p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .review-card-main {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .review-hero h1 {
        font-size: 2rem;
    }
    
    .review-card-main {
        flex: 0 1 100%;
    }
    
    .stats-review-grid {
        gap: 20px;
    }
    
    .stat-review-item {
        min-width: 120px;
    }
    
    .stat-review-number {
        font-size: 2rem;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .comparison-table-review {
        font-size: 0.85rem;
    }
    
    .comparison-table-review th,
    .comparison-table-review td {
        padding: 8px;
    }
    
    .cta-reviews {
        padding: 40px 20px;
    }
    
    .cta-reviews h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .review-rating-large {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .review-card-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .review-badge-top {
        align-self: flex-start;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-item {
        width: 35px;
        height: 35px;
    }
}
/* ====================================
   TERMS PAGE STYLES
   ==================================== */

/* Terms Hero */
.terms-hero {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.terms-hero:before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.terms-badge {
    background: rgba(159, 122, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.3);
    color: #FBBF24;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
}

.terms-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

.terms-hero p {
    color: #CBD5E1;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro */
.terms-intro {
    padding: 30px 0 20px;
    background: white;
}

.intro-terms-box {
    background: #F8FAFC;
    border-left: 4px solid #9F7AEA;
    padding: 30px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-terms-box p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Terms Grid */
.terms-main {
    padding: 40px 0 60px;
    background: white;
}

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

.terms-card-full {
    flex: 0 1 calc(50% - 15px);
    min-width: 350px;
    background: #F8FAFC;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(159, 122, 234, 0.1);
    transition: transform 0.3s;
}

.terms-card-full:hover {
    transform: translateY(-5px);
    border-color: #9F7AEA;
}

.terms-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.terms-card-full h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.terms-card-full p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.terms-list li {
    padding: 8px 0 8px 25px;
    color: #475569;
    position: relative;
    border-bottom: 1px solid #E2E8F0;
}

.terms-list li:before {
    content: "•";
    color: #9F7AEA;
    font-weight: bold;
    position: absolute;
    left: 5px;
}

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

.terms-warning {
    background: #FEE2E2;
    border-left: 4px solid #DC2626;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.terms-warning span {
    color: #991B1B;
    font-weight: 600;
}

.terms-note {
    background: #EFF6FF;
    border-left: 4px solid #2563EB;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.terms-note p {
    color: #1E40AF;
    margin: 0;
}

.terms-note a {
    color: #1E40AF;
    font-weight: 600;
}

.terms-highlight {
    background: linear-gradient(135deg, rgba(159, 122, 234, 0.1), rgba(251, 191, 36, 0.1));
    border: 2px solid #9F7AEA;
}

.responsible-contact {
    background: #1A1A2F;
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    text-align: center;
}

.responsible-contact p {
    color: white;
    margin: 0;
}

.responsible-contact strong {
    color: #FBBF24;
    font-size: 1.2rem;
}

.contact-details {
    background: white;
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
}

.contact-details p {
    margin-bottom: 5px;
}

.contact-details a {
    color: #9F7AEA;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Summary Section */
.terms-summary {
    padding: 40px 0;
    background: #F8FAFC;
}

.summary-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
}

.summary-glass-box h2 {
    color: #1A1A2F;
    margin-bottom: 30px;
    font-size: 2rem;
}

.summary-points {
    max-width: 700px;
    margin: 0 auto;
}

.summary-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    text-align: left;
}

.point-marker {
    width: 30px;
    height: 30px;
    background: #9F7AEA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.summary-point span:last-child {
    color: #475569;
}

/* Compliance Section */
.compliance-section {
    padding: 40px 0;
    background: white;
}

.compliance-box {
    background: linear-gradient(135deg, #F8FAFC, white);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.compliance-box h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.compliance-box p {
    color: #64748B;
    margin-bottom: 20px;
}

.anj-logo-small {
    margin: 20px 0;
}

.anj-logo-small img {
    height: 50px;
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Acceptance Reminder */
.acceptance-reminder {
    padding: 30px 0 60px;
    background: white;
}

.reminder-box {
    background: #DCFCE7;
    border: 2px solid #059669;
    border-radius: 50px;
    padding: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reminder-box p {
    color: #065F46;
    font-weight: 500;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .terms-card-full {
        flex: 0 1 100%;
    }
}

@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .intro-terms-box {
        padding: 20px;
    }
    
    .intro-terms-box p {
        font-size: 1rem;
    }
    
    .terms-card-full {
        min-width: auto;
        padding: 25px;
    }
    
    .terms-card-full h3 {
        font-size: 1.2rem;
    }
    
    .summary-glass-box {
        padding: 30px 20px;
    }
    
    .summary-glass-box h2 {
        font-size: 1.5rem;
    }
    
    .summary-point {
        flex-direction: column;
        text-align: center;
    }
    
    .compliance-box {
        padding: 30px 20px;
    }
    
    .reminder-box {
        border-radius: 16px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .terms-card-full {
        padding: 20px;
    }
    
    .terms-list li {
        font-size: 0.9rem;
    }
    
    .responsible-contact strong {
        font-size: 1rem;
    }
    
    .contact-details {
        padding: 10px;
    }
}
/* ====================================
   INDIVIDUAL REVIEW PAGE STYLES - COMPLETE
   ==================================== */

/* Breadcrumb */
.breadcrumb-section {
    padding: 20px 0;
    background: #F8FAFC;
    border-bottom: 1px solid rgba(159, 122, 234, 0.1);
}

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

.breadcrumb a {
    color: #9F7AEA;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #CBD5E1;
}

.breadcrumb .current {
    color: #64748B;
}

/* Operator Header */
.review-operator-header {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid rgba(159, 122, 234, 0.1);
}

.operator-header-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.operator-logo-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    border: 3px solid #FBBF24;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 25px rgba(159, 122, 234, 0.3);
    flex-shrink: 0;
}

.operator-title {
    flex: 2;
    min-width: 300px;
}

.operator-title h1 {
    color: #1A1A2F;
    margin-bottom: 10px;
    font-size: 2rem;
}

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

.operator-rating-large .stars {
    color: #FBBF24;
    font-size: 1.2rem;
}

.rating-badge-large {
    background: linear-gradient(135deg, #9F7AEA, #7C5FCF);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
}

.operator-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.operator-badge {
    background: #F1F5F9;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
}

.operator-cta-large {
    flex: 1;
    min-width: 300px;
    background: #F8FAFC;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(159, 122, 234, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.bonus-highlight-box {
    margin-bottom: 20px;
}

.bonus-label {
    background: #FBBF24;
    color: #1A1A2F;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-value-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #9F7AEA;
    line-height: 1;
    display: block;
}

.bonus-desc {
    color: #64748B;
    font-size: 1rem;
    margin-top: 5px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    padding: 15px !important;
}

.cta-note {
    color: #94A3B8;
    font-size: 0.75rem;
    margin: 0;
}

/* Verdict Section */
.verdict-section {
    padding: 40px 0;
    background: #F8FAFC;
}

.verdict-glass-box {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.verdict-icon {
    font-size: 3.5rem;
    background: #FBBF24;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #1A1A2F;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.verdict-content {
    flex: 1;
}

.verdict-content h2 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.verdict-content p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* Pros & Cons Section */
.pros-cons-section {
    padding: 40px 0;
    background: white;
}

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

.pros-box, .cons-box {
    flex: 1 1 300px;
    background: #F8FAFC;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(159, 122, 234, 0.1);
}

.pros-box h3, .cons-box h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
    padding-bottom: 10px;
    border-bottom: 2px solid;
}

.pros-box h3 {
    color: #059669;
    border-bottom-color: #059669;
}

.cons-box h3 {
    color: #DC2626;
    border-bottom-color: #DC2626;
}

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

.pros-list li, .cons-list li {
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    color: #475569;
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

.pros-list li:before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.cons-list li:before {
    content: "✗";
    color: #DC2626;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Review Content Grid */
.review-content {
    padding: 40px 0 60px;
    background: #F8FAFC;
}

.review-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.review-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Info Cards */
.info-card-glass {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(159, 122, 234, 0.1);
    transition: transform 0.3s;
}

.info-card-glass:hover {
    transform: translateY(-3px);
    border-color: #9F7AEA;
}

.info-card-glass h2 {
    color: #1A1A2F;
    margin-bottom: 25px;
    font-size: 1.8rem;
    border-bottom: 2px solid #F1F5F9;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card-glass h3 {
    color: #1A1A2F;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.info-card-glass h4 {
    color: #1A1A2F;
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.info-card-glass p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* License Info */
.license-numbers {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    margin: 15px 0 20px;
}

.license-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
    flex-wrap: wrap;
    gap: 10px;
}

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

.license-label {
    color: #475569;
    font-weight: 500;
}

.license-number {
    font-family: monospace;
    background: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #9F7AEA;
    font-weight: 600;
    border: 1px solid rgba(159, 122, 234, 0.2);
}

.license-note {
    color: #64748B;
    font-size: 0.95rem;
    margin-top: 15px;
    font-style: italic;
}

/* Info Stats */
.info-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.info-stat-item {
    flex: 1;
    min-width: 80px;
    text-align: center;
    background: #F8FAFC;
    padding: 15px 10px;
    border-radius: 12px;
    border: 1px solid rgba(159, 122, 234, 0.1);
}

.info-stat-label {
    display: block;
    color: #64748B;
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-stat-value {
    display: block;
    color: #9F7AEA;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Bonus Detail Boxes */
.bonus-detail-box {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(159, 122, 234, 0.1);
}

.bonus-detail-box:last-child {
    margin-bottom: 0;
}

.bonus-detail-box h3 {
    margin-top: 0 !important;
    color: #1A1A2F;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-highlight-mini {
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    border: 1px solid rgba(159, 122, 234, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bonus-amount-mini {
    font-size: 1.8rem;
    font-weight: 800;
    color: #9F7AEA;
    line-height: 1;
}

.bonus-type {
    color: #64748B;
    font-size: 1rem;
}

/* Terms Note Box */
.terms-note-box {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 25px;
    border-radius: 16px;
    margin-top: 30px;
}

.terms-note-box h4 {
    color: #92400E;
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-note-box p {
    color: #92400E;
    margin: 0;
    line-height: 1.7;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.feature-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #475569;
    border-bottom: 1px solid #E2E8F0;
}

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

.feature-list li:before {
    content: "✓";
    color: #9F7AEA;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Features Grid Mini */
.features-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-mini-item {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(159, 122, 234, 0.1);
    transition: transform 0.3s;
}

.feature-mini-item:hover {
    transform: translateY(-3px);
    border-color: #9F7AEA;
}

.feature-mini-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.feature-mini-item strong {
    display: block;
    color: #1A1A2F;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-mini-item p {
    color: #64748B;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Sports Tags */
.sports-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.sport-tag {
    background: #F1F5F9;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s;
}

.sport-tag:hover {
    background: #9F7AEA;
    color: white;
}

/* App Features */
.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.app-feature {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(159, 122, 234, 0.1);
}

.app-feature-icon {
    font-size: 1.8rem;
    background: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #9F7AEA;
}

.app-feature span:last-child {
    color: #475569;
    font-weight: 500;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.payment-method {
    background: #F1F5F9;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.payment-list li {
    padding: 10px 0;
    border-bottom: 1px solid #F1F5F9;
    color: #475569;
    display: flex;
    justify-content: space-between;
}

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

.payment-list strong {
    color: #9F7AEA;
}

/* Security List */
.security-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.security-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
}

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

.security-list li:before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Sidebar */
.review-sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-sticky {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-bonus-card {
    background: linear-gradient(135deg, #0F0F1F, #1A1A2F);
    border: 2px solid #FBBF24;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.sidebar-bonus-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.sidebar-bonus-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FBBF24;
    line-height: 1;
    margin-bottom: 5px;
}

.sidebar-bonus-desc {
    color: #CBD5E1;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.sidebar-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.sidebar-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #CBD5E1;
}

.sidebar-small {
    color: #94A3B8;
    font-size: 0.8rem;
    margin-top: 15px;
}

/* Sidebar Info Card */
.sidebar-info-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(159, 122, 234, 0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.sidebar-info-card h4 {
    color: #1A1A2F;
    margin-bottom: 20px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #F1F5F9;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
    color: #64748B;
}

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

.info-value {
    color: #9F7AEA;
    font-weight: 600;
}

/* Fact Items */
.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #F1F5F9;
    color: #64748B;
}

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

.fact-item span:first-child {
    font-weight: 500;
}

/* Sidebar Pros/Cons */
.sidebar-pros-cons {
    background: white;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(159, 122, 234, 0.1);
}

.sidebar-pros-cons h4 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.mini-pros, .mini-cons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.mini-pros span, .mini-cons span {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.mini-pros span {
    background: #DCFCE7;
    color: #065F46;
}

.mini-cons span {
    background: #FEE2E2;
    color: #991B1B;
}

/* Comparison Mini Section */
.comparison-mini-section {
    padding: 60px 0;
    background: white;
}

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

.mini-compare-card {
    flex: 0 1 calc(25% - 15px);
    min-width: 180px;
    background: #F8FAFC;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(159, 122, 234, 0.1);
    transition: transform 0.3s;
}

.mini-compare-card:hover {
    transform: translateY(-5px);
    border-color: #9F7AEA;
}

.compare-operator {
    font-weight: 700;
    color: #1A1A2F;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.compare-rating {
    color: #FBBF24;
    font-weight: 700;
    margin-bottom: 5px;
}

.compare-bonus {
    color: #9F7AEA;
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #F8FAFC;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #9F7AEA;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 40px 0 60px;
    background: #F8FAFC;
}

.final-cta-glass {
    background: rgba(26, 26, 47, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
}

.final-cta-glass h2 {
    color: #1A1A2F;
    margin-bottom: 15px;
    font-size: 2rem;
}

.final-cta-glass p {
    color: #64748B;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.final-cta-glass .btn-primary {
    font-size: 1.2rem;
    padding: 16px 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .review-content-grid {
        grid-template-columns: 1fr;
    }
    
    .review-sidebar {
        position: static;
    }
    
    .mini-compare-card {
        flex: 0 1 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .operator-header-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .operator-title {
        text-align: center;
    }
    
    .operator-rating-large {
        justify-content: center;
    }
    
    .operator-badges {
        justify-content: center;
    }
    
    .verdict-glass-box {
        flex-direction: column;
        text-align: center;
    }
    
    .info-stats {
        flex-direction: column;
    }
    
    .info-stat-item {
        width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-glass {
        padding: 30px 20px;
    }
    
    .final-cta-glass h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .operator-logo-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .operator-title h1 {
        font-size: 1.5rem;
    }
    
    .bonus-value-large {
        font-size: 2rem;
    }
    
    .pros-box, .cons-box {
        padding: 25px;
    }
    
    .info-card-glass {
        padding: 25px;
    }
    
    .features-grid-mini,
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .license-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mini-compare-card {
        flex: 0 1 100%;
    }
}
/* Highlight Note */
.highlight-note {
    background: #DCFCE7;
    border-left: 4px solid #059669;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.highlight-note p {
    color: #065F46;
    margin: 0;
}

/* FAQ Mini Items */
.faq-mini-item {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #9F7AEA;
}

.faq-mini-item:last-child {
    margin-bottom: 0;
}

.faq-mini-item h4 {
    color: #1A1A2F;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.faq-mini-item p {
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}
/* ====================================
   GEOGRAPHIC WARNING STYLES
   ==================================== */
.geo-warning {
    background: #FEF3C7;
    border: 2px solid #F59E0B;
    border-radius: 16px;
    padding: 20px 25px;
    margin: 30px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.geo-warning-icon {
    font-size: 2.5rem;
    background: #F59E0B;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.geo-warning-content {
    flex: 1;
}

.geo-warning-content h3 {
    color: #92400E;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.geo-warning-content p {
    color: #7B341E;
    margin: 0;
    line-height: 1.6;
}

.geo-notice {
    background: #FEE2E2;
    border-left: 4px solid #DC2626;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.geo-notice p {
    color: #991B1B;
    margin: 0;
}

.geo-mini-warning {
    background: #FEE2E2;
    border: 1px solid #DC2626;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
}

.geo-mini-warning p {
    color: #991B1B;
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}
/* ====================================
   BETSSON PAGE SPECIFIC STYLES
   ==================================== */
.availability-notice {
    background: #EFF6FF;
    border: 2px solid #2563EB;
    border-radius: 16px;
    padding: 20px 25px;
    margin: 30px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.notice-icon {
    font-size: 2.5rem;
    background: #2563EB;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-content h3 {
    color: #1E40AF;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.notice-content p {
    color: #1E3A8A;
    margin: 0;
    line-height: 1.6;
}

.offer-highlight {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.offer-highlight p {
    color: #1A1A2F;
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
}