

/* Import header and footer styles */
@import url('header.css');
@import url('footer.css');

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

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

body {
    font-family: 'Inter', sans-serif;
    background: #0B0B2B;
    color: #E0E0FF;
    line-height: 1.6;
    position: relative;
}

/* Cosmic background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 10px 20px, rgba(155, 89, 182, 0.1), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 30px 100px, rgba(244, 197, 66, 0.1), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 80px 200px, rgba(224, 224, 255, 0.1), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 200px 300px, rgba(155, 89, 182, 0.1), rgba(0,0,0,0));
    background-size: 300px 300px;
    pointer-events: none;
    z-index: -1;
    animation: stars 200s linear infinite;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ====================================
   TYPOGRAPHY
   ==================================== */
h1, h2, h3, h4 {
    font-weight: 300;
    letter-spacing: 1px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    color: white;
}

.section-title span {
    color: #9B59B6;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    color: #B0B0D0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ====================================
   BUTTONS - Minimal & Elegant
   ==================================== */
.btn-primary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 0;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    transition: all 0.3s;
    border: 1px solid rgba(155, 89, 182, 0.5);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    border-color: #9B59B6;
    color: #9B59B6;
}

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

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

.btn-secondary {
    background: transparent;
    color: #E0E0FF;
    padding: 12px 28px;
    border: 1px solid rgba(224, 224, 255, 0.3);
    font-weight: 300;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: #F4C542;
    color: #F4C542;
}

/* ====================================
   HERO SECTION - Minimal & Elegant
   ==================================== */
.hero {
    padding: 100px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

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

.hero-badge {
    display: inline-block;
    color: #F4C542;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(244, 197, 66, 0.3);
    padding-bottom: 5px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 300;
    color: white;
}

.hero-title .line {
    display: block;
}

.hero-title .line:first-child {
    font-size: 3rem;
    color: #9B59B6;
}

.hero-description {
    font-size: 1.1rem;
    color: #B0B0D0;
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 300;
    color: #F4C542;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9B59B6;
    margin-top: 5px;
}

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

/* Hero Visual - Abstract Cosmic */
.hero-visual {
    flex: 1 1 400px;
    height: 500px;
    position: relative;
}

.cosmic-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, rgba(155, 89, 182, 0.2), transparent 70%);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.cosmic-orb::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.cosmic-orb::after {
    content: '';
    position: absolute;
    inset: -40px;
    border: 1px solid rgba(244, 197, 66, 0.2);
    border-radius: 50%;
    animation: pulse 6s infinite reverse;
}

.cosmic-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(155, 89, 182, 0.05) 10px, rgba(155, 89, 182, 0.05) 20px);
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -60%) scale(1.05); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

/* ====================================
   FEATURED BRANDS - Minimal
   ==================================== */
.featured-brands {
    padding: 40px 0;
    border-top: 1px solid rgba(155, 89, 182, 0.2);
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.brands-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-name {
    color: #9B59B6;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.brand-name:hover {
    opacity: 1;
}

/* ====================================
   BOOKMAKERS SECTION - Minimal Cards
   ==================================== */
.bookmakers {
    padding: 100px 0;
}

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

.minimal-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    background: rgba(27, 27, 59, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s;
}

.minimal-card:hover {
    background: rgba(27, 27, 59, 0.5);
    border-color: rgba(244, 197, 66, 0.3);
    transform: translateY(-5px);
}

.card-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #9B59B6;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.card-logo {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(155, 89, 182, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 300;
    color: #F4C542;
    margin-bottom: 25px;
}

.card-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
}

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

.stars {
    color: #F4C542;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.rating-number {
    color: #9B59B6;
    font-size: 0.9rem;
}

.card-bonus {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(155, 89, 182, 0.2);
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.bonus-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9B59B6;
    display: block;
    margin-bottom: 5px;
}

.bonus-value {
    font-size: 1.5rem;
    color: #F4C542;
    font-weight: 300;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.feature {
    font-size: 0.7rem;
    color: #B0B0D0;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-right: 1px solid rgba(155, 89, 182, 0.3);
    padding-right: 10px;
}

.feature:last-child {
    border-right: none;
}

.card-footer {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-card {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border: 1px solid rgba(155, 89, 182, 0.5);
    color: #E0E0FF;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-card:hover {
    border-color: #F4C542;
    color: #F4C542;
}

.btn-card-outline {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: #9B59B6;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-card-outline:hover {
    color: #F4C542;
}

.geo-note {
    font-size: 0.7rem;
    color: #9B59B6;
    margin-top: 10px;
    opacity: 0.7;
}

.coming-soon {
    opacity: 0.5;
}

/* ====================================
   PROCESS SECTION - Minimal Timeline
   ==================================== */
.process {
    padding: 100px 0;
    background: rgba(27, 27, 59, 0.2);
}

.process-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
  flex-direction: column;
  align-content: center;
}

.process-step {
    flex: 1 1 200px;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, #9B59B6, transparent);
}

.step-number {
    font-size: 3rem;
    font-weight: 100;
    color: #9B59B6;
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 15px;
}

.step-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 300;
    letter-spacing: 2px;
}

.step-desc {
    color: #B0B0D0;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ====================================
   STATS SECTION - Minimal
   ==================================== */
.stats {
    padding: 60px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-block .number {
    font-size: 3rem;
    font-weight: 100;
    color: #F4C542;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-block .label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9B59B6;
}

/* ====================================
   RESPONSIBLE SECTION
   ==================================== */
.responsible {
    padding: 40px 0;
}

.responsible-box {
    border: 1px solid rgba(155, 89, 182, 0.3);
    padding: 25px 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.responsible-box p {
    color: #B0B0D0;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta {
    padding: 80px 0 100px;
}

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

.cta-box h2 {
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.cta-box p {
    color: #9B59B6;
    margin-bottom: 40px;
    font-size: 1rem;
    letter-spacing: 2px;
}
/* ====================================
   ABOUT PAGE - MIDNIGHT COSMIC
   ==================================== */

/* About Hero */
.about-hero {
    padding: 100px 0 60px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 300;
    color: white;
}

.about-title .line {
    display: block;
}

.about-title .line:first-child {
    font-size: 2.5rem;
    color: #9B59B6;
    margin-bottom: 10px;
}

.gradient-text {
    background: linear-gradient(135deg, #E0E0FF, #9B59B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.2rem;
    color: #B0B0D0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* About Stats */
.about-stats {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

/* Section Title Left */
.section-title-left {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: white;
}

.section-title-left span {
    color: #9B59B6;
    font-weight: 400;
}

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

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

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

.mission-text {
    color: #B0B0D0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.mission-quote {
    margin-top: 40px;
    padding: 25px 30px;
    border-left: 2px solid #9B59B6;
    background: rgba(27, 27, 59, 0.3);
}

.quote-marker {
    color: #F4C542;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.mission-quote p {
    color: #E0E0FF;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

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

.cosmic-orb.small {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, rgba(155, 89, 182, 0.2), transparent 70%);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

/* Values Section */
.about-values {
    padding: 80px 0;
    background: rgba(27, 27, 59, 0.2);
}

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

.value-card {
    flex: 0 1 calc(25% - 23px);
    min-width: 220px;
    background: rgba(27, 27, 59, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #F4C542;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #9B59B6;
}

.value-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.value-card p {
    color: #B0B0D0;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Work Section */
.about-work {
    padding: 80px 0;
}

.work-steps {
    max-width: 800px;
    margin: 50px auto 0;
}

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

.work-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 20px;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, #9B59B6, transparent);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 100;
    color: #9B59B6;
    opacity: 0.5;
    min-width: 70px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.step-content p {
    color: #B0B0D0;
    line-height: 1.7;
}

/* Team Section */
.about-team {
    padding: 80px 0;
    background: rgba(27, 27, 59, 0.2);
}

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

.team-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

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

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

.team-card h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.team-role {
    color: #F4C542;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.team-card p {
    color: #B0B0D0;
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.commitment-box {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.3);
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.commitment-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
}

.commitment-box h2 span {
    color: #9B59B6;
    font-weight: 400;
}

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

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

/* FAQ Section */
.about-faq {
    padding: 80px 0;
    background: rgba(27, 27, 59, 0.2);
}

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

.faq-item {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
}

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

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

.faq-item a {
    color: #F4C542;
    text-decoration: none;
}

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

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

@media (max-width: 768px) {
    .about-title {
        font-size: 3rem;
    }
    
    .about-title .line:first-child {
        font-size: 2rem;
    }
    
    .value-card {
        flex: 0 1 100%;
    }
    
    .team-card {
        flex: 0 1 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .work-step {
        flex-direction: column;
        gap: 10px;
    }
    
    .work-step:not(:last-child)::after {
        display: none;
    }
    
    .mission-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-box {
        padding: 40px 20px;
    }
    
    .commitment-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-block {
        min-width: 120px;
    }
    
    .stat-block .number {
        font-size: 2rem;
    }
}
/* ====================================
   METHODOLOGY PAGE - MIDNIGHT COSMIC
   ==================================== */

/* Methodology Hero */
.methodology-hero {
    padding: 100px 0 60px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.methodology-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.methodology-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 300;
    color: white;
}

.methodology-title .line {
    display: block;
}

.methodology-title .line:first-child {
    font-size: 2.5rem;
    color: #9B59B6;
    margin-bottom: 10px;
}

.methodology-description {
    font-size: 1.2rem;
    color: #B0B0D0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* Methodology Stats */
.methodology-stats {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

/* Criteria Pillars */
.criteria-main {
    padding: 80px 0;
}

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

.pillar-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    overflow: hidden;
    transition: all 0.3s;
}

.pillar-card:hover {
    border-color: #F4C542;
    transform: translateY(-5px);
}

.pillar-header {
    background: rgba(155, 89, 182, 0.1);
    padding: 20px;
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pillar-percent {
    font-size: 1.5rem;
    font-weight: 100;
    color: #F4C542;
    opacity: 0.8;
}

.pillar-header h3 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.pillar-content {
    padding: 25px;
}

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

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

.pillar-list li {
    color: #E0E0FF;
    padding: 8px 0;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
    font-size: 0.9rem;
}

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

/* Scoring System */
.scoring-system {
    padding: 80px 0;
    background: rgba(27, 27, 59, 0.2);
}

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

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

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

.category-name {
    color: white;
    font-size: 0.95rem;
}

.category-weight {
    color: #F4C542;
    font-weight: 400;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(155, 89, 182, 0.2);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9B59B6, #F4C542);
    transition: width 0.3s;
}

.scoring-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(155, 89, 182, 0.2);
}

.scoring-note p {
    color: #B0B0D0;
    font-size: 0.9rem;
}

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

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

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

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 35px;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, #9B59B6, transparent);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 100;
    color: #9B59B6;
    opacity: 0.5;
    min-width: 70px;
}

.step-card {
    flex: 1;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 25px;
}

.step-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

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

.step-tag {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid rgba(155, 89, 182, 0.3);
    color: #9B59B6;
    padding: 4px 12px;
    font-size: 0.75rem;
}

/* Transparency Section */
.transparency-section {
    padding: 80px 0;
    background: rgba(27, 27, 59, 0.2);
}

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

.transparency-box h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
}

.transparency-box h2 span {
    color: #9B59B6;
    font-weight: 400;
}

.transparency-box p {
    color: #B0B0D0;
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.transparency-item {
    flex: 0 1 calc(25% - 23px);
    min-width: 200px;
    padding: 30px 20px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    transition: all 0.3s;
}

.transparency-item:hover {
    border-color: #F4C542;
    transform: translateY(-5px);
}

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

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

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

/* Methodology FAQ */
.methodology-faq {
    padding: 80px 0;
}

/* 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-title {
        font-size: 3rem;
    }
    
    .methodology-title .line:first-child {
        font-size: 2rem;
    }
    
    .pillar-card {
        flex: 0 1 100%;
    }
    
    .transparency-item {
        flex: 0 1 100%;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        font-size: 2rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .methodology-title {
        font-size: 2.5rem;
    }
    
    .scoring-grid {
        padding: 0 20px;
    }
    
    .transparency-box h2 {
        font-size: 2rem;
    }
}
/* ====================================
   REVIEW LISTING PAGE - MIDNIGHT COSMIC
   ==================================== */

/* Review Hero */
.review-hero {
    padding: 100px 0 60px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.review-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 300;
    color: white;
}

.review-title .line {
    display: block;
}

.review-title .line:first-child {
    font-size: 2.5rem;
    color: #9B59B6;
    margin-bottom: 10px;
}

.review-description {
    font-size: 1.2rem;
    color: #B0B0D0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* Review Stats */
.review-stats {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

/* Filter Section */
.review-filter {
    padding: 40px 0;
}

.filter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    border: 1px solid rgba(155, 89, 182, 0.2);
    background: rgba(27, 27, 59, 0.3);
}

.filter-label {
    color: #9B59B6;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

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

.filter-btn {
    background: transparent;
    border: 1px solid rgba(155, 89, 182, 0.3);
    color: #B0B0D0;
    padding: 8px 16px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.filter-btn.active {
    border-color: #9B59B6;
    color: #9B59B6;
}

/* Reviews Grid */
.reviews-grid-section {
    padding: 40px 0 80px;
}

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

.review-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: #F4C542;
    transform: translateY(-5px);
}

.review-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 100;
    color: #9B59B6;
    opacity: 0.5;
}

.rank-1, .rank-2, .rank-3 {
    opacity: 0.8;
}

.review-logo {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(155, 89, 182, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    color: #F4C542;
    margin-bottom: 20px;
}

.review-title-card {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
}

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

.review-rating .stars {
    color: #F4C542;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-rating .rating-number {
    color: #9B59B6;
    font-size: 0.9rem;
}

.review-bonus {
    background: rgba(155, 89, 182, 0.1);
    padding: 12px 15px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-bonus .bonus-label {
    font-size: 0.7rem;
    color: #9B59B6;
    letter-spacing: 1px;
}

.review-bonus .bonus-value {
    font-size: 1.1rem;
    color: #F4C542;
    font-weight: 300;
}

.review-excerpt {
    color: #B0B0D0;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.review-features .feature {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid rgba(155, 89, 182, 0.2);
    color: #E0E0FF;
    padding: 4px 10px;
    font-size: 0.7rem;
}

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

.btn-review {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(155, 89, 182, 0.3);
    color: #E0E0FF;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-review:hover {
    border-color: #9B59B6;
    color: #9B59B6;
}

.btn-bonus {
    flex: 1;
    background: rgba(155, 89, 182, 0.2);
    border: 1px solid #9B59B6;
    color: #9B59B6;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-bonus:hover {
    background: #9B59B6;
    color: #0B0B2B;
}

.country-badge {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 0.7rem;
    color: #9B59B6;
    opacity: 0.7;
}

.country-badge.warning {
    color: #F4C542;
}

.coming-soon {
    opacity: 0.7;
}

.btn-disabled {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(155, 89, 182, 0.2);
    color: #666;
    padding: 10px;
    text-align: center;
    cursor: not-allowed;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: rgba(27, 27, 59, 0.2);
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.comparison-table th {
    background: rgba(155, 89, 182, 0.2);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
    color: #B0B0D0;
}

.comparison-table tr:hover {
    background: rgba(155, 89, 182, 0.05);
}

.rating-badge {
    display: inline-block;
    background: #9B59B6;
    color: #0B0B2B;
    padding: 4px 8px;
    font-size: 0.8rem;
}

.table-link {
    color: #F4C542;
    text-decoration: none;
    transition: color 0.3s;
}

.table-link:hover {
    color: #9B59B6;
}

.table-note {
    color: #B0B0D0;
    font-size: 0.8rem;
    margin-top: 10px;
}

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

.methodology-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.methodology-box h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: white;
}

.methodology-box p {
    color: #B0B0D0;
    margin-bottom: 30px;
}

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

@media (max-width: 768px) {
    .review-title {
        font-size: 3rem;
    }
    
    .review-title .line:first-child {
        font-size: 2rem;
    }
    
    .review-card {
        flex: 0 1 100%;
    }
    
    .filter-box {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .review-title {
        font-size: 2.5rem;
    }
    
    .review-footer {
        flex-direction: column;
    }
    
    .btn-review,
    .btn-bonus {
        width: 100%;
    }
}
/* ====================================
   CONTACT PAGE - MIDNIGHT COSMIC
   ==================================== */

/* Contact Hero */
.contact-hero {
    padding: 100px 0 60px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 300;
    color: white;
}

.contact-title .line {
    display: block;
}

.contact-title .line:first-child {
    font-size: 2.5rem;
    color: #9B59B6;
    margin-bottom: 10px;
}

.contact-description {
    font-size: 1.2rem;
    color: #B0B0D0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

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

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

.info-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s;
}

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

.info-card.urgent {
    border-color: rgba(244, 197, 66, 0.3);
}

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

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #9B59B6;
}

.info-card.urgent .info-icon {
    color: #F4C542;
}

.info-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: #B0B0D0;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.info-link {
    display: inline-block;
    color: #F4C542;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.info-link:hover {
    color: #9B59B6;
}

.info-link.disabled {
    color: #666;
    cursor: not-allowed;
}

.info-link.urgent-link {
    font-size: 1.2rem;
    font-weight: 500;
}

.info-note {
    display: block;
    color: #B0B0D0;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 50px;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
    text-align: center;
}

.form-title span {
    color: #9B59B6;
    font-weight: 400;
}

.form-subtitle {
    color: #B0B0D0;
    text-align: center;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.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 250px;
}

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

.form-group label {
    color: white;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.form-control {
    background: transparent;
    border: 1px solid rgba(155, 89, 182, 0.3);
    padding: 12px 15px;
    color: #E0E0FF;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #F4C542;
}

.form-control::placeholder {
    color: rgba(176, 176, 208, 0.5);
    font-weight: 300;
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: #0B0B2B;
    color: #E0E0FF;
}

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

.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

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

.checkbox label {
    font-weight: 300;
    font-size: 0.85rem;
}

.checkbox a {
    color: #F4C542;
    text-decoration: none;
}

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

.submit-btn {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

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

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

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

.form-success p {
    color: #B0B0D0;
    max-width: 400px;
    margin: 0 auto;
}

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

.hours-box {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px;
}

.hours-icon {
    font-size: 3rem;
    color: #9B59B6;
    flex: 0 0 auto;
}

.hours-content {
    flex: 1;
}

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

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

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.day {
    color: #F4C542;
}

.time {
    color: #E0E0FF;
}

.hours-note {
    color: #B0B0D0;
    font-size: 0.85rem;
    font-style: italic;
}

/* Location */
.location {
    padding: 0 0 60px;
}

.location-box {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px;
}

.location-icon {
    font-size: 3rem;
    color: #F4C542;
    flex: 0 0 auto;
}

.location-content {
    flex: 1;
}

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

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

.location-note {
    color: #B0B0D0;
    font-size: 0.85rem;
}

/* Contact FAQ */
.contact-faq {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

/* Response Promise */
.response-promise {
    padding: 60px 0;
}

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

.promise-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: white;
}

.promise-box h2 span {
    color: #9B59B6;
    font-weight: 400;
}

.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: 100;
    color: #F4C542;
    line-height: 1;
    margin-bottom: 10px;
}

.promise-text {
    color: #B0B0D0;
    font-size: 0.85rem;
}

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

@media (max-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-title .line:first-child {
        font-size: 2rem;
    }
    
    .info-card {
        flex: 0 1 100%;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .hours-box,
    .location-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .hour-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .promise-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .checkbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .promise-item {
        min-width: 120px;
    }
    
    .promise-number {
        font-size: 2rem;
    }
}
/* ====================================
   AFFILIATE DISCLOSURE - MIDNIGHT COSMIC
   ==================================== */

/* Disclosure Hero */
.disclosure-hero {
    padding: 100px 0 60px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.disclosure-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclosure-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 300;
    color: white;
}

.disclosure-title .line {
    display: block;
}

.disclosure-title .line:first-child {
    font-size: 2.5rem;
    color: #9B59B6;
    margin-bottom: 10px;
}

.disclosure-description {
    font-size: 1.2rem;
    color: #B0B0D0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* Intro Section */
.disclosure-intro {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

.intro-box {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px;
}

.intro-icon {
    font-size: 3rem;
    color: #F4C542;
    flex: 0 0 auto;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: white;
}

.intro-content h2 span {
    color: #9B59B6;
    font-weight: 400;
}

.intro-content p {
    color: #B0B0D0;
    line-height: 1.8;
    margin: 0;
}

/* Disclosure Grid */
.disclosure-main {
    padding: 60px 0;
}

.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: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 35px;
    transition: all 0.3s;
}

.disclosure-card:hover {
    border-color: #F4C542;
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #9B59B6;
}

.disclosure-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.disclosure-card a {
    color: #F4C542;
    text-decoration: none;
}

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

.card-highlight {
    background: rgba(155, 89, 182, 0.1);
    border-left: 2px solid #9B59B6;
    padding: 15px;
    margin-top: 15px;
}

.card-highlight.success {
    border-left-color: #F4C542;
}

.highlight-label {
    display: block;
    font-weight: 400;
    margin-bottom: 5px;
    color: #9B59B6;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

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

.card-highlight p {
    margin: 0;
    color: #E0E0FF;
    font-size: 0.9rem;
}

.integrity-badge {
    display: inline-block;
    background: rgba(155, 89, 182, 0.2);
    border: 1px solid #9B59B6;
    color: #9B59B6;
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

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

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

/* Quick Summary */
.quick-summary {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

.summary-box {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 50px;
    text-align: center;
}

.summary-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: white;
}

.summary-box h2 span {
    color: #9B59B6;
    font-weight: 400;
}

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

.summary-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    text-align: left;
}

.summary-marker {
    width: 40px;
    height: 40px;
    background: rgba(155, 89, 182, 0.2);
    border: 1px solid #9B59B6;
    color: #9B59B6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.summary-text strong {
    color: #F4C542;
}

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

.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;
}

.comparison-card.negative {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid rgba(155, 89, 182, 0.3);
}

.comparison-card.positive {
    background: rgba(244, 197, 66, 0.05);
    border: 1px solid rgba(244, 197, 66, 0.2);
}

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

.comparison-card.negative h3 {
    color: #9B59B6;
}

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

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

.comparison-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #B0B0D0;
}

.comparison-card li:last-child {
    border-bottom: none;
}

/* Disclosure FAQ */
.disclosure-faq {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

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

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 12px 25px;
}

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

.badge-text {
    color: #E0E0FF;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

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

.reminder-box {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid #9B59B6;
    padding: 20px;
    text-align: center;
}

.reminder-box p {
    color: #9B59B6;
    margin: 0;
    font-size: 0.85rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(155, 89, 182, 0.3);
    color: #E0E0FF;
    padding: 14px 32px;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: #F4C542;
    color: #F4C542;
}

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

@media (max-width: 768px) {
    .disclosure-title {
        font-size: 3rem;
    }
    
    .disclosure-title .line:first-child {
        font-size: 2rem;
    }
    
    .intro-box {
        flex-direction: column;
        text-align: center;
    }
    
    .disclosure-card {
        flex: 0 1 100%;
    }
    
    .comparison-card {
        flex: 0 1 100%;
    }
    
    .summary-item {
        flex-direction: column;
        text-align: center;
    }
    
    .badges-grid {
        gap: 15px;
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .disclosure-title {
        font-size: 2.5rem;
    }
    
    .intro-content h2 {
        font-size: 1.5rem;
    }
    
    .summary-box {
        padding: 30px 20px;
    }
    
    .summary-box h2 {
        font-size: 1.8rem;
    }
    
    .summary-marker {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* ====================================
   PRIVACY PAGE - MIDNIGHT COSMIC
   ==================================== */

/* Privacy Hero */
.privacy-hero {
    padding: 100px 0 60px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.privacy-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 300;
    color: white;
}

.privacy-title .line {
    display: block;
}

.privacy-title .line:first-child {
    font-size: 2.5rem;
    color: #9B59B6;
    margin-bottom: 10px;
}

.privacy-description {
    font-size: 1.2rem;
    color: #B0B0D0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* Last Updated */
.last-updated {
    padding: 20px 0;
}

.updated-badge {
    text-align: center;
}

.updated-badge span {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    color: #9B59B6;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* Intro */
.privacy-intro {
    padding: 20px 0 40px;
}

.intro-box {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.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: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
    transition: all 0.3s;
}

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

.privacy-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #9B59B6;
}

.privacy-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

.privacy-list li {
    padding: 8px 0;
    color: #E0E0FF;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
    font-size: 0.9rem;
}

.privacy-list strong {
    color: #F4C542;
}

.privacy-note {
    background: rgba(155, 89, 182, 0.1);
    border-left: 2px solid #9B59B6;
    padding: 12px;
    margin-top: 15px;
}

.privacy-note span {
    color: #9B59B6;
    font-size: 0.85rem;
}

.privacy-card a {
    color: #F4C542;
    text-decoration: none;
}

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

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

/* Rights Section */
.rights-section {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

.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: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.rights-card:hover {
    border-color: #F4C542;
}

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

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

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

.rights-exercise {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 35px;
    max-width: 700px;
    margin: 0 auto;
}

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

.rights-exercise p {
    color: #B0B0D0;
    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: rgba(27, 27, 59, 0.3);
    padding: 12px 20px;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.exercise-label {
    font-weight: 400;
    color: #F4C542;
}

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

.exercise-item a:hover {
    color: #F4C542;
}

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

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

.cnil-box {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px;
}

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

.cnil-content {
    flex: 1;
}

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

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

.cnil-link {
    color: #F4C542;
    text-decoration: none;
    font-size: 1.1rem;
}

.cnil-link:hover {
    color: #9B59B6;
}

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

.children-box {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid #9B59B6;
    padding: 40px;
}

.children-icon {
    font-size: 3rem;
    color: #9B59B6;
    flex: 0 0 auto;
}

.children-content {
    flex: 1;
}

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

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

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

.changes-box {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px;
    text-align: center;
}

.changes-box h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.changes-box p {
    color: #B0B0D0;
    margin: 0;
}

/* 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-title {
        font-size: 3rem;
    }
    
    .privacy-title .line:first-child {
        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-box,
    .children-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .intro-box {
        padding: 25px;
    }
    
    .intro-box p {
        font-size: 1rem;
    }
    
    .rights-exercise {
        padding: 25px;
    }
    
    .cnil-icon,
    .children-icon {
        font-size: 2.5rem;
    }
}
/* ====================================
   COOKIES PAGE - MIDNIGHT COSMIC
   ==================================== */

/* Cookies Hero */
.cookies-hero {
    padding: 100px 0 60px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.cookies-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookies-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 300;
    color: white;
}

.cookies-title .line {
    display: block;
}

.cookies-title .line:first-child {
    font-size: 2.5rem;
    color: #9B59B6;
    margin-bottom: 10px;
}

.cookies-description {
    font-size: 1.2rem;
    color: #B0B0D0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

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

.cookies-info-box {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 50px;
    text-align: center;
}

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

.cookies-info-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
}

.cookies-info-box h2 span {
    color: #9B59B6;
}

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

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

.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: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    overflow: hidden;
}

.cookie-type-card.essential .cookie-type-header {
    background: rgba(53, 126, 221, 0.2);
    border-bottom: 1px solid #357EDD;
}

.cookie-type-card.performance .cookie-type-header {
    background: rgba(46, 204, 113, 0.2);
    border-bottom: 1px solid #2ECC71;
}

.cookie-type-card.functionality .cookie-type-header {
    background: rgba(241, 196, 15, 0.2);
    border-bottom: 1px solid #F1C40F;
}

.cookie-type-card.targeting .cookie-type-header {
    background: rgba(231, 76, 60, 0.2);
    border-bottom: 1px solid #E74C3C;
}

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

.cookie-badge {
    font-weight: 400;
    font-size: 1rem;
}

.cookie-required, .cookie-optional {
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

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

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

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

.cookie-list li {
    padding: 6px 0;
    color: #E0E0FF;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

.cookie-duration {
    background: rgba(27, 27, 59, 0.5);
    padding: 10px;
    text-align: center;
    color: #9B59B6;
    font-size: 0.8rem;
}

/* Third Party */
.third-party {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

.third-party-box {
    text-align: center;
}

.third-party-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: white;
}

.third-party-box h2 span {
    color: #9B59B6;
}

.third-party-box p {
    color: #B0B0D0;
    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: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 20px;
    text-align: left;
}

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

.third-party-info {
    flex: 1;
}

.third-party-info h4 {
    color: white;
    margin-bottom: 5px;
}

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

.third-party-info a {
    color: #F4C542;
    text-decoration: none;
    font-size: 0.85rem;
}

.third-party-info a:hover {
    color: #9B59B6;
}

.third-party-note {
    color: #B0B0D0;
    font-size: 0.8rem;
}

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

.manage-box {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 50px;
}

.manage-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: white;
    text-align: center;
}

.manage-box h2 span {
    color: #9B59B6;
}

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

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

.manage-item h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.demo-toggles {
    background: rgba(27, 27, 59, 0.5);
    padding: 20px;
    margin-bottom: 20px;
}

.toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

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

.toggle-status {
    color: #F4C542;
    font-size: 0.8rem;
}

.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: rgba(155, 89, 182, 0.3);
    transition: .3s;
    border-radius: 0;
}

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

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

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

.btn-small {
    background: transparent;
    border: 1px solid #9B59B6;
    color: #9B59B6;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-small:hover {
    border-color: #F4C542;
    color: #F4C542;
}

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

.browser-list li {
    padding: 8px 0;
    color: #E0E0FF;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

.browser-list strong {
    color: #F4C542;
}

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

.retention-box {
    background: rgba(27, 27, 59, 0.3);
    border-left: 2px solid #9B59B6;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.retention-box h3 {
    color: white;
    margin-bottom: 15px;
}

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

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

.retention-list li {
    padding: 8px 0;
    color: #E0E0FF;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

/* Cookies Rights */
.cookies-rights {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

.rights-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.rights-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
}

.rights-box h2 span {
    color: #9B59B6;
}

.rights-box p {
    color: #B0B0D0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.rights-box a {
    color: #F4C542;
    text-decoration: none;
}

.rights-box a:hover {
    color: #9B59B6;
}

/* Cookies FAQ */
.cookies-faq {
    padding: 60px 0;
}

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

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

.cnil-link-box p {
    color: #B0B0D0;
    margin-bottom: 20px;
}

.cnil-link-box .btn-secondary {
    display: inline-block;
}

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

@media (max-width: 768px) {
    .cookies-title {
        font-size: 3rem;
    }
    
    .cookies-title .line:first-child {
        font-size: 2rem;
    }
    
    .cookies-info-box {
        padding: 30px 20px;
    }
    
    .cookies-info-box h2 {
        font-size: 1.8rem;
    }
    
    .manage-box {
        padding: 30px 20px;
    }
    
    .manage-grid {
        flex-direction: column;
    }
    
    .third-party-item {
        flex-direction: column;
        text-align: center;
    }
    
    .toggle-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookies-title {
        font-size: 2.5rem;
    }
    
    .cookie-type-header {
        flex-direction: column;
        gap: 10px;
    }
}
/* ====================================
   TERMS PAGE - MIDNIGHT COSMIC
   ==================================== */

/* Terms Hero */
.terms-hero {
    padding: 100px 0 60px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.terms-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.terms-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 300;
    color: white;
}

.terms-title .line {
    display: block;
}

.terms-title .line:first-child {
    font-size: 2.5rem;
    color: #9B59B6;
    margin-bottom: 10px;
}

.terms-description {
    font-size: 1.2rem;
    color: #B0B0D0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

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

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

.terms-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 350px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
    transition: all 0.3s;
}

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

.terms-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #9B59B6;
}

.terms-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.terms-card p {
    color: #B0B0D0;
    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: #E0E0FF;
    position: relative;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

.terms-list li:before {
    content: "✦";
    color: #F4C542;
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.terms-warning {
    background: rgba(155, 89, 182, 0.1);
    border-left: 2px solid #9B59B6;
    padding: 12px 15px;
    margin-top: 15px;
}

.terms-warning span {
    color: #9B59B6;
    font-weight: 400;
}

.terms-note {
    background: rgba(244, 197, 66, 0.1);
    border-left: 2px solid #F4C542;
    padding: 15px;
    margin-top: 15px;
}

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

.terms-note a {
    color: #E0E0FF;
    font-weight: 400;
    text-decoration: none;
}

.terms-note a:hover {
    color: #F4C542;
}

.responsible-contact {
    background: rgba(27, 27, 59, 0.5);
    border: 1px solid #9B59B6;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

.responsible-contact p {
    color: #9B59B6;
    margin: 0;
}

.responsible-contact strong {
    color: #F4C542;
}

.contact-details {
    background: rgba(27, 27, 59, 0.5);
    padding: 15px;
    margin-top: 10px;
}

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

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

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

/* Summary Section */
.terms-summary {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

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

.summary-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: white;
}

.summary-box h2 span {
    color: #9B59B6;
}

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

.summary-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    margin-bottom: 10px;
    text-align: left;
}

.point-marker {
    width: 30px;
    height: 30px;
    background: rgba(155, 89, 182, 0.2);
    border: 1px solid #9B59B6;
    color: #9B59B6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

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

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

.compliance-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.compliance-box h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: white;
}

.compliance-box h3 span {
    color: #9B59B6;
}

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

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

.anj-logo img {
    height: 50px;
    background: white;
    padding: 8px 20px;
    border-radius: 4px;
}

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

.reminder-box {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid #9B59B6;
    padding: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.reminder-box p {
    color: #9B59B6;
    margin: 0;
}

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

@media (max-width: 768px) {
    .terms-title {
        font-size: 3rem;
    }
    
    .terms-title .line:first-child {
        font-size: 2rem;
    }
    
    .terms-card {
        min-width: auto;
        padding: 25px;
    }
    
    .terms-card h3 {
        font-size: 1.1rem;
    }
    
    .summary-box h2 {
        font-size: 1.8rem;
    }
    
    .summary-point {
        flex-direction: column;
        text-align: center;
    }
    
    .point-marker {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .terms-title {
        font-size: 2.5rem;
    }
    
    .terms-card {
        padding: 20px;
    }
    
    .terms-list li {
        font-size: 0.9rem;
    }
    
    .responsible-contact strong {
        font-size: 1rem;
    }
    
    .contact-details {
        padding: 10px;
    }
    
    .compliance-box h3 {
        font-size: 1.5rem;
    }
}
/* ====================================
   RESPONSIBLE GAMBLING PAGE - MIDNIGHT COSMIC
   ==================================== */

/* Responsible Hero */
.responsible-hero {
    padding: 100px 0 60px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.responsible-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.responsible-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 300;
    color: white;
}

.responsible-title .line {
    display: block;
}

.responsible-title .line:first-child {
    font-size: 2.5rem;
    color: #9B59B6;
    margin-bottom: 10px;
}

.responsible-description {
    font-size: 1.2rem;
    color: #B0B0D0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

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

.warning-box {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid #9B59B6;
    padding: 25px;
}

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

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

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

.warning-text strong {
    color: #F4C542;
}

/* Key Principles */
.key-principles {
    padding: 60px 0;
}

.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: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.principle-card:hover {
    border-color: #F4C542;
    transform: translateY(-5px);
}

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

.principle-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

/* Warning Signs */
.warning-signs {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

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

.signs-column {
    flex: 1 1 300px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
}

.signs-column h3 {
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #9B59B6;
}

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

.signs-list li {
    padding: 10px 0;
    color: #E0E0FF;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

.signs-cta {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid #9B59B6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.signs-cta p {
    color: #F4C542;
    margin: 0;
}

/* Tools Section */
.tools-section {
    padding: 60px 0;
}

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

.tool-card {
    flex: 0 1 calc(25% - 23px);
    min-width: 240px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.tool-card:hover {
    border-color: #F4C542;
}

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

.tool-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.tool-note {
    background: rgba(27, 27, 59, 0.5);
    padding: 8px 12px;
    font-size: 0.75rem;
    color: #F4C542;
}

/* ANJ Section */
.anj-section {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

.anj-box {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    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: 4px;
}

.anj-header h2 {
    color: white;
    font-size: 2rem;
}

.anj-header h2 span {
    color: #9B59B6;
}

.anj-box p {
    color: #B0B0D0;
    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: rgba(27, 27, 59, 0.5);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 10px 20px;
}

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

.anj-footer {
    border-top: 1px solid rgba(155, 89, 182, 0.2);
    padding-top: 30px;
}

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

/* Help Resources */
.help-resources {
    padding: 60px 0;
}

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

.resource-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
    transition: all 0.3s;
}

.resource-card:hover {
    border-color: #F4C542;
}

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

.resource-icon {
    font-size: 2rem;
    color: #9B59B6;
}

.resource-header h3 {
    color: white;
    font-size: 1.1rem;
}

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

.resource-contact {
    background: rgba(27, 27, 59, 0.5);
    padding: 15px;
    margin-bottom: 15px;
}

.resource-phone {
    color: #F4C542;
    font-weight: 500;
    margin-bottom: 5px;
}

.resource-web {
    color: #B0B0D0;
    font-size: 0.85rem;
    word-break: break-all;
}

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

.resource-badge {
    background: rgba(27, 27, 59, 0.5);
    border: 1px solid #9B59B6;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: #9B59B6;
}

/* Self Assessment */
.self-assessment {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

.assessment-box {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 50px;
    text-align: center;
}

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

.assessment-box h2 span {
    color: #9B59B6;
}

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

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

.question-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.question-number {
    width: 30px;
    height: 30px;
    background: rgba(155, 89, 182, 0.2);
    border: 1px solid #9B59B6;
    color: #9B59B6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

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

.assessment-result {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid #9B59B6;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

.parental-content h2 span {
    color: #9B59B6;
}

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

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

.parental-list li {
    padding: 10px 0;
    color: #E0E0FF;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

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

.image-placeholder {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 40px;
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #F4C542;
}

.placeholder-text {
    color: #9B59B6;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Commitment Section */
.commitment-section {
    padding: 60px 0;
    background: rgba(27, 27, 59, 0.2);
}

.commitment-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.commitment-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
}

.commitment-box h2 span {
    color: #9B59B6;
}

.commitment-box p {
    color: #B0B0D0;
    margin-bottom: 30px;
}

.commitment-list {
    text-align: left;
    margin-bottom: 30px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

.commitment-check {
    color: #F4C542;
    font-weight: 700;
}

.commitment-item span:last-child {
    color: #E0E0FF;
}

.commitment-footer {
    border-top: 1px solid rgba(155, 89, 182, 0.2);
    padding-top: 20px;
}

.commitment-footer p {
    color: #9B59B6;
    margin: 0;
}

/* Quick Help */
.quick-help {
    padding: 40px 0;
}

.help-buttons {
    text-align: center;
}

.help-buttons h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

@media (max-width: 768px) {
    .responsible-title {
        font-size: 3rem;
    }
    
    .responsible-title .line:first-child {
        font-size: 2rem;
    }
    
    .principle-card {
        flex: 0 1 100%;
    }
    
    .tool-card {
        flex: 0 1 100%;
    }
    
    .resource-card {
        flex: 0 1 100%;
    }
    
    .signs-grid {
        flex-direction: column;
    }
    
    .anj-header {
        flex-direction: column;
    }
    
    .anj-header h2 {
        font-size: 1.5rem;
    }
    
    .anj-mission {
        width: 100%;
        justify-content: center;
    }
    
    .assessment-box {
        padding: 30px 20px;
    }
    
    .assessment-box h2 {
        font-size: 1.5rem;
    }
    
    .question-item {
        flex-direction: column;
        text-align: center;
    }
    
    .parental-grid {
        flex-direction: column;
    }
    
    .button-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .responsible-title {
        font-size: 2.5rem;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
    }
    
    .anj-header h2 {
        font-size: 1.2rem;
    }
    
    .anj-logo-large {
        height: 50px;
    }
}
/* ====================================
   INDIVIDUAL REVIEW PAGES - MIDNIGHT COSMIC
   ==================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: rgba(27, 27, 59, 0.2);
}

.breadcrumb-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #9B59B6;
}

.breadcrumb-links a {
    color: #E0E0FF;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-links a:hover {
    color: #F4C542;
}

.breadcrumb-links .separator {
    color: #F4C542;
}

.breadcrumb-links .current {
    color: white;
}

/* Review Header */
.review-header {
    padding: 40px 0;
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

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

.review-logo-large {
    width: 100px;
    height: 100px;
    border: 2px solid #9B59B6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 300;
    color: #F4C542;
}

.review-header-info {
    flex: 1;
    min-width: 250px;
}

.review-header-info h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
}

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

.review-rating-large .stars {
    color: #F4C542;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.rating-badge {
    background: #9B59B6;
    color: white;
    padding: 4px 12px;
    font-size: 0.9rem;
}

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

.badge {
    background: rgba(27, 27, 59, 0.5);
    border: 1px solid rgba(155, 89, 182, 0.3);
    padding: 5px 12px;
    font-size: 0.8rem;
    color: #E0E0FF;
}

.review-header-cta {
    min-width: 280px;
}

.bonus-box {
    text-align: center;
    margin-bottom: 20px;
}

.bonus-label {
    font-size: 0.8rem;
    color: #9B59B6;
    letter-spacing: 2px;
}

.bonus-value {
    font-size: 2rem;
    font-weight: 300;
    color: #F4C542;
    display: block;
}

.bonus-desc {
    color: #E0E0FF;
    font-size: 0.9rem;
}

.cta-note {
    font-size: 0.7rem;
    color: #B0B0D0;
    margin-top: 10px;
    text-align: center;
}

/* Verdict */
.verdict {
    padding: 40px 0;
}

.verdict-box {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
}

.verdict-icon {
    font-size: 3rem;
    color: #F4C542;
    flex: 0 0 auto;
}

.verdict-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
}

.verdict-content p {
    color: #E0E0FF;
    line-height: 1.7;
    margin: 0;
}

/* Pros & Cons */
.pros-cons {
    padding: 40px 0;
    background: rgba(27, 27, 59, 0.2);
}

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

.pros-box, .cons-box {
    flex: 1 1 300px;
    padding: 30px;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.pros-box h3, .cons-box h3 {
    color: #9B59B6;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.pros-list li, .cons-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
    color: #E0E0FF;
}

/* Content Grid */
.review-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Info Cards */
.info-card {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 30px;
    margin-bottom: 30px;
}

.info-card h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.license-box {
    background: rgba(27, 27, 59, 0.5);
    padding: 20px;
    margin-bottom: 20px;
}

.license-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

.license-item strong {
    color: #F4C542;
}

.stats-mini {
    display: flex;
    gap: 20px;
}

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

.stat-mini-value {
    display: block;
    font-size: 1.5rem;
    color: #F4C542;
    line-height: 1;
}

.stat-mini-label {
    font-size: 0.7rem;
    color: #9B59B6;
}

/* Bonus Detail */
.bonus-detail {
    margin-bottom: 25px;
}

.bonus-detail h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
}

.bonus-highlight {
    background: rgba(155, 89, 182, 0.2);
    border-left: 2px solid #9B59B6;
    padding: 10px 15px;
    font-size: 1.2rem;
    color: #F4C542;
    margin-bottom: 10px;
}

.bonus-note {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid #9B59B6;
    padding: 15px;
    font-size: 0.9rem;
    color: #9B59B6;
}

/* Sports Tags */
.sports-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.sports-tags span {
    background: rgba(27, 27, 59, 0.5);
    border: 1px solid rgba(155, 89, 182, 0.3);
    padding: 5px 12px;
    font-size: 0.8rem;
    color: #E0E0FF;
}

/* App Features */
.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.app-features span {
    background: rgba(27, 27, 59, 0.5);
    padding: 5px 10px;
    font-size: 0.8rem;
    color: #9B59B6;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.payment-methods span {
    background: rgba(27, 27, 59, 0.5);
    border: 1px solid rgba(155, 89, 182, 0.3);
    padding: 5px 12px;
    font-size: 0.8rem;
}

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

.sidebar-sticky {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-bonus {
    background: rgba(27, 27, 59, 0.5);
    border: 1px solid #9B59B6;
    padding: 30px;
    text-align: center;
}

.sidebar-bonus h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sidebar-bonus-value {
    font-size: 2.2rem;
    color: #F4C542;
    margin-bottom: 20px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.sidebar-small {
    font-size: 0.8rem;
    color: #9B59B6;
    margin-top: 15px;
}

.sidebar-info {
    background: rgba(27, 27, 59, 0.3);
    border: 1px solid rgba(155, 89, 182, 0.2);
    padding: 25px;
}

.sidebar-info h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1rem;
}

.sidebar-note {
    font-size: 2.5rem;
    color: #F4C542;
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-detail {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
    color: #E0E0FF;
}

/* Geo Warning */
.geo-warning .warning-box.geo {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid #9B59B6;
    display: flex;
    align-items: center;
    gap: 15px;
}

.geo-warning .warning-box.geo span {
    font-size: 2rem;
}

.geo-warning .warning-box.geo p {
    color: #9B59B6;
    margin: 0;
}

.geo-small {
    color: #F4C542 !important;
}

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

@media (max-width: 768px) {
    .review-header-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .review-rating-large {
        justify-content: center;
    }
    
    .review-badges {
        justify-content: center;
    }
    
    .verdict-box {
        flex-direction: column;
        text-align: center;
    }
    
    .license-item {
        flex-direction: column;
        align-items: flex-start;
    }
}