/* 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: #00d4aa;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00d4aa;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4aa 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: #e53e3e;
    color: white;
    font-weight: 700;
}

.age-badge-prominent {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border: 2px solid #e53e3e;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4); }
    50% { box-shadow: 0 6px 20px rgba(229, 62, 62, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4); }
}

/* Warning Section */
.warning-section {
    padding: 2rem 0;
}

.warning-box {
    background: linear-gradient(135deg, #e53e3e 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;
}

.age-badge-card {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa 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: 60px;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    pointer-events: none;
    display: block;
}

.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: #00d4aa;
}

.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: #00d4aa;
    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: #ff6b6b;
    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: #00d4aa;
    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 {
    margin: 15px 0;
    padding: 12px;
    background-color: rgba(0, 212, 170, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.license-main {
    text-align: center;
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 212, 170, 0.3);
}

.license-details {
    color: #a0aec0;
    line-height: 1.4;
    text-align: left;
    font-size: 0.8rem;
}

.license-link {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    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, #00d4aa 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: #00d4aa;
    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: #00d4aa;
    --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 #00d4aa;
    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: #00d4aa;
    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 #00d4aa;
    color: #00d4aa;
    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: #00d4aa;
    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 Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.age-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
    backdrop-filter: blur(10px);
}

.age-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(15, 20, 25, 0.98) 100%);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
                0 0 100px rgba(0, 212, 170, 0.1);
    animation: modalSlideIn 0.5s ease;
    text-align: center;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.age-modal-header {
    margin-bottom: 2rem;
}

.age-modal-brand {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.brand-accent {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-modal-title {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    line-height: 1.3;
}

.age-modal-body {
    color: #e2e8f0;
}

.age-modal-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #cbd5e0;
}

.age-modal-consent {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #a0aec0;
}

.age-modal-link {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.age-modal-link:hover {
    color: #4fd1c7;
    text-decoration: underline;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-direction: column;
}

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    outline: none;
    position: relative;
    overflow: hidden;
}

.age-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.age-btn:hover::before {
    left: 100%;
}

.age-btn-confirm {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
}

.age-btn-confirm:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
}

.age-btn-reject {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.age-btn-reject:hover {
    background: linear-gradient(135deg, #c53030 0%, #9c2c2c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
}

.age-modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.age-modal-warning {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #718096;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .age-modal-content {
        padding: 2rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .age-modal-brand {
        font-size: 1.8rem;
    }
    
    .age-modal-title {
        font-size: 1.5rem;
    }
    
    .age-modal-buttons {
        gap: 0.75rem;
    }
    
    .age-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .age-modal-content {
        padding: 1.5rem;
    }
    
    .age-modal-brand {
        font-size: 1.6rem;
    }
    
    .age-modal-title {
        font-size: 1.3rem;
    }
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
} 