

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

/* ===== GLOBAL CSS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #F1F5F9;
    color: #0F172A;
    line-height: 1.5;
}

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

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

/* Margins */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Paddings */
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* Flexbox Utilities */
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-center { align-items: center; }
.align-stretch { align-items: stretch; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-5 { gap: 3rem; }

/* Widths */
.w-100 { width: 100%; }
.w-50 { width: 50%; }
.w-33 { width: 33.333%; }
.w-25 { width: 25%; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #10B981;
    color: #0F172A;
}

.btn-primary:hover {
    background: #0f9e6a;
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: #F97316;
    border: 2px solid #F97316;
}

.btn-secondary:hover {
    background: #F97316;
    color: #0F172A;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.section-header h2 i {
    color: #F97316;
    margin-right: 8px;
}

.section-header p {
    color: #475569;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}
/* ===== HOMEPAGE SPECIFIC CSS ===== */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

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

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

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

.hero-content h1 span {
    color: #F97316;
    background: rgba(249,115,22,0.15);
    padding: 0 8px;
    display: inline-block;
}

.hero-content p {
    font-size: 1.2rem;
    color: #CBD5E1;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(249,115,22,0.3);
}

.badge i {
    color: #F97316;
    font-size: 1.3rem;
}

.hero-image {
    flex: 1 1 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Casino Cards Section */
.casino-cards-section {
    padding: 40px 0;
}

.casino-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.casino-card {
    background: white;
    border-radius: 24px;
    padding: 30px 20px 25px;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #E2E8F0;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    max-width: 350px;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -12px rgba(249,115,22,0.15);
    border-color: #F97316;
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #F97316;
    color: #0F172A;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.casino-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0F172A;
    border-bottom: 2px solid #F1F5F9;
    padding-bottom: 10px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #1E293B;
    font-size: 0.95rem;
}

.features-list i {
    color: #10B981;
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8FAFC;
    padding: 15px 15px;
    border-radius: 16px;
    margin: 15px 0 20px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-stars span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-right: 5px;
}

.rating-stars i {
    color: #F97316;
    font-size: 1rem;
}

.rating-votes {
    color: #64748B;
    font-size: 0.9rem;
}

.card-btn {
    width: 100%;
    text-align: center;
    background: #10B981;
    color: #0F172A;
    text-decoration: none;
    padding: 14px;
    border-radius: 16px;
    font-weight: 600;
    transition: background 0.2s;
    display: block;
}

.card-btn:hover {
    background: #0f9e6a;
}

/* How We Rate Section */
.how-we-rate {
    padding: 60px 0;
    background: white;
}

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

.criterion {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px 20px;
    background: #F8FAFC;
    border-radius: 20px;
    transition: transform 0.2s;
}

.criterion:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(249,115,22,0.1);
}

.criterion i {
    font-size: 2.5rem;
    color: #F97316;
    margin-bottom: 20px;
}

.criterion h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0F172A;
}

.criterion p {
    color: #475569;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
}

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

.benefit {
    flex: 1 1 300px;
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-icon i {
    font-size: 2rem;
    color: #F97316;
    background: rgba(249,115,22,0.1);
    padding: 15px;
    border-radius: 16px;
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0F172A;
}

.benefit-content p {
    color: #475569;
    font-size: 0.95rem;
}

/* FAQ Preview Section */
.faq-preview {
    padding: 60px 0;
    background: white;
}

.faq-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.faq-item {
    flex: 1 1 400px;
    background: #F8FAFC;
    padding: 25px;
    border-radius: 16px;
    transition: all 0.2s;
}

.faq-item:hover {
    background: #F1F5F9;
    transform: translateX(5px);
}

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

.faq-question i {
    color: #F97316;
    font-size: 1.3rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #0F172A;
}

.faq-answer {
    color: #475569;
    margin-left: 35px;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #F97316 0%, #f59e0b 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #0F172A;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #0F172A;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-content .btn-primary {
    background: #0F172A;
    color: white;
    font-size: 1.2rem;
    padding: 16px 48px;
}

.cta-content .btn-primary:hover {
    background: #1a2639;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .badge {
        width: 100%;
    }
    
    .benefit {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        align-self: center;
    }
    
    .faq-item {
        flex: 1 1 100%;
    }
}
/* ===== METHODOLOGY PAGE STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header h1 i {
    color: #F97316;
    margin-right: 10px;
}

.page-header p {
    font-size: 1.2rem;
    color: #CBD5E1;
    max-width: 700px;
    margin: 0 auto;
}

/* Introduction */
.methodology-intro {
    margin-bottom: 40px;
}

.intro-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #F97316;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #334155;
}

.intro-text strong {
    color: #F97316;
    font-weight: 700;
}

/* Methodology Grid */
.methodology-detailed {
    padding: 40px 0;
}

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

.methodology-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    flex: 1 1 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
    transition: transform 0.2s;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(249,115,22,0.1);
    border-color: #F97316;
}

.methodology-icon {
    width: 70px;
    height: 70px;
    background: rgba(249,115,22,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.methodology-icon i {
    font-size: 2rem;
    color: #F97316;
}

.methodology-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.methodology-card .weight {
    font-size: 0.9rem;
    color: #F97316;
    background: rgba(249,115,22,0.1);
    padding: 5px 10px;
    border-radius: 30px;
}

.methodology-desc {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.methodology-check h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #0F172A;
}

.methodology-check ul {
    list-style: none;
}

.methodology-check ul li {
    margin-bottom: 10px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.methodology-check ul li i {
    color: #10B981;
    font-size: 0.9rem;
}

/* Scoring System */
.scoring-system {
    padding: 60px 0;
    background: white;
}

.scoring-box {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 40px;
}

.scoring-box h2 {
    font-size: 2rem;
    color: #0F172A;
    margin-bottom: 15px;
}

.scoring-box h2 i {
    color: #F97316;
    margin-right: 10px;
}

.scoring-box p {
    color: #475569;
    margin-bottom: 30px;
}

.scoring-table {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}

.scoring-row {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #E2E8F0;
}

.scoring-row:last-child {
    border-bottom: none;
}

.scoring-row.header {
    background: #0F172A;
    color: white;
    font-weight: 600;
}

.scoring-row.header .score-criteria,
.scoring-row.header .score-weight,
.scoring-row.header .score-max {
    color: white;
}

.scoring-row.total {
    background: rgba(249,115,22,0.1);
    font-weight: 700;
}

.score-criteria {
    flex: 2;
    color: #0F172A;
}

.score-weight {
    flex: 1;
    color: #64748B;
}

.score-max {
    flex: 1;
    color: #F97316;
    font-weight: 600;
}

/* Timeline */
.process-timeline {
    padding: 60px 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E2E8F0;
}

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

.timeline-number {
    width: 60px;
    height: 60px;
    background: #F97316;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px white;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0F172A;
}

.timeline-content p {
    color: #475569;
    line-height: 1.6;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.methodology-faq .faq-item {
    flex: 1 1 400px;
    background: #F8FAFC;
    padding: 25px;
    border-radius: 16px;
    transition: all 0.2s;
}

.methodology-faq .faq-item:hover {
    background: #F1F5F9;
    transform: translateX(5px);
}

/* Transparency Note */
.transparency-note {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    color: white;
}

.note-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(249,115,22,0.3);
}

.note-box i {
    font-size: 4rem;
    color: #F97316;
    flex-shrink: 0;
}

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

.note-content p {
    color: #CBD5E1;
    line-height: 1.8;
    font-size: 1.1rem;
}

.note-content a {
    color: #F97316;
    text-decoration: none;
    font-weight: 600;
}

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

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .intro-box {
        padding: 25px;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .scoring-box {
        padding: 25px;
    }
    
    .scoring-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .note-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .note-box i {
        font-size: 3rem;
    }
    
    .note-content h3 {
        font-size: 1.5rem;
    }
}
/* ===== ABOUT PAGE STYLES ===== */

/* About Story */
.about-story {
    padding: 60px 0;
}

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

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

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #0F172A;
}

.story-content h2 span {
    color: #F97316;
}

.story-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-content strong {
    color: #F97316;
    font-weight: 600;
}

.story-image {
    flex: 1 1 400px;
}

.image-placeholder {
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    border-radius: 20px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border: 1px solid rgba(249,115,22,0.3);
}

.image-placeholder i {
    font-size: 5rem;
    color: #F97316;
    margin-bottom: 20px;
}

.image-placeholder span {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* About Mission */
.about-mission {
    padding: 40px 0;
}

.mission-box {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    border-left: 4px solid #F97316;
}

.mission-icon i {
    font-size: 4rem;
    color: #F97316;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0F172A;
}

.mission-content h2 span {
    color: #F97316;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
}

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

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

.value-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1 1 280px;
    text-align: center;
    transition: transform 0.2s;
    border: 1px solid #E2E8F0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249,115,22,0.1);
    border-color: #F97316;
}

.value-icon i {
    font-size: 2.5rem;
    color: #F97316;
    background: rgba(249,115,22,0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0F172A;
}

.value-card p {
    color: #475569;
    line-height: 1.6;
}

/* Team Section */
.about-team {
    padding: 60px 0;
}

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

.team-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    flex: 1 1 250px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
    transition: all 0.2s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(249,115,22,0.1);
    border-color: #F97316;
}

.team-image {
    margin-bottom: 20px;
}

.team-image .image-placeholder {
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.team-image .image-placeholder i {
    font-size: 4rem;
    color: #F97316;
    margin: 0;
}

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

.team-role {
    color: #F97316;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.team-social a {
    color: #94A3B8;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.team-social a:hover {
    color: #F97316;
}

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

.trust-box {
    background: #0e1626;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.trust-box h2 {
    font-size: 2rem;
    color: #0F172A;
    margin-bottom: 40px;
    text-align: center;
}

.trust-box h2 i {
    color: #F97316;
    margin-right: 10px;
}

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

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1 1 400px;
}

.trust-item i {
    color: #10B981;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-item h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 8px;
}

.trust-item p {
    color: #475569;
    line-height: 1.6;
}

/* Partners Section */
.about-partners {
    padding: 60px 0;
}

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

.partner-item {
    flex: 0 1 200px;
}

.partner-placeholder {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.2s;
}

.partner-placeholder:hover {
    border-color: #F97316;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249,115,22,0.1);
}

.partner-placeholder i {
    font-size: 2.5rem;
    color: #F97316;
}

.partner-placeholder span {
    color: #0F172A;
    font-weight: 500;
    text-align: center;
}

/* Contact CTA */
.about-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    color: white;
}

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

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

.contact-box p {
    font-size: 1.2rem;
    color: #CBD5E1;
    margin-bottom: 40px;
}

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

.contact-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-buttons .btn i {
    font-size: 1rem;
}

.contact-buttons .btn-primary {
    background: #F97316;
    color: #0F172A;
}

.contact-buttons .btn-primary:hover {
    background: #fb8b3c;
}

.contact-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-buttons .btn-secondary:hover {
    background: white;
    color: #0F172A;
}

/* Responsive */
@media (max-width: 768px) {
    .story-grid {
        flex-direction: column;
    }
    
    .mission-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .trust-grid {
        flex-direction: column;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-box h2 {
        font-size: 2rem;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .partner-item {
        flex: 1 1 150px;
    }
}
/* ===== REVIEW PAGE STYLES ===== */

/* Filter Bar */
.review-filters {
    padding: 30px 0 10px;
}

.filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748B;
    font-weight: 500;
}

.filter-label i {
    color: #F97316;
}

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

.filter-btn {
    background: transparent;
    border: 1px solid #E2E8F0;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #F97316;
    border-color: #F97316;
    color: white;
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    color: #0F172A;
    background: white;
    cursor: pointer;
}

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

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249,115,22,0.1);
    border-color: #F97316;
}

.review-card-header {
    background: #F8FAFC;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E2E8F0;
}

.review-rank {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F97316;
    background: rgba(249,115,22,0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

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

.review-rating-large .rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
}

.review-rating-large .rating-stars {
    display: flex;
    gap: 3px;
}

.review-rating-large .rating-stars i {
    color: #F97316;
    font-size: 1rem;
}

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

.review-casino-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.review-casino-name {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
}

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

.review-badges span {
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-popular {
    background: #F97316;
    color: #0F172A;
}

.badge-exclusive {
    background: #10B981;
    color: #0F172A;
}

.badge-bonus {
    background: #8B5CF6;
    color: white;
}

.badge-new {
    background: #3B82F6;
    color: white;
}

.badge-portugal {
    background: #1E3A8A;
    color: white;
}

.badge-traditional {
    background: #6B4F3C;
    color: white;
}

.badge-international {
    background: #6B7280;
    color: white;
}

/* Pros & Cons */
.review-pros-cons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
}

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

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

.pros h4 i {
    color: #10B981;
}

.cons h4 i {
    color: #EF4444;
}

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

.pros ul li, .cons ul li {
    margin-bottom: 8px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros ul li i {
    color: #10B981;
    font-size: 0.9rem;
}

.cons ul li i {
    color: #EF4444;
    font-size: 0.9rem;
}

/* Review Bonus */
.review-bonus {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    border-radius: 12px;
    color: white;
}

.bonus-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 30px;
}

.bonus-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F97316;
}

/* Review Features */
.review-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.review-features .feature {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #F1F5F9;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #475569;
}

.review-features .feature i {
    color: #F97316;
    font-size: 0.8rem;
}

/* Review Footer */
.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
}

.review-votes {
    color: #64748B;
    font-size: 0.9rem;
}

.review-votes i {
    color: #F97316;
    margin-right: 5px;
}

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

.btn-review {
    background: transparent;
    color: #0F172A;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #F97316;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-review:hover {
    background: #F97316;
    color: #0F172A;
}

.btn-visit {
    background: #10B981;
    color: #0F172A;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-visit:hover {
    background: #0f9e6a;
    transform: scale(1.02);
}

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

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

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
}

.page-link:hover,
.page-link.active {
    background: #F97316;
    border-color: #F97316;
    color: white;
}

.page-dots {
    color: #94A3B8;
}

.page-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    height: 40px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
}

.page-next:hover {
    background: #F97316;
    border-color: #F97316;
    color: white;
}

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

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
}

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

.comparison-table th {
    background: #0F172A;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

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

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

.comparison-table .casino-name {
    font-weight: 600;
    color: #0F172A;
}

.comparison-table .rating-cell {
    color: #F97316;
    font-weight: 600;
}

.comparison-table .rating-cell i {
    color: #F97316;
    font-size: 0.8rem;
    margin-left: 3px;
}

.comparison-table .bonus-cell {
    font-weight: 600;
    color: #10B981;
}

.comparison-table .yes-cell i {
    color: #10B981;
}

.comparison-table .no-cell i {
    color: #EF4444;
}

.comparison-table .partial-cell i {
    color: #F97316;
}

.table-btn {
    display: inline-block;
    background: #F97316;
    color: #0F172A;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.table-btn:hover {
    background: #fb8b3c;
    transform: scale(1.02);
}

/* Review FAQ */
.review-faq {
    padding: 60px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-options {
        width: 100%;
    }
    
    .sort-select {
        width: 100%;
    }
    
    .review-card-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .review-casino-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-pros-cons {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-actions {
        width: 100%;
    }
    
    .btn-review,
    .btn-visit {
        flex: 1;
        text-align: center;
    }
}
/* ===== REVIEW PAGE STYLES (ADD TO EXISTING STYLE.CSS) ===== */

/* Review Hero */
.review-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    color: white;
    padding: 40px 0 60px;
}

.review-header-content {
    max-width: 900px;
}

.breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #94A3B8;
}

.breadcrumbs a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #F97316;
}

.breadcrumbs i {
    margin: 0 8px;
    font-size: 0.7rem;
}

.casino-title-block {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.casino-logo-large {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #0F172A;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 3px solid #F97316;
}

.casino-title-block h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.casino-subtitle {
    color: #CBD5E1;
    font-size: 1.1rem;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 30px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-icon {
    width: 45px;
    height: 45px;
    background: rgba(249,115,22,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-icon i {
    font-size: 1.3rem;
    color: #F97316;
}

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

.meta-label {
    font-size: 0.8rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.review-actions-hero {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary {
    background: #F97316;
    color: #0F172A;
}

.btn-hero-primary:hover {
    background: #fb8b3c;
    transform: scale(1.02);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #0F172A;
}

/* Review Main */
.review-main {
    padding: 60px 0;
}

/* Pros & Cons Box */
.pros-cons-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
}

.pros-section, .cons-section {
    flex: 1 1 300px;
}

.pros-section h3, .cons-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-section h3 i {
    color: #10B981;
}

.cons-section h3 i {
    color: #EF4444;
}

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

.pros-section li, .cons-section li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
}

.pros-section li i {
    color: #10B981;
}

.cons-section li i {
    color: #EF4444;
}

/* Rating Bars */
.rating-details {
    margin: 50px 0;
}

.rating-bars {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #E2E8F0;
}

.rating-bar-item {
    margin-bottom: 20px;
}

.rating-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #0F172A;
    font-weight: 500;
}

.rating-bar-score {
    color: #F97316;
    font-weight: 600;
}

.rating-bar-bg {
    height: 10px;
    background: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #F97316;
    border-radius: 10px;
}

/* Bonus Card */
.bonus-details {
    margin: 50px 0;
}

.bonus-card {
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.bonus-value-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F97316;
    background: rgba(249,115,22,0.1);
    padding: 20px;
    border-radius: 16px;
    min-width: 250px;
    text-align: center;
}

.bonus-desc {
    flex: 1;
}

.bonus-desc ul {
    margin: 15px 0;
    padding-left: 20px;
}

.bonus-desc li {
    margin-bottom: 8px;
}

.bonus-terms {
    font-size: 0.9rem;
    color: #94A3B8;
    margin-top: 15px;
}

/* Payment Methods */
.payment-methods {
    margin: 50px 0;
}

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

.payment-item {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
    flex: 1 1 150px;
    text-align: center;
    transition: all 0.2s;
}

.payment-item:hover {
    border-color: #F97316;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249,115,22,0.1);
}

.payment-item i {
    font-size: 2rem;
    color: #F97316;
    margin-bottom: 10px;
}

.payment-item span {
    display: block;
    font-weight: 500;
    color: #0F172A;
    margin-bottom: 5px;
}

.payment-item small {
    color: #64748B;
    font-size: 0.8rem;
}

/* Games Section */
.games-section {
    margin: 50px 0;
}

.games-providers {
    margin-bottom: 30px;
}

.provider-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.provider-tag {
    background: #F1F5F9;
    color: #0F172A;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.game-category {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 25px;
    flex: 1 1 200px;
    text-align: center;
    transition: all 0.2s;
}

.game-category:hover {
    border-color: #F97316;
}

.game-category i {
    font-size: 2rem;
    color: #F97316;
    margin-bottom: 15px;
}

.game-category h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #0F172A;
}

.game-category p {
    color: #64748B;
    font-size: 0.9rem;
}

/* Important Notice (for 888) */
.important-notice {
    background: #FEF3C7;
    border-left: 4px solid #F97316;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.notice-icon i {
    font-size: 3rem;
    color: #F97316;
}

.notice-content h2 {
    color: #0F172A;
    margin-bottom: 10px;
}

.notice-content p {
    color: #475569;
    margin-bottom: 8px;
}

/* Withdrawal Info */
.withdrawal-info {
    margin: 50px 0;
}

.info-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #E2E8F0;
}

.steps-list {
    margin: 20px 0 20px 20px;
}

.steps-list li {
    margin-bottom: 10px;
    color: #475569;
}

.withdrawal-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-link {
    color: #F97316;
    text-decoration: none;
    font-weight: 500;
}

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

/* Alternatives */
.alternatives-section {
    margin: 50px 0;
}

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

.alternative-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 25px;
    flex: 1 1 200px;
    text-align: center;
}

.alternative-card h3 {
    color: #0F172A;
    margin-bottom: 8px;
}

.alternative-card p {
    color: #F97316;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-small {
    display: inline-block;
    background: #F97316;
    color: #0F172A;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-small:hover {
    background: #fb8b3c;
}

/* Review CTA */
.review-cta {
    background: linear-gradient(135deg, #F97316 0%, #f59e0b 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin: 50px 0;
}

.review-cta h2 {
    font-size: 2.5rem;
    color: #0F172A;
    margin-bottom: 15px;
}

.review-cta p {
    font-size: 1.2rem;
    color: #0F172A;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-large {
    padding: 16px 50px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .casino-title-block {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .casino-logo-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .casino-title-block h1 {
        font-size: 2.2rem;
    }
    
    .review-meta {
        gap: 20px;
    }
    
    .meta-item {
        width: calc(50% - 10px);
    }
    
    .bonus-card {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-value-large {
        width: 100%;
    }
    
    .review-cta {
        padding: 40px 20px;
    }
    
    .review-cta h2 {
        font-size: 1.8rem;
    }
    
    .important-notice {
        flex-direction: column;
        text-align: center;
    }
}
/* Success Page */
.success-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.success-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
}

.success-icon i {
    font-size: 5rem;
    color: #10B981;
    margin-bottom: 20px;
}

.success-box h1 {
    font-size: 2.5rem;
    color: #0F172A;
    margin-bottom: 15px;
}

.success-box p {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
/* ===== AFFILIATE DISCLOSURE PAGE STYLES ===== */

/* Introduction */
.disclosure-section {
    padding: 40px 0;
}

.disclaimer-box {
    background: #F8FAFC;
    border-left: 4px solid #F97316;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.disclaimer-icon i {
    font-size: 3rem;
    color: #F97316;
}

.disclaimer-highlight {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #0F172A;
}

.disclaimer-highlight strong {
    color: #F97316;
}

/* Main Content */
.disclosure-main {
    padding: 40px 0;
}

.disclosure-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.disclosure-text {
    flex: 2;
    min-width: 300px;
}

.disclosure-text h3 {
    font-size: 1.4rem;
    color: #0F172A;
    margin: 30px 0 15px;
}

.disclosure-text h3:first-of-type {
    margin-top: 0;
}

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

.highlight-box {
    background: rgba(249,115,22,0.05);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box h3 i {
    color: #10B981;
}

.highlight-box p {
    margin-bottom: 0;
}

.steps-list {
    margin: 20px 0 20px 20px;
}

.steps-list li {
    margin-bottom: 12px;
    color: #475569;
    line-height: 1.6;
}

.steps-list strong {
    color: #0F172A;
}

.note-box {
    background: #F1F5F9;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 30px 0;
}

.note-box i {
    font-size: 1.5rem;
    color: #F97316;
    flex-shrink: 0;
}

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

/* Sidebar */
.disclosure-sidebar {
    flex: 1;
    min-width: 280px;
}

.sidebar-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.sidebar-card h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E8F0;
}

.sidebar-card h3 i {
    color: #F97316;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
}

.sidebar-card li i {
    color: #10B981;
}

.qa-item {
    margin-bottom: 20px;
}

.qa-item .question {
    color: #0F172A;
    margin-bottom: 5px;
}

.qa-item .answer {
    color: #64748B;
    font-size: 0.95rem;
    padding-left: 10px;
    border-left: 2px solid #F97316;
}

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

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

.principle-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    flex: 1 1 250px;
    position: relative;
    border: 1px solid #E2E8F0;
    transition: all 0.2s;
}

.principle-card:hover {
    transform: translateY(-5px);
    border-color: #F97316;
    box-shadow: 0 15px 30px rgba(249,115,22,0.1);
}

.principle-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(249,115,22,0.1);
    position: absolute;
    top: 10px;
    right: 15px;
}

.principle-card h3 {
    font-size: 1.3rem;
    color: #0F172A;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.principle-card p {
    color: #475569;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Disclosure FAQ */
.disclosure-faq {
    padding: 60px 0;
}

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

.comparison-box {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    margin: 30px 0 20px;
}

.comparison-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #E2E8F0;
}

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

.comparison-row.header {
    background: #0F172A;
    color: white;
    font-weight: 500;
}

.comp-item {
    flex: 1;
    padding: 15px 20px;
    min-width: 150px;
}

.comparison-row.highlight {
    background: rgba(249,115,22,0.05);
    border-left: 3px solid #F97316;
}

.comparison-note {
    color: #64748B;
    font-size: 0.95rem;
    margin-top: 20px;
    text-align: center;
}

/* Trust Signals */
.trust-signals {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    color: white;
}

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

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

.trust-box h2 i {
    color: #F97316;
    margin-right: 10px;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.trust-item {
    flex: 1 1 250px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 40px;
    border: 1px solid rgba(249,115,22,0.3);
}

.trust-item i {
    color: #10B981;
    font-size: 1.2rem;
}

.trust-item span {
    color: white;
}

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

.trust-cta .btn-primary {
    background: #F97316;
    color: #0F172A;
}

.trust-cta .btn-primary:hover {
    background: #fb8b3c;
}

.trust-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.trust-cta .btn-secondary:hover {
    background: white;
    color: #0F172A;
}

/* Responsive */
@media (max-width: 768px) {
    .disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-highlight {
        font-size: 1rem;
    }
    
    .principle-card {
        padding: 25px;
    }
    
    .comparison-row {
        flex-direction: column;
    }
    
    .comp-item {
        width: 100%;
        padding: 10px 15px;
    }
    
    .comparison-row.header .comp-item {
        padding: 15px;
    }
    
    .trust-item {
        flex: 1 1 100%;
    }
}
/* ===== PRIVACY POLICY PAGE STYLES ===== */

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

.updated-box {
    background: #F1F5F9;
    border-radius: 40px;
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #475569;
}

.updated-box i {
    color: #F97316;
}

/* Privacy Intro */
.privacy-section {
    padding: 30px 0;
}

.privacy-intro {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #E2E8F0;
}

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

.privacy-intro .highlight {
    background: rgba(249,115,22,0.05);
    border-left: 4px solid #F97316;
    padding: 15px 20px;
    margin-top: 20px;
    font-weight: 500;
}

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

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

/* Sidebar */
.privacy-sidebar {
    flex: 0 0 280px;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.sidebar-sticky h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E8F0;
}

.sidebar-sticky ul {
    list-style: none;
    margin-bottom: 25px;
}

.sidebar-sticky li {
    margin-bottom: 12px;
}

.sidebar-sticky a {
    color: #475569;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.sidebar-sticky a:hover {
    color: #F97316;
    transform: translateX(5px);
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #F1F5F9;
    color: #0F172A;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-download:hover {
    background: #F97316;
    color: white;
}

.btn-download i {
    font-size: 1rem;
}

/* Content */
.privacy-content {
    flex: 1;
    min-width: 300px;
}

.privacy-block {
    background: white;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.privacy-block h2 {
    font-size: 1.8rem;
    color: #0F172A;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-block h2 .number {
    color: #F97316;
    font-weight: 700;
}

.privacy-block h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin: 25px 0 15px;
}

.privacy-block h3:first-of-type {
    margin-top: 0;
}

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

.privacy-block ul {
    margin: 15px 0 15px 20px;
}

.privacy-block li {
    margin-bottom: 8px;
    color: #475569;
}

.privacy-block li strong {
    color: #0F172A;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.usage-item {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.usage-item i {
    font-size: 2rem;
    color: #F97316;
    margin-bottom: 12px;
}

.usage-item h4 {
    font-size: 1rem;
    color: #0F172A;
    margin-bottom: 8px;
}

.usage-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.legal-basis {
    background: #F8FAFC;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
}

.cookies-table th {
    background: #0F172A;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 500;
}

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

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

.cookies-table tr:hover td {
    background: #F8FAFC;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Partners List */
.partners-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.partner-item {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
}

.partner-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0F172A;
    margin-bottom: 8px;
}

.partner-item h4 i {
    color: #F97316;
}

.partner-item a {
    color: #F97316;
    text-decoration: none;
}

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

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

.warning i {
    margin-right: 8px;
    color: #F97316;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.right-item {
    background: #F8FAFC;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
}

.right-item i {
    font-size: 2rem;
    color: #F97316;
    margin-bottom: 10px;
}

.right-item h4 {
    font-size: 1rem;
    color: #0F172A;
    margin-bottom: 5px;
}

.right-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #64748B;
}

/* Security List */
.security-list {
    list-style: none !important;
    margin-left: 0 !important;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.security-list i {
    color: #10B981;
    width: 20px;
}

/* Age Warning */
.age-warning {
    background: rgba(249,115,22,0.1);
    border: 1px solid #F97316;
    border-radius: 30px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F97316;
    font-weight: 600;
    margin-top: 20px;
}

.age-warning i {
    font-size: 1.2rem;
}

/* Contact Privacy */
.contact-privacy {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-privacy-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-privacy-item i {
    width: 30px;
    color: #F97316;
    font-size: 1.2rem;
}

.contact-privacy-item a {
    color: #0F172A;
    text-decoration: none;
}

.contact-privacy-item a:hover {
    color: #F97316;
}

/* Consent Summary */
.consent-summary {
    padding: 40px 0;
}

.consent-box {
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.consent-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.consent-box h3 i {
    color: #F97316;
}

.consent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.consent-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
}

.consent-type {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.consent-status {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #94A3B8;
    font-size: 0.9rem;
}

.consent-status i {
    color: #10B981;
}

.consent-box .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.consent-box .btn-secondary:hover {
    background: white;
    color: #0F172A;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-grid {
        flex-direction: column;
    }
    
    .privacy-sidebar {
        flex: 1;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
    }
    
    .privacy-block {
        padding: 25px;
    }
    
    .privacy-block h2 {
        font-size: 1.5rem;
    }
    
    .cookies-table {
        font-size: 0.9rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 8px;
    }
    
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consent-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-privacy-item {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== COOKIES POLICY PAGE STYLES ===== */

/* Intro Card */
.cookies-intro {
    padding: 30px 0;
}

.intro-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #E2E8F0;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.intro-card .highlight {
    background: rgba(249,115,22,0.05);
    border-left: 4px solid #F97316;
    padding: 15px 20px;
    margin-top: 20px;
    font-weight: 500;
}

/* Cookie Demo Bar */
.cookie-demo {
    padding: 20px 0 40px;
}

.demo-bar {
    background: #0F172A;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #F97316;
}

.demo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.demo-text i {
    color: #F97316;
    font-size: 1.2rem;
}

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

.demo-btn {
    padding: 8px 16px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.demo-btn.accept {
    background: #F97316;
    color: #0F172A;
}

.demo-btn.accept:hover {
    background: #fb8b3c;
}

.demo-btn.settings {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.demo-btn.settings:hover {
    background: white;
    color: #0F172A;
}

.demo-btn.reject {
    background: transparent;
    color: #94A3B8;
    border: 1px solid #475569;
}

.demo-btn.reject:hover {
    border-color: #F97316;
    color: #F97316;
}

.demo-note {
    text-align: center;
    color: #64748B;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Main Content */
.cookies-main {
    padding: 40px 0;
}

.cookies-block {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.cookies-block h2 {
    font-size: 1.8rem;
    color: #0F172A;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookies-block h2 i {
    color: #F97316;
}

.cookies-block h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin: 25px 0 15px;
}

.cookies-block p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Info Box */
.info-box {
    background: #F1F5F9;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 20px;
}

.info-box i {
    font-size: 1.5rem;
    color: #F97316;
    flex-shrink: 0;
}

.info-box p {
    margin-bottom: 0;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.reason-card {
    background: #F8FAFC;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
}

.reason-card i {
    font-size: 2rem;
    color: #F97316;
    margin-bottom: 15px;
}

.reason-card h3 {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #0F172A;
}

.reason-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Cookie Categories */
.cookie-category {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.category-tag {
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-tag.essential {
    background: #0F172A;
    color: white;
}

.category-tag.analytical {
    background: #3B82F6;
    color: white;
}

.category-tag.functional {
    background: #8B5CF6;
    color: white;
}

.category-tag.marketing {
    background: #F97316;
    color: #0F172A;
}

.category-always {
    color: #10B981;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-opt {
    color: #64748B;
    font-size: 0.9rem;
}

.cookie-category p {
    margin-bottom: 15px;
}

.cookie-examples {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #475569;
    border: 1px dashed #E2E8F0;
}

/* Third Party Table */
.third-party-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
}

.third-party-table th {
    background: #0F172A;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 500;
}

.third-party-table td {
    padding: 12px;
    border-bottom: 1px solid #E2E8F0;
    color: #475569;
}

.third-party-table tr:last-child td {
    border-bottom: none;
}

.third-party-table tr:hover td {
    background: #F8FAFC;
}

.third-party-table a {
    color: #F97316;
    text-decoration: none;
}

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

/* Duration Grid */
.duration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.duration-item {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
}

.duration-item h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.duration-item h3 i {
    color: #F97316;
}

/* Control Methods */
.control-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.method {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 16px;
}

.method h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.method h3 i {
    color: #F97316;
}

.browser-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.browser-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #0F172A;
    text-decoration: none;
    padding: 5px 10px;
    background: white;
    border-radius: 30px;
    border: 1px solid #E2E8F0;
}

.browser-links a:hover {
    border-color: #F97316;
    color: #F97316;
}

.browser-links i {
    font-size: 1.1rem;
}

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

/* Consent Status */
.consent-status-box {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.status-label {
    font-weight: 500;
    color: #0F172A;
}

.status-value {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-value i {
    font-size: 1rem;
}

.status-value.active i {
    color: #10B981;
}

.status-value.inactive i {
    color: #EF4444;
}

.consent-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Contact Cookies */
.contact-cookies {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 30px;
    color: #F97316;
    font-size: 1.2rem;
}

.contact-item a {
    color: #0F172A;
    text-decoration: none;
}

.contact-item a:hover {
    color: #F97316;
}

/* Summary Table */
.cookie-summary {
    padding: 60px 0;
    background: #F8FAFC;
}

.summary-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    margin: 30px 0 15px;
}

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

.summary-table th {
    background: #0F172A;
    color: white;
    padding: 15px;
    text-align: left;
}

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

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

.summary-table tr:hover td {
    background: #F8FAFC;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.essential {
    background: #0F172A;
    color: white;
}

.badge.analytical {
    background: #3B82F6;
    color: white;
}

.badge.functional {
    background: #8B5CF6;
    color: white;
}

.badge.marketing {
    background: #F97316;
    color: #0F172A;
}

.table-note {
    text-align: center;
    color: #64748B;
    font-size: 0.9rem;
}

/* Related Pages */
.related-pages {
    padding: 60px 0;
}

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

.related-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 30px;
    flex: 1 1 250px;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: #F97316;
    box-shadow: 0 15px 30px rgba(249,115,22,0.1);
}

.related-card i {
    font-size: 2.5rem;
    color: #F97316;
    margin-bottom: 15px;
}

.related-card h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 10px;
}

.related-card p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.related-card span {
    color: #F97316;
    font-weight: 500;
}

.related-card span i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.2s;
}

.related-card:hover span i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .cookies-block {
        padding: 25px;
    }
    
    .cookies-block h2 {
        font-size: 1.5rem;
    }
    
    .demo-bar {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }
    
    .demo-buttons {
        justify-content: center;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .third-party-table {
        font-size: 0.9rem;
    }
    
    .third-party-table th,
    .third-party-table td {
        padding: 8px;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .consent-actions {
        flex-direction: column;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== TERMS AND CONDITIONS PAGE STYLES ===== */

/* Intro Card */
.terms-intro {
    padding: 30px 0;
}

.intro-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #E2E8F0;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.intro-card .highlight {
    background: rgba(249,115,22,0.05);
    border-left: 4px solid #F97316;
    padding: 15px 20px;
    margin-top: 20px;
    font-weight: 500;
}

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

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

/* Sidebar */
.terms-sidebar {
    flex: 0 0 280px;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.sidebar-sticky h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E8F0;
}

.sidebar-sticky ul {
    list-style: none;
    margin-bottom: 25px;
}

.sidebar-sticky li {
    margin-bottom: 12px;
}

.sidebar-sticky a {
    color: #475569;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.sidebar-sticky a:hover {
    color: #F97316;
    transform: translateX(5px);
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #F1F5F9;
    color: #0F172A;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-download:hover {
    background: #F97316;
    color: white;
}

/* Content */
.terms-content {
    flex: 1;
    min-width: 300px;
}

.terms-block {
    background: white;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.terms-block h2 {
    font-size: 1.8rem;
    color: #0F172A;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-block h2 .number {
    color: #F97316;
    font-weight: 700;
}

.terms-block h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin: 25px 0 15px;
}

.terms-block h3:first-of-type {
    margin-top: 0;
}

.terms-block p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-block ul {
    margin: 15px 0 15px 20px;
}

.terms-block li {
    margin-bottom: 8px;
    color: #475569;
}

.terms-block li strong {
    color: #0F172A;
}

.terms-block a {
    color: #F97316;
    text-decoration: none;
}

.terms-block a:hover {
    text-decoration: underline;
}

/* Warning Box */
.warning-box {
    background: #FEF3C7;
    border-left: 4px solid #F97316;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.warning-box i {
    font-size: 1.5rem;
    color: #F97316;
    flex-shrink: 0;
}

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

/* Age Box */
.age-box {
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
    display: flex;
    gap: 20px;
    align-items: center;
    color: white;
    border: 1px solid #F97316;
}

.age-box i {
    font-size: 3rem;
    color: #F97316;
}

.age-box h3 {
    color: white;
    margin: 0 0 8px 0;
}

.age-box p {
    color: #CBD5E1;
    margin-bottom: 0;
}

/* Note Box */
.note-box {
    background: #F1F5F9;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.note-box i {
    font-size: 1.5rem;
    color: #F97316;
    flex-shrink: 0;
}

.note-box p {
    margin-bottom: 0;
}

/* Legal Box */
.legal-box {
    background: rgba(249,115,22,0.05);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.legal-box i {
    font-size: 1.5rem;
    color: #F97316;
    flex-shrink: 0;
}

/* Contact Terms */
.contact-terms {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 30px;
    color: #F97316;
    font-size: 1.2rem;
}

.contact-item a {
    color: #0F172A;
    text-decoration: none;
}

.contact-item a:hover {
    color: #F97316;
}

/* Responsible Notice */
.responsible-notice {
    padding: 60px 0;
    background: #F8FAFC;
}

.responsible-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.responsible-box i {
    font-size: 4rem;
    color: #F97316;
}

.responsible-content {
    flex: 1;
}

.responsible-content h3 {
    font-size: 1.5rem;
    color: #0F172A;
    margin-bottom: 10px;
}

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

.help-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.help-links a {
    color: #F97316;
    text-decoration: none;
    font-weight: 500;
}

.help-links a:hover {
    text-decoration: underline;
}

/* Agreement Summary */
.agreement-summary {
    padding: 40px 0;
}

.summary-box {
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.summary-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-box h3 i {
    color: #F97316;
}

.summary-box p {
    color: #CBD5E1;
    margin-bottom: 25px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    padding: 12px 20px;
}

.summary-item i {
    color: #10B981;
}

/* Related Pages */
.related-pages {
    padding: 60px 0;
}

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

.related-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 30px;
    flex: 1 1 250px;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: #F97316;
    box-shadow: 0 15px 30px rgba(249,115,22,0.1);
}

.related-card i {
    font-size: 2.5rem;
    color: #F97316;
    margin-bottom: 15px;
}

.related-card h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 10px;
}

.related-card p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.related-card span {
    color: #F97316;
    font-weight: 500;
}

.related-card span i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.2s;
}

.related-card:hover span i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .terms-grid {
        flex-direction: column;
    }
    
    .terms-sidebar {
        flex: 1;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
    }
    
    .terms-block {
        padding: 25px;
    }
    
    .terms-block h2 {
        font-size: 1.5rem;
    }
    
    .age-box {
        flex-direction: column;
        text-align: center;
    }
    
    .responsible-box {
        flex-direction: column;
        text-align: center;
    }
    
    .help-links {
        justify-content: center;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== RESPONSIBLE GAMBLING PAGE STYLES ===== */

/* Hero Warning */
.responsible-hero {
    padding: 20px 0 0;
}

.hero-warning {
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
    border-radius: 60px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    border: 2px solid #F97316;
}

.warning-icon i {
    font-size: 3rem;
    color: #F97316;
}

.warning-text h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

.warning-text p {
    color: #CBD5E1;
    font-size: 1.1rem;
}

/* Intro Card */
.responsible-intro {
    padding: 30px 0;
}

.intro-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #E2E8F0;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.intro-card .highlight {
    background: rgba(249,115,22,0.05);
    border-left: 4px solid #F97316;
    padding: 15px 20px;
    margin-top: 20px;
    font-weight: 500;
}

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

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.sign-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    position: relative;
    border: 1px solid #E2E8F0;
    transition: all 0.2s;
    overflow: hidden;
}

.sign-card:hover {
    transform: translateY(-5px);
    border-color: #F97316;
    box-shadow: 0 15px 30px rgba(249,115,22,0.1);
}

.sign-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(249,115,22,0.1);
}

.sign-card i {
    font-size: 2rem;
    color: #F97316;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.sign-card h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.sign-card p {
    color: #475569;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.signs-note {
    text-align: center;
    background: #FEF3C7;
    border-radius: 40px;
    padding: 15px 25px;
    display: inline-block;
    margin: 0 auto;
    width: auto;
}

.signs-note p {
    color: #92400E;
    margin: 0;
}

.signs-note i {
    color: #F97316;
    margin-right: 8px;
}

/* Safe Tips */
.safe-tips {
    padding: 60px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.tip-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.2s;
}

.tip-card:hover {
    border-color: #F97316;
    transform: translateY(-3px);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: rgba(249,115,22,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tip-icon i {
    font-size: 2rem;
    color: #F97316;
}

.tip-card h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 12px;
}

.tip-card p {
    color: #475569;
    line-height: 1.6;
}

/* Self Help Tools */
.self-help-tools {
    padding: 60px 0;
    background: #F8FAFC;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.tool-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

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

.tool-header i {
    font-size: 2rem;
    color: #F97316;
}

.tool-header h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin: 0;
}

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

.tool-action {
    margin-top: auto;
}

.btn-link {
    color: #F97316;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

.btn-link i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.btn-link:hover i {
    transform: translateX(3px);
}

.tools-note {
    background: #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tools-note i {
    font-size: 1.5rem;
    color: #F97316;
}

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

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

.assessment-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-top: 30px;
}

.question-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}

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

.question {
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 15px;
}

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #475569;
}

.option input[type="radio"] {
    accent-color: #F97316;
    width: 18px;
    height: 18px;
}

.assessment-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.assessment-result {
    margin-top: 40px;
    padding: 30px;
    background: #F8FAFC;
    border-radius: 16px;
    border-left: 4px solid #F97316;
}

.assessment-result h3 {
    font-size: 1.3rem;
    color: #0F172A;
    margin-bottom: 15px;
}

.result-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 10px;
}

.result-message {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Resources */
.help-resources {
    padding: 60px 0;
    background: #F8FAFC;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.2s;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: #F97316;
    box-shadow: 0 15px 30px rgba(249,115,22,0.1);
}

.resource-logo {
    width: 80px;
    height: 80px;
    background: rgba(249,115,22,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resource-logo i {
    font-size: 2.5rem;
    color: #F97316;
}

.resource-card h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 10px;
}

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

.resource-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.resource-contact a {
    color: #F97316;
    text-decoration: none;
    font-weight: 500;
}

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

.resource-contact p {
    margin: 0;
    font-size: 0.9rem;
}

/* For Families */
.for-families {
    padding: 60px 0;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.family-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #E2E8F0;
}

.family-card i {
    font-size: 2.5rem;
    color: #F97316;
    margin-bottom: 15px;
}

.family-card h3 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 10px;
}

.family-card p {
    color: #475569;
    line-height: 1.6;
}

/* Commitment */
.commitment {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1a2639 100%);
}

.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid rgba(249,115,22,0.3);
}

.commitment-box i {
    font-size: 5rem;
    color: #F97316;
}

.commitment-content {
    flex: 1;
}

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

.commitment-content p {
    color: #CBD5E1;
    margin-bottom: 15px;
}

.commitment-content ul {
    list-style: none;
}

.commitment-content li {
    margin-bottom: 10px;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.commitment-content li i {
    font-size: 1rem;
    color: #10B981;
    width: 20px;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-warning {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .warning-text h2 {
        font-size: 1.5rem;
    }
    
    .options {
        flex-direction: column;
        gap: 10px;
    }
    
    .assessment-box {
        padding: 25px;
    }
    
    .commitment-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .commitment-content li {
        justify-content: center;
    }
    
    .tools-note {
        flex-direction: column;
        text-align: center;
    }
}