/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary-color: #059669;
    --accent-color: #d97706;
    --warning-color: #dc2626;
    --info-color: #0284c7;
    --success-color: #16a34a;
    --dark-bg: #1f2937;
    --darker-bg: #111827;
    --light-bg: #ffffff;
    --gray-bg: #f9fafb;
    --gray-light: #f3f4f6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Banner */
.age-verification {
    background: var(--warning-color);
    color: var(--text-white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.verification-content {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
    justify-content: center;
}

.warning-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.verification-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.verification-text a {
    color: var(--text-white);
    text-decoration: underline;
}

.verification-text a:hover {
    text-decoration: none;
}

/* Header */
.header {
    background: var(--light-bg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 72px;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-icon {
    font-size: 32px;
    color: var(--primary-color);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--accent-color);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-info {
    background: var(--info-color);
    color: var(--text-white);
}

.btn-info:hover {
    background: #0369a1;
}

.btn-arrow,
.btn-icon {
    font-size: 14px;
}

.legal-notice {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    text-align: left;
}

.legal-notice p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* ANJ Information Section */
.anj-info {
    padding: 80px 0;
    background: var(--gray-bg);
}

.anj-header {
    text-align: center;
    margin-bottom: 60px;
}

.anj-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.anj-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.anj-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.disclaimer {
    background: #fef3c7;
    color: #92400e;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 16px;
}

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

.site-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.site-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    color: var(--success-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.license-icon {
    font-size: 14px;
}

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

.site-logo img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.site-info {
    flex: 1;
}

.site-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.license-number {
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--gray-light);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
}

.site-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-section h4,
.responsible-gaming h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.info-list,
.protection-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-list li,
.protection-list li {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.info-list li::before {
    content: "ℹ️";
    position: absolute;
    left: 0;
    font-size: 12px;
}

.protection-list li::before {
    content: "🛡️";
    position: absolute;
    left: 0;
    font-size: 12px;
}

.site-actions {
    margin-top: 20px;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    padding: 80px 0;
    background: var(--gray-bg);
}

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

.responsible-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.responsible-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.responsible-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.responsible-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.responsible-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 16px;
    line-height: 1.5;
}

.responsible-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Educational Section */
.educational-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.educational-card {
    background: var(--gray-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.educational-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.educational-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.educational-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-brand p {
    color: var(--text-light);
    margin-top: 16px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-legal {
    text-align: center;
    margin-bottom: 20px;
}

.footer-legal p {
    color: var(--text-light);
    font-size: 14px;
}

.footer-warning {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    margin-bottom: 16px;
}

.footer-warning p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
}

.footer-warning a {
    color: var(--text-white);
    text-decoration: underline;
}

.footer-disclaimer {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.footer-disclaimer p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.5;
    font-style: italic;
}

/* Additional styles for responsible gaming pages */
.contact-highlight {
    background: var(--gray-bg);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.contact-highlight p {
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-highlight strong {
    color: var(--primary-color);
}

.emergency-contact {
    background: #fef2f2;
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.emergency-contact h2 {
    color: #dc2626;
    margin-bottom: 20px;
}

.emergency-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.emergency-box p {
    margin-bottom: 8px;
    font-weight: 500;
}

.emergency-box strong {
    color: #dc2626;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}

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

.contact-item {
    background: var(--gray-bg);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 18px;
}

.contact-item p {
    margin-bottom: 8px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.social-links {
    background: var(--gray-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.social-links p {
    margin-bottom: 8px;
    font-weight: 500;
}

/* FAQ Styles */
.faq-item {
    background: var(--gray-bg);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Poker Hands Styles */
.poker-hands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.hand-rank {
    background: var(--gray-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.hand-rank h4 {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.hand-rank p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.hand-rank p:last-child {
    margin-bottom: 0;
    font-family: monospace;
    font-weight: 600;
    color: var(--text-primary);
}

/* Legal Content Styles */
.legal-content {
    padding: 40px 0 80px;
    background: var(--light-bg);
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
    text-align: center;
}

.legal-section {
    margin-bottom: 40px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 16px 0;
    color: var(--text-primary);
}

.legal-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 12px 0;
    color: var(--text-primary);
}

.legal-section p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.legal-section ul li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

.operator-card {
    background: var(--gray-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--success-color);
}

.operator-card h3 {
    color: var(--success-color);
    margin-bottom: 12px;
}

.warning-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.warning-box h4 {
    color: #92400e;
    margin-bottom: 12px;
}

.warning-box p,
.warning-box ul li {
    color: #92400e;
}

.back-link {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Comparison Page Styles */
.site-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.comparison-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.comparison-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.rank-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.comparison-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0 16px 0;
    color: var(--text-primary);
}

.license-info {
    background: var(--gray-bg);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.license-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.evaluation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.eval-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.eval-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.rating {
    font-size: 16px;
}

.features-list h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.features-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.features-list ul li {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.features-list ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.comparison-table {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--gray-bg);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

.selection-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.guide-item {
    background: var(--gray-bg);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.guide-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.guide-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsible Gaming Page Styles */
.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.warning-category {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 24px;
}

.warning-category h3 {
    color: #dc2626;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.warning-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.warning-category ul li {
    font-size: 14px;
    color: #7f1d1d;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.warning-category ul li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 12px;
}

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

.tool-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.tool-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.tool-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.tool-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tool-card ul {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.tool-card ul li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
}

.tool-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

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

.advice-card {
    background: var(--gray-bg);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--info-color);
}

.advice-card h3 {
    color: var(--info-color);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.advice-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.advice-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.advice-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

.help-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
}

.help-card.urgent {
    border-color: var(--warning-color);
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.help-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.help-card.urgent h3 {
    color: var(--warning-color);
}

.help-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.help-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.help-section {
    background: var(--gray-bg);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--secondary-color);
}

.help-section h3 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.help-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-section ul li {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.help-section ul li::before {
    content: "👥";
    position: absolute;
    left: 0;
    font-size: 12px;
}

/* Help Page Styles */
.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.category-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.category-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.category-card ul {
    list-style: none;
    text-align: left;
}

.category-card ul li {
    margin-bottom: 8px;
}

.category-card ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.category-card ul li a:hover {
    text-decoration: underline;
}

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

.emergency-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
}

.emergency-card.priority {
    border-color: var(--warning-color);
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.emergency-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.emergency-card.priority h3 {
    color: var(--warning-color);
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-details strong {
    color: var(--text-primary);
}

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

.structure-card {
    background: var(--gray-bg);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--info-color);
}

.structure-card h3 {
    color: var(--info-color);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.structure-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

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

.group-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
}

.group-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.group-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

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

.support-section {
    background: var(--gray-bg);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--secondary-color);
}

.support-section h3 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.support-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-section ul li {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.support-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.help-category {
    background: var(--gray-bg);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--accent-color);
}

.help-category h3 {
    color: var(--accent-color);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.help-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-category ul li {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.help-category ul li::before {
    content: "💰";
    position: absolute;
    left: 0;
    font-size: 12px;
}

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

.resource-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
}

.resource-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.resource-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resource-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.resource-card ul li::before {
    content: "🌐";
    position: absolute;
    left: 0;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .verification-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .verification-text {
        font-size: 12px;
    }
    
    .header .container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }
    
    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
    }
    
    .site-header {
        flex-direction: column;
        text-align: center;
    }
    
    .anj-features {
        grid-template-columns: 1fr;
    }
    
    .responsible-grid {
        grid-template-columns: 1fr;
    }
    
    .educational-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .anj-header h2 {
        font-size: 24px;
    }
    
    .site-card {
        padding: 20px;
    }
    
    .verification-text {
        font-size: 11px;
    }
    
    .age-verification {
        padding: 12px 0;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
}