/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #a0aec0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #d400c6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d400c6;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d400c6 0%, #4fd1c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a0aec0;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
}

.age-badge {
    background: #e53e3e;
    border-color: #e57b3e;
    color: white;
    font-weight: 700;
}

/* Warning Section */
.warning-section {
    padding: 2rem 0;
}

.warning-box {
    background: linear-gradient(135deg, #e57b3e 0%, #c53030 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.3);
}

.warning-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.warning-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.warning-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.warning-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.warning-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.warning-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Casino Cards Section */
.casinos-section {
    padding: 4rem 0;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.casino-card {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(15, 20, 25, 0.9) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d400c6 0%, #4fd1c7 100%);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.4);
}

/* Prevent text selection on clickable cards */
.casino-card * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.casino-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

/* Logo should not be clickable separately */
.casino-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    pointer-events: none;
}

.casino-rating {
    text-align: right;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d400c6;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.bonus-info {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.bonus-label {
    font-size: 0.9rem;
    color: #d400c6;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.age-warning {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #e53e3e;
    text-align: center;
    font-weight: 500;
}

.casino-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.casino-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #a0aec0;
}

.casino-features li::before {
    content: '✓';
    color: #d400c6;
    font-weight: bold;
}

.min-deposit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.min-deposit::before {
    content: '💳';
}

.license-info {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 1rem;
}

.license-link {
    color: #d400c6;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.license-link:hover {
    color: #4fd1c7;
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: #333;
}

.visit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d400c6 0%, #4fd1c7 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 170, 0.3);
    background: linear-gradient(135deg, #00b894 0%, #4fd1c7 100%);
}

/* Active state for card clicks */
.casino-card:active {
    transform: translateY(-2px);
}

.terms-text {
    font-size: 0.75rem;
    color: #718096;
    text-align: center;
    margin-top: 1rem;
}

.discover-more {
    text-align: center;
}

.discover-btn {
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid rgba(0, 212, 170, 0.3);
    color: #d400c6;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background: rgba(0, 212, 170, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav {
        display: none;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

/* How to Use Section */
.how-to-use-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.criteria-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.criteria-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Importance Section */
.importance-section {
    padding: 60px 0;
    background: #0f0f0f;
}

/* UK Regulation Section */
.regulation-section {
    padding: 60px 0;
    background: #1a1a1a;
}

/* Game Types Section */
.game-types-section {
    padding: 60px 0;
    background: #0f0f0f;
}

.game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-type-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.game-type-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
}

.game-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.game-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.game-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Best Casino Section */
.best-casino-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.checklist {
    margin: 40px 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
}

.check-icon {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
}

.final-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

/* Enhanced Safer Gambling Section */
.safer-gambling-section {
    padding: 80px 0;
    background: #0f0f0f;
    border-top: 2px solid var(--accent-color);
}

.safer-gambling-title {
    color: var(--accent-color);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.safer-gambling-content {
    margin-bottom: 50px;
}

.safer-gambling-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.organizations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.help-section {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    border: 2px solid #ff4444;
    margin-top: 40px;
}

.help-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.help-icon {
    font-size: 32px;
}

.help-title {
    color: #ff4444;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.help-contacts {
    margin-bottom: 30px;
}

.help-contact {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 8px;
}

.contact-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info {
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
}

.contact-info strong {
    color: #fff;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fff;
    text-decoration: underline;
}

.learn-more-btn {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #00b894;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    margin-bottom: 30px;
}

.copyright {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.footer-text {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.footer-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #ff4444;
    flex-wrap: wrap;
    text-align: center;
}

.warning-triangle {
    font-size: 20px;
    color: #ff4444;
}

.footer-warning-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.age-verification-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.age-verification-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .organizations-logos {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .org-logo-card {
        min-width: 200px;
        max-width: 280px;
    }
    
    .help-section {
        padding: 25px;
    }
    
    .help-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .help-contact {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-warning {
        flex-direction: column;
        gap: 10px;
    }
    
    .safer-gambling-title {
        font-size: 28px;
    }
    
    .criteria-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .checklist-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* CSS Variables */
:root {
    --accent-color: #d400c6;
    --warning-color: #ff4444;
    --background-dark: #0f0f0f;
    --background-light: #1a1a1a;
    --card-background: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
}

/* Organization Logo Cards */
.org-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.org-link:hover {
    text-decoration: none;
}

.org-logo-card {
    background: #4a4a4a;
    border: 2px solid #d400c6;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.org-logo-card.wide {
    min-width: 180px;
}

.org-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.2);
    border-color: #4fd1c7;
}

.org-icon {
    background: #d400c6;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    margin: 0 auto 8px auto;
}

.org-icon.circle {
    background: none;
    border: 2px solid #d400c6;
    color: #d400c6;
    font-size: 16px;
    font-weight: bold;
}

.org-name {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.org-name.large {
    font-size: 18px;
    margin-bottom: 8px;
}

.org-name.accent {
    color: #d400c6;
    margin-bottom: 8px;
}

.org-desc {
    color: #ccc;
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
}

/* Page-specific styles for About, Contact, Privacy, Terms, Cookies pages */

/* Last Updated Date */
.last-updated {
    color: #a0aec0;
    font-size: 14px;
    margin-top: 10px;
    font-style: italic;
}

/* Content Section Styles */
.content-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.content-card {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.content-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.card-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 60px 0;
    background: #0f0f0f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.value-title {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.value-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form-container,
.contact-info-container {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #333;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    accent-color: var(--accent-color);
}

.form-link {
    color: var(--accent-color);
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #4fd1c7 100%);
    border: none;
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00b894 0%, #4fd1c7 100%);
    transform: translateY(-2px);
}

/* Contact Info Cards */
.contact-info-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--accent-color);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.info-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.info-text {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.info-description {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #0f0f0f;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
}

.faq-question {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.faq-answer {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Legal Document Styles */
.legal-content {
    padding: 60px 0;
    background: #1a1a1a;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-title {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.legal-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 15px 0;
}

.legal-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.legal-list {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0;
    padding-left: 20px;
}

.legal-list li {
    margin-bottom: 8px;
}

.legal-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Cookie Types */
.cookie-type {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid #333;
}

/* Cookie Settings Section */
.cookie-settings-section {
    padding: 60px 0;
    background: #0f0f0f;
}

.cookie-controls {
    margin: 40px 0;
}

.cookie-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.control-info {
    flex: 1;
}

.control-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.control-description {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.control-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-label {
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cookie-btn {
    background: #2a2a2a;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--accent-color);
    color: #000;
}

.cookie-btn.accept-all {
    background: var(--accent-color);
    color: #000;
}

.cookie-btn.accept-all:hover {
    background: #00b894;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legal-document {
        padding: 0 10px;
    }
    
    .cookie-control {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 300px;
    }
} 

        /* ==================== */
        /* AGE VERIFICATION POPUP */
        /* ==================== */
        .age-gate-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .age-gate-container {
            background: linear-gradient(135deg, #e53e3e, #e57b3e);
            padding: 40px;
            border-radius: 15px;
            max-width: 600px;
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .age-gate-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .age-gate-text {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .age-gate-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .age-gate-btn {
            padding: 12px 35px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 200px;
        }

        #confirm-age-gate {
            background-color: white;
            color: #e53e3e;
        }

        #confirm-age-gate:hover {
            background-color: #f0f0f0;
            transform: scale(1.05);
        }

        #deny-age-gate {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        #deny-age-gate:hover {
            background-color: rgba(255,255,255,0.1);
            transform: scale(1.05);
        }

        .age-gate-warning {
            margin-top: 30px;
            font-size: 0.9rem;
            font-weight: bold;
            opacity: 0.9;
        }

        /* ==================== */
        /* COOKIE CONSENT POPUP */
        /* ==================== */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #e53e3e, #e57b3e);
            color: white;
            padding: 1.5rem;
            display: none;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            z-index: 9998;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
            flex-wrap: wrap;
        }

        .cookie-consent-text {
            flex: 1;
            min-width: 250px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .cookie-consent-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cookie-consent-btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .cookie-accept-btn {
            background-color: white;
            color: #e53e3e;
        }

        .cookie-accept-btn:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }

        .cookie-settings-btn {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .cookie-settings-btn:hover {
            background-color: rgba(255,255,255,0.1);
        }

        .cookie-reject-btn {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .cookie-reject-btn:hover {
            background-color: rgba(255,255,255,0.1);
        }

        @media (max-width: 768px) {
            .age-gate-container {
                padding: 20px;
            }
            
            .age-gate-title {
                font-size: 1.8rem;
            }
            
            .age-gate-buttons {
                flex-direction: column;
            }
            
            .age-gate-btn {
                width: 100%;
            }
            
            .cookie-consent-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-consent-buttons {
                width: 100%;
                justify-content: center;
            }
        }