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

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

body {
    font-family: 'Inter', sans-serif;
    background: #F8FAFC;
    color: #0F172A;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* ... rest of your hero styles ... */

/* ====================================
   BUTTONS
   ==================================== */
.btn-primary {
    background: linear-gradient(to right, #16A34A, #059669);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* HERO SECTION ENHANCEMENTS */
.hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
}

/* Animated background elements */
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,184,166,0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.hero-bg-orb-1 {
    top: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
}

.hero-bg-orb-2 {
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22,163,74,0.08) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out reverse;
}

/* Floating sports icons */
.hero-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    z-index: 1;
}

.hero-icon-1 {
    top: 20%;
    left: 10%;
    animation: floatIcon 12s infinite;
}

.hero-icon-2 {
    bottom: 30%;
    right: 15%;
    font-size: 2.5rem;
    animation: floatIcon 10s infinite;
}

.hero-icon-3 {
    top: 60%;
    left: 5%;
    animation: floatIcon 14s infinite;
}

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

/* Trust badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(20,184,166,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(20,184,166,0.3);
    color: #14B8A6;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero heading */
.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-gradient-text {
    background: linear-gradient(135deg, #14B8A6, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Hero description */
.hero-description {
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-description p {
    color: #CBD5E1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-description-icon {
    display: inline-block;
    margin-right: 5px;
}

/* Bonus stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 35px 0;
    flex-wrap: wrap;
}

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

.hero-stat-value {
    font-size: 2rem;
    color: #14B8A6;
    font-weight: 800;
}

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

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: #334155;
    display: block;
}

/* Hero CTA Button with shine effect */
.hero .btn-primary {
    font-size: 1.2rem;
    padding: 16px 40px;
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(30deg);
    animation: shine 4s infinite;
}

/* ANJ Badge */
.hero-anj {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero-anj img {
    height: 35px;
    opacity: 0.7;
}

.hero-anj-text {
    color: #64748B;
    font-size: 0.85rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20px, 20px) scale(1.1); }
    50% { transform: translate(20px, -20px) scale(0.9); }
    75% { transform: translate(-10px, -10px) scale(1.05); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes shine {
    0% { left: -60%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .hero .btn-primary {
        font-size: 1rem !important;
        padding: 14px 25px !important;
    }
    
    .hero-badge {
        font-size: 0.8rem !important;
        padding: 5px 12px !important;
    }
    
    .hero-stat-value {
        font-size: 1.5rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-stats {
        gap: 15px;
    }
}

/* CARDS */
.top-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.card p {
  font-size: 0.94rem;
  color: #475569;
  margin-bottom: 12px;
}

.rating {
  font-weight: 700;
  color: #DC2626;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.btn-group {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #0F172A;
  color: #0F172A;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

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

/* RESPONSIBLE */
.resp {
  background: #E2E8F0;
  text-align: center;
  padding: 48px 16px;
  margin-top: 60px;
}

.resp p {
  font-size: 0.95rem;
  max-width: 800px;
  margin: auto;
}


/* CTA */
.cta {
  background: linear-gradient(to right, #14B8A6, #059669);
  text-align: center;
  color: #ffffff;
  padding: 70px 20px;
}

.cta h2 {
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 50px 20px;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-links {
  margin: 18px 0;
}

.footer-links a {
  color: #14B8A6;
  margin: 0 10px;
}

.footer-disclaimer {
  margin-top: 20px;
  color: #94A3B8;
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 25px;
  color: #64748B;
}
.footer-logo img {
    height: 45px;
    width: auto;
    background: #0f172a;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s;
    margin-top: 20px;
}

.footer-logo:hover img {
    box-shadow: 0 6px 12px rgba(20,184,166,0.3);
}
/* PAGE SPECIFIC STYLES */
.page-header {
    background: #1E293B;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}
.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.page-header p {
    color: #CBD5E1;
    font-size: 1.1rem;
}

/* Bonus Detail Page */
.bonus-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px auto;
    align-items: start;
}
.bonus-highlight {
    background: #0F172A;
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: sticky;
    top: 30px;
}
.bonus-highlight .bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #14B8A6;
    margin: 15px 0;
}
.bonus-highlight .terms {
    color: #94A3B8;
    font-size: 0.9rem;
    margin: 20px 0;
}
.bonus-highlight .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
}
.feature-list {
    list-style: none;
    margin-top: 30px;
}
.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    gap: 10px;
}
.feature-list li:before {
    content: "✓";
    color: #059669;
    font-weight: bold;
}
.terms-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 30px 0;
}
.terms-card h3 {
    margin-bottom: 15px;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 40px 0;
}
.comparison-table th {
    background: #0F172A;
    color: white;
    padding: 15px;
    text-align: left;
}
.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #E2E8F0;
}
.comparison-table tr:hover {
    background: #F1F5F9;
}
.comparison-table .bonus-cell {
    font-weight: 700;
    color: #059669;
}

/* Guide Page */
.guide-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 40px 0;
}
.guide-content h2 {
    margin: 30px 0 15px;
    color: #0F172A;
}
.guide-content h2:first-child {
    margin-top: 0;
}
.guide-content ul, .guide-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}
.guide-content li {
    margin: 10px 0;
}

/*Review Page*/
.verdict-badge {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}
.verdict-badge h2 {
    color: #14B8A6;
    margin-bottom: 15px;
}
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}
.pros, .cons {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.pros h3 { color: #059669; }
.cons h3 { color: #DC2626; }
.rating-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
}
.rating-table th {
    background: #0F172A;
    color: white;
    padding: 15px;
    text-align: left;
}
.rating-table td {
    padding: 15px;
    border-bottom: 1px solid #E2E8F0;
}
.rating-table tr:last-child td {
    border-bottom: none;
}
.stars {
    color: #FBBF24;
    font-weight: 600;
}
.license-info {
    background: #EFF6FF;
    border-left: 4px solid #2563EB;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}
.license-number {
    font-family: monospace;
    background: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #CBD5E1;
}
.security-badge {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 10px;
}
.list-style{
    padding-left: 20px;
}
.uni-container{
    gap: 20px;
  display: flex;
  flex-direction: column;
}

@media(max-width:768px){
.hero h1{font-size:2rem;}
.bonus-detail { grid-template-columns: 1fr; }
.bonus-highlight { position: static; }
}
/* Additional styles for review listing page */
    .review-filter {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 30px 0;
        flex-wrap: wrap;
    }
    
    .filter-btn {
        background: white;
        border: 2px solid #E2E8F0;
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: 600;
        color: #475569;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .filter-btn:hover, .filter-btn.active {
        background: #0F172A;
        border-color: #0F172A;
        color: white;
    }
    
    .review-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: transform 0.3s, box-shadow 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px rgba(0,0,0,0.1);
    }
    
    .review-card-header {
        background: linear-gradient(135deg, #0F172A, #1E293B);
        color: white;
        padding: 25px 20px;
        position: relative;
    }
    
    .review-card-header h3 {
        font-size: 1.8rem;
        margin-bottom: 5px;
        color: white;
    }
    
    .review-card-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #14B8A6;
        color: #0F172A;
        padding: 5px 12px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
    }
    
    .review-card-content {
        padding: 25px;
        flex-grow: 1;
    }
    
    .review-rating {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .review-stars {
        color: #FBBF24;
        font-weight: 600;
        font-size: 1.2rem;
    }
    
    .review-score {
        background: #F1F5F9;
        padding: 5px 12px;
        border-radius: 50px;
        font-weight: 700;
        color: #0F172A;
    }
    
    .review-bonus {
        background: #EFF6FF;
        border-left: 4px solid #2563EB;
        padding: 12px 15px;
        border-radius: 8px;
        margin: 15px 0;
        font-weight: 600;
    }
    
    .review-bonus-value {
        color: #059669;
        font-size: 1.2rem;
    }
    
    .review-features {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 15px 0;
    }
    
    .review-feature {
        background: #F1F5F9;
        padding: 5px 12px;
        border-radius: 50px;
        font-size: 0.85rem;
        color: #475569;
    }
    
    .review-footer {
        margin-top: auto;
        padding: 0 25px 25px 25px;
    }
    
    .review-license {
        display: inline-block;
        background: #10B981;
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 600;
        margin-right: 5px;
    }
    
    .review-license.anj {
        background: #2563EB;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 50px 0;
        text-align: center;
    }
    
    .stat-item {
        background: white;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #14B8A6;
        line-height: 1;
    }
    
    .stat-label {
        color: #475569;
        margin-top: 10px;
    }
    
    .comparison-note {
        background: linear-gradient(135deg, #14B8A6, #059669);
        color: white;
        padding: 40px;
        border-radius: 16px;
        margin: 50px 0;
        text-align: center;
    }
    .methodology-header {
        background: linear-gradient(135deg, #0F172A, #1E293B);
        color: white;
        padding: 60px 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .methodology-header h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .methodology-header p {
        color: #CBD5E1;
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.1rem;
    }
    
    .methodology-section {
        background: white;
        border-radius: 16px;
        padding: 40px;
        margin-bottom: 40px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }
    
    .methodology-section h2 {
        color: #0F172A;
        margin-bottom: 20px;
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .methodology-section h2 span {
        background: #14B8A6;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
    
    .methodology-section h3 {
        color: #0F172A;
        margin: 25px 0 15px;
        font-size: 1.3rem;
    }
    
    .methodology-section p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .methodology-section ul, .methodology-section ol {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .methodology-section li {
        margin-bottom: 10px;
    }
    
    .highlight-box {
        background: #EFF6FF;
        border-left: 4px solid #2563EB;
        padding: 25px;
        border-radius: 8px;
        margin: 30px 0;
    }
    
    .highlight-box h4 {
        color: #1E40AF;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
    
    .stat-badge {
        display: inline-block;
        background: #14B8A6;
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    
    .criteria-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin: 40px 0;
    }
    
    .criteria-card {
        background: #F8FAFC;
        padding: 25px;
        border-radius: 12px;
        text-align: center;
    }
    
    .criteria-card .number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #14B8A6;
        margin-bottom: 10px;
    }
    
    .criteria-card h4 {
        color: #0F172A;
        margin-bottom: 10px;
    }
    
    .last-updated {
        text-align: center;
        color: #64748B;
        font-size: 0.9rem;
        margin: 50px 0;
        padding: 20px;
        border-top: 1px solid #E2E8F0;
    }
    
    .commitment-box {
        background: linear-gradient(135deg, #0F172A, #1E293B);
        color: white;
        padding: 50px;
        border-radius: 16px;
        text-align: center;
        margin: 40px 0;
    }
    
    .commitment-box h3 {
        color: white;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .commitment-box p {
        color: #CBD5E1;
        max-width: 800px;
        margin: 0 auto;
    }
    /* ====================================
   RESPONSIBLE GAMBLING PAGE
   ==================================== */
.responsible-header {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.responsible-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.responsible-header p {
    color: #CBD5E1;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.responsible-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.responsible-section h2 {
    color: #0F172A;
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 15px;
}

.responsible-section h2 span {
    background: #14B8A6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.responsible-section h3 {
    color: #0F172A;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.responsible-section h4 {
    color: #0F172A;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.responsible-section ul, .responsible-section ol {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.responsible-section li {
    margin-bottom: 10px;
}

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

.responsible-card {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.responsible-card:hover {
    transform: translateY(-5px);
}

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

.responsible-card h4 {
    color: #0F172A;
    margin-bottom: 10px;
}

.responsible-card p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.warning-box {
    background: #FEE2E2;
    border-left: 4px solid #DC2626;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.warning-box h4 {
    color: #991B1B;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.warning-box ul {
    margin-bottom: 0;
}

.warning-box li {
    color: #7F1D1D;
}

.info-box {
    background: #EFF6FF;
    border-left: 4px solid #2563EB;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.info-box h4 {
    color: #1E40AF;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.success-box {
    background: #DCFCE7;
    border-left: 4px solid #059669;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.success-box h4 {
    color: #065F46;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.anj-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border: 2px solid #E2E8F0;
}

.anj-badge img {
    height: 60px;
}

.anj-badge h3 {
    margin: 0 0 10px 0;
    color: #0F172A;
}

.anj-badge p {
    margin: 0;
    color: #475569;
}

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

.resource-card {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

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

.resource-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14B8A6;
    margin: 15px 0;
}

.resource-website {
    color: #2563EB;
    text-decoration: underline;
    word-break: break-all;
    margin: 10px 0;
}

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

.help-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    text-align: center;
}

.help-stat {
    background: #F1F5F9;
    padding: 20px;
    border-radius: 12px;
}

.help-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #14B8A6;
}

.help-stat-label {
    color: #475569;
    margin-top: 5px;
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FEF3C7;
    border: 2px solid #F59E0B;
    padding: 20px;
    border-radius: 50px;
    margin: 30px 0;
}

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

.age-warning h3 {
    color: #92400E;
    margin: 0 0 5px 0;
}

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

.reminder-box {
    background: #0F172A;
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.reminder-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.reminder-box p {
    color: #CBD5E1;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Responsive for Responsible Gambling Page */
@media (max-width: 768px) {
    .responsible-header h1 {
        font-size: 2rem;
    }
    
    .responsible-section {
        padding: 25px;
    }
    
    .responsible-section h2 {
        font-size: 1.5rem;
    }
    
    .anj-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .age-warning {
        flex-direction: column;
        text-align: center;
        border-radius: 16px;
        padding: 20px;
    }
    
    .help-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-phone {
        font-size: 1.3rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ====================================
   ABOUT PAGE
   ==================================== */
.about-header {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.about-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-header p {
    color: #CBD5E1;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.about-section h2 {
    color: #0F172A;
    margin-bottom: 30px;
    font-size: 1.8rem;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 15px;
}

.about-section h3 {
    color: #0F172A;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

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

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mission-card {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
}

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

.mission-card h3 {
    margin-bottom: 15px;
    color: #0F172A;
}

.mission-card p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-item {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #14B8A6;
}

.feature-item h3 {
    color: #0F172A;
    margin-bottom: 15px;
}

.feature-item p {
    color: #475569;
    margin-bottom: 0;
}

/* Criteria List */
.criteria-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #F8FAFC;
    padding: 15px;
    border-radius: 8px;
}

.criteria-badge {
    background: #14B8A6;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

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

/* Commitment Grid */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.commitment-card {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.commitment-card h3 {
    color: #0F172A;
    margin-bottom: 15px;
}

.commitment-card p {
    color: #475569;
    margin-bottom: 15px;
}

.commitment-card .note {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 0;
}

.commitment-card a {
    color: #14B8A6;
    text-decoration: none;
}

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

/* Responsibility Box */
.responsibility-box {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #2563EB;
}

.responsibility-box:last-child {
    margin-bottom: 0;
}

.responsibility-box h3 {
    color: #0F172A;
    margin-bottom: 10px;
}

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

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.value-card {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

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

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

.value-card p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ANJ Section */
.anj-section {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E2E8F0;
    margin-top: 20px;
}

.anj-logo {
    height: 60px;
    margin-bottom: 25px;
}

.anj-section p {
    color: #475569;
    margin-bottom: 15px;
}

.anj-section p:last-child {
    margin-bottom: 0;
}

.anj-section strong {
    color: #0F172A;
}

/* Resources Links */
.resources-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.resource-link {
    background: #F8FAFC;
    color: #0F172A;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #E2E8F0;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.resource-link:hover {
    background: #14B8A6;
    color: white;
    border-color: #14B8A6;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-note {
    font-size: 1.1rem;
    color: #0F172A;
    font-weight: 500;
}

.contact-email {
    margin-top: 30px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    display: inline-block;
}

.email-label {
    font-weight: 600;
    color: #0F172A;
    margin-right: 10px;
}

.email-address {
    color: #14B8A6;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.email-address:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 25px;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .mission-grid,
    .features-grid,
    .commitment-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-list {
        grid-template-columns: 1fr;
    }
    
    .criteria-item {
        flex-direction: column;
        text-align: center;
    }
    
    .resources-links {
        flex-direction: column;
    }
    
    .resource-link {
        width: 100%;
    }
    
    .anj-section {
        padding: 25px;
    }
    
    .contact-email {
        width: 100%;
    }
    
    .email-address {
        display: block;
        margin-top: 10px;
        word-break: break-all;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mission-grid,
    .features-grid,
    .commitment-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ====================================
   CONTACT PAGE
   ==================================== */
.contact-header {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-header p {
    color: #CBD5E1;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.contact-intro {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-form-container h2 {
    color: #0F172A;
    margin-bottom: 30px;
    font-size: 1.8rem;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 15px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #0F172A;
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-control.error {
    border-color: #DC2626;
}

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

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

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

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

.checkbox-group a {
    color: #14B8A6;
    text-decoration: none;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #16A34A, #059669);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.form-success {
    background: #DCFCE7;
    border: 2px solid #059669;
    color: #065F46;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Info */
.contact-info-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-info-container h2 {
    color: #0F172A;
    margin-bottom: 30px;
    font-size: 1.8rem;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 15px;
}

.info-card {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
}

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

.info-card p {
    color: #475569;
    margin-bottom: 10px;
}

.contact-email-link {
    color: #14B8A6;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
}

.contact-email-link:hover {
    text-decoration: underline;
}

.response-time {
    color: #64748B;
    font-size: 0.9rem;
}

.contact-phone {
    color: #14B8A6;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.phone-hours {
    color: #64748B;
    font-size: 0.9rem;
}

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

.hours-list li {
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.hours-list span {
    font-weight: 600;
    color: #0F172A;
}

.urgent-card {
    background: #FEE2E2;
    border-left: 4px solid #DC2626;
}

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

.urgent-card p {
    color: #7F1D1D;
}

.urgent-phone {
    color: #DC2626 !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.urgent-link {
    color: #991B1B;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

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

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-section h2 {
    color: #0F172A;
    margin-bottom: 30px;
    font-size: 1.8rem;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 15px;
}

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

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

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

.faq-item p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

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

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

/* Location Section */
.location-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.location-section h2 {
    color: #0F172A;
    margin-bottom: 30px;
    font-size: 1.8rem;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 15px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #F8FAFC;
    padding: 30px;
    border-radius: 12px;
}

.location-icon {
    font-size: 3rem;
}

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

.location-details p {
    color: #475569;
    margin-bottom: 5px;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .contact-intro {
        padding: 25px;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container,
    .contact-info-container,
    .faq-section,
    .location-section {
        padding: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .location-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .checkbox-group {
        align-items: flex-start;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-top: 3px;
    }
    
    .urgent-phone,
    .contact-phone {
        font-size: 1.3rem;
        word-break: break-all;
    }
    
    .contact-email-link {
        font-size: 1.1rem;
        word-break: break-all;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-grid {
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ====================================
   COOKIES POLICY PAGE
   ==================================== */
.cookies-header {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.cookies-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cookies-header p {
    color: #CBD5E1;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.cookies-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.cookies-section h2 {
    color: #0F172A;
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 15px;
}

.cookies-section h2 span {
    font-size: 2rem;
}

.cookies-section h3 {
    color: #0F172A;
    margin: 20px 0 15px;
    font-size: 1.3rem;
}

.cookies-section h4 {
    color: #0F172A;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.cookies-section ul, .cookies-section ol {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.cookies-section li {
    margin-bottom: 10px;
}

.cookies-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #0F172A !important;
    font-weight: 500;
}

.highlight-section {
    background: linear-gradient(135deg, #F8FAFC, #FFFFFF);
    border: 1px solid #E2E8F0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

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

.feature-item h3 {
    color: #0F172A;
    margin-bottom: 10px;
}

.feature-item p {
    color: #475569;
    margin-bottom: 0;
}

/* Tech List */
.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 15px;
    background: #F8FAFC;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #14B8A6;
}

.tech-list li:last-child {
    margin-bottom: 0;
}

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

/* Cookie Type Grid */
.cookie-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.cookie-type-card {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s;
}

.cookie-type-card:hover {
    transform: translateY(-3px);
    border-color: #14B8A6;
}

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

.cookie-type-card p {
    color: #475569;
    margin-bottom: 10px;
}

.cookie-type-card .cookie-duration {
    color: #64748B;
    font-size: 0.9rem;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #E2E8F0;
}

/* Confidential Section */
.confidential-section {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
}

.confidential-section h2 {
    color: white;
    border-bottom-color: #334155;
}

.confidential-section h2 span {
    color: #14B8A6;
}

.confidential-section p {
    color: #CBD5E1;
}

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

.confidential-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #334155;
}

.confidential-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.confidential-item h3 {
    color: white;
    margin-bottom: 10px;
}

.confidential-item p {
    color: #94A3B8;
    margin-bottom: 0;
}

/* Control Options */
.control-options {
    margin-top: 30px;
}

.control-method {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.control-method:last-child {
    margin-bottom: 0;
}

.control-method h4 {
    color: #0F172A;
    margin-bottom: 10px;
}

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

.browser-list li {
    padding: 10px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #E2E8F0;
}

.browser-list li:last-child {
    margin-bottom: 0;
}

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

.note-box {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

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

/* Third Party Grid */
.third-party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.third-party-item {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.third-party-item h4 {
    color: #0F172A;
    margin-bottom: 10px;
}

.third-party-item p {
    color: #475569;
    margin-bottom: 10px;
}

.third-party-link {
    color: #14B8A6;
    font-size: 0.9rem;
    margin-top: 10px;
}

.third-party-link a {
    color: #14B8A6;
    text-decoration: none;
}

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

/* Consent Box */
.consent-box {
    background: #DCFCE7;
    border-left: 4px solid #059669;
}

.consent-box h2 {
    color: #065F46;
    border-bottom-color: #A7F3D0;
}

.consent-box p {
    color: #065F46;
}

/* Contact Cookies */
.contact-cookies {
    background: #EFF6FF;
}

.contact-cookies h2 {
    color: #1E40AF;
    border-bottom-color: #BFDBFE;
}

.contact-cookies p {
    color: #1E3A8A;
}

.contact-cookies-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-cookies-info a {
    color: #14B8A6;
    text-decoration: none;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookies-header h1 {
        font-size: 2rem;
    }
    
    .cookies-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .cookies-section {
        padding: 25px;
    }
    
    .cookies-section h2 {
        font-size: 1.5rem;
    }
    
    .cookies-intro {
        font-size: 1.1rem;
    }
    
    .feature-grid,
    .cookie-type-grid,
    .confidential-grid,
    .third-party-grid {
        grid-template-columns: 1fr;
    }
    
    .browser-list li {
        font-size: 0.9rem;
        word-break: break-word;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .feature-grid,
    .cookie-type-grid,
    .confidential-grid,
    .third-party-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ====================================
   AFFILIATE DISCLOSURE PAGE
   ==================================== */
.disclosure-header {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.disclosure-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.disclosure-header p {
    color: #CBD5E1;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.disclosure-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.disclosure-section h2 {
    color: #0F172A;
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 15px;
}

.disclosure-section h2 span {
    background: #14B8A6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.disclosure-section h3 {
    color: #0F172A;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.disclosure-section h4 {
    color: #0F172A;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.disclosure-section ul {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.disclosure-section li {
    margin-bottom: 8px;
}

/* Highlight Note */
.highlight-note {
    background: #DCFCE7;
    border-left: 4px solid #059669;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.highlight-note p {
    color: #065F46;
    margin: 0;
    font-size: 1.1rem;
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.criteria-item {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.criteria-percent {
    background: white;
    color: #0F172A;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.criteria-content {
    flex: 1;
}

.criteria-content h4 {
    margin-bottom: 5px;
}

.criteria-content p {
    margin-bottom: 0;
    color: #64748B;
}

/* Integrity Box */
.integrity-box {
    background: #EFF6FF;
    border-left: 4px solid #2563EB;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.integrity-box p {
    color: #1E40AF;
    margin: 0;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.compliance-card {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.compliance-card h3 {
    color: #0F172A;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.compliance-card p {
    color: #475569;
    margin-bottom: 15px;
}

.age-badge {
    background: #DC2626;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    font-size: 0.9rem;
}

.help-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.help-link {
    color: #14B8A6;
    text-decoration: none;
    font-weight: 500;
}

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

/* Partner Badge */
.partner-badge {
    background: #0F172A;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.partner-badge p {
    color: white;
    margin: 0;
}

/* Update Box */
.update-box {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.update-box p {
    color: #92400E;
    margin-bottom: 10px;
}

.update-box p:last-child {
    margin-bottom: 0;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
}

.summary-section h2 {
    color: white;
    border-bottom-color: #334155;
}

.summary-section h2 span {
    background: #14B8A6;
}

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

.summary-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #334155;
}

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

.summary-item h3 {
    color: white;
    margin-bottom: 10px;
}

.summary-item p {
    color: #94A3B8;
    margin-bottom: 0;
}

/* Contact Section */
.contact-info {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: #14B8A6;
    text-decoration: none;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .disclosure-header h1 {
        font-size: 2rem;
    }
    
    .disclosure-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .disclosure-section {
        padding: 25px;
    }
    
    .disclosure-section h2 {
        font-size: 1.5rem;
    }
    
    .criteria-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .criteria-percent {
        margin-bottom: 10px;
    }
    
    .compliance-grid,
    .criteria-grid,
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .help-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .help-link {
        display: block;
        padding: 10px;
        background: white;
        border-radius: 8px;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .compliance-grid,
    .criteria-grid,
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====================================
   TERMS AND CONDITIONS PAGE
   ==================================== */
.terms-header {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 30px;
}

.terms-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.terms-header p {
    color: #CBD5E1;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.terms-last-updated {
    text-align: center;
    color: #64748B;
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 10px;
    background: #F1F5F9;
    border-radius: 50px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    padding: 8px 25px;
}

.terms-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.terms-section h2 {
    color: #0F172A;
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 15px;
}

.terms-section h2 span {
    background: #14B8A6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.terms-section h4 {
    color: #0F172A;
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

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

.terms-section ul, .terms-section ol {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 10px;
}

.terms-section a {
    color: #14B8A6;
    text-decoration: none;
}

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

/* Terms Cards */
.terms-card {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #14B8A6;
}

.terms-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-card p {
    margin-bottom: 0;
}

/* Note Box */
.terms-note {
    background: #EFF6FF;
    border-left: 4px solid #2563EB;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

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

/* Responsible Highlight */
.responsible-highlight {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
}

.responsible-highlight h2 {
    color: white;
    border-bottom-color: #334155;
}

.responsible-highlight p {
    color: #CBD5E1;
}

.responsible-highlight a {
    color: #14B8A6;
}

.responsible-message {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

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

/* Contact Section */
.terms-contact {
    background: #F8FAFC;
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
}

.terms-contact p {
    margin-bottom: 10px;
}

.terms-contact p:last-child {
    margin-bottom: 0;
}

/* ANJ Section */
.anj-section {
    background: #EFF6FF;
}

.anj-logo-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid #E2E8F0;
}

.anj-logo {
    height: 60px;
    margin-bottom: 20px;
}

.anj-logo-container p {
    color: #1E3A8A;
}

.anj-logo-container a {
    color: #14B8A6;
    font-weight: 600;
}

/* Acceptance */
.terms-acceptance {
    background: #DCFCE7;
    border: 2px solid #059669;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.terms-acceptance p {
    color: #065F46;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .terms-section {
        padding: 25px;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-card {
        padding: 20px;
    }
    
    .anj-logo-container {
        padding: 20px;
    }
    
    .anj-logo {
        height: 40px;
    }
}