/* ========================================
   Poker Avis - CSS Styles
   Color Scheme: Purple (#7c3aed, #5b21b6)
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-purple: #7c3aed;
    --dark-purple: #5b21b6;
    --light-purple: #a78bfa;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-900: #4c1d95;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --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);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    --transition: all 0.3s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #fff;
    overflow-x: hidden;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-purple);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === AGE GATE MODAL === */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(91, 33, 182, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-content h2 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.age-gate-content p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.age-gate-warning {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 1.5rem 0;
}

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

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.age-btn-yes {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
}

.age-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.age-btn-no {
    background: var(--gray-200);
    color: var(--gray-700);
}

.age-btn-no:hover {
    background: var(--gray-300);
}

.age-gate-footer {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* === HEADER & NAVIGATION === */
.header {
    background: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-purple);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.hero-cta {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* === WARNING BANNER === */
.warning-banner {
    background: #fff3cd;
    border-top: 3px solid var(--warning);
    border-bottom: 3px solid var(--warning);
    padding: 1rem 0;
}

.warning-banner p {
    text-align: center;
    color: var(--gray-800);
    margin: 0;
}

/* === SECTION COMMON === */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === OPERATORS SECTION === */
.operators {
    background: var(--gray-50);
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.operator-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.operator-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.operator-card.featured {
    border-color: var(--primary-purple);
    background: linear-gradient(to bottom, var(--purple-100), white);
}

.operator-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.operator-badge.popular {
    background: var(--primary-purple);
}

.operator-logo {
    margin: 1rem 0;
}

.operator-logo-placeholder {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.25rem;
}

.operator-name {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin: 1rem 0;
}

.operator-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-text {
    color: var(--gray-600);
    font-weight: 600;
}

.operator-bonus {
    background: var(--purple-100);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin: 1rem 0;
}

.bonus-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.operator-features {
    list-style: none;
    margin: 1.5rem 0;
}

.operator-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.operator-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.operator-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.operator-terms {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

/* === COMPARISON TABLE === */
.comparison {
    background: white;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.comparison-table tbody tr:hover {
    background: var(--purple-100);
}

.comparison-table tbody tr.highlighted {
    background: var(--purple-100);
}

.table-btn {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.table-btn:hover {
    background: var(--dark-purple);
    color: white;
}

/* === WHY US SECTION === */
.why-us {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-purple);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* === CONTACT SECTION === */
.contact {
    background: white;
}

.contact-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.contact-item a {
    font-size: 1.25rem;
    font-weight: 600;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer a {
    color: white;
    opacity: 0.9;
}

.footer a:hover {
    opacity: 1;
    color: white;
}

.footer-responsible {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.help-contacts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.help-link {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.help-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-regulators {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.regulators-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.regulator-link {
    transition: var(--transition);
}

.regulator-link:hover {
    transform: translateY(-3px);
}

.regulator-logo {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    min-width: 100px;
    text-align: center;
}

.regulator-logo.age-logo {
    background: rgba(255, 59, 48, 0.3);
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    opacity: 0.8;
}

.footer-bottom .disclaimer {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* === PAGE HERO (for About & Jeu Responsable pages) === */
.page-hero {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.page-hero .hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* === ABOUT CONTENT === */
.about-content,
.responsible-content {
    padding: 4rem 0;
}

.content-block {
    margin-bottom: 4rem;
}

.content-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.content-block h2 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-block h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin: 1.5rem 0 1rem;
}

.content-block p {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-block.highlight {
    background: var(--purple-100);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border-left: 5px solid var(--primary-purple);
}

.team-values,
.values-grid,
.methodology-list,
.commitment-box,
.trust-grid,
.tips-grid,
.tools-grid,
.help-organizations {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item,
.value-card,
.trust-item,
.tip-card,
.tool-card,
.org-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.method-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.method-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.commitment-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.commitment-box ul {
    list-style: none;
    margin-top: 1rem;
}

.commitment-box li {
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.help-banner {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    text-align: center;
}

.help-btn {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin: 0.5rem;
    transition: var(--transition);
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trust-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.trust-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.cta-block {
    text-align: center;
    background: var(--purple-100);
    padding: 3rem;
    border-radius: var(--radius-xl);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
}

.cta-btn.secondary {
    background: white;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.disclaimer-box {
    background: #fff3cd;
    border: 2px solid var(--warning);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.disclaimer-box h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.disclaimer-box p {
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

/* === RESPONSIBLE GAMING SPECIFIC STYLES === */
.responsible-hero {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.alert-box {
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
}

.alert-box.warning-box {
    background: #fff3cd;
    border-left: 5px solid var(--warning);
}

.alert-box.danger-box {
    background: #fee2e2;
    border-left: 5px solid var(--danger);
}

.alert-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.alert-content h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.alert-content ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--gray-700);
}

.alert-cta {
    font-weight: 600;
    margin-top: 1rem;
}

.alert-btn {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.alert-btn:hover {
    background: var(--dark-purple);
    color: white;
}

.age-restriction {
    background: linear-gradient(to bottom, #fee2e2, white);
    border-left-color: var(--danger);
}

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

.age-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.parents-box {
    background: #dbeafe;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 5px solid #3b82f6;
    margin-top: 2rem;
}

.tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tip-card {
    position: relative;
    padding-top: 3rem;
}

.tip-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.signs-list {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.sign-category {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.sign-category h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.sign-category ul {
    margin-left: 1.5rem;
    color: var(--gray-700);
}

.sign-category li {
    margin-bottom: 0.5rem;
}

.tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tool-card {
    position: relative;
    padding-top: 2.5rem;
}

.tool-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.tool-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.tools-info {
    background: var(--purple-100);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.help-section {
    background: var(--gray-50);
    padding: 3rem;
    border-radius: var(--radius-xl);
}

.help-organizations {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.org-card {
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.org-card:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-lg);
}

.org-card.primary-org {
    border-color: var(--primary-purple);
    background: linear-gradient(to bottom, var(--purple-100), white);
}

.org-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.org-logo {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.org-header h3 {
    color: var(--primary-purple);
    margin: 0;
}

.org-description {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.org-contacts {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.org-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.org-btn.phone-btn {
    background: var(--primary-purple);
    color: white;
}

.org-btn.web-btn {
    background: var(--gray-200);
    color: var(--gray-800);
}

.org-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-content {
    display: flex;
    flex-direction: column;
}

.btn-content small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.org-hours,
.org-services {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.org-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-badge {
    background: var(--success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.help-cta {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 3rem;
}

.help-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.help-cta p {
    color: white;
    opacity: 0.95;
}

.family-tips {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.family-tip {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.family-resources {
    background: var(--purple-100);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 2rem;
}

.resource-btn {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.resource-btn:hover {
    background: var(--dark-purple);
    color: white;
}

.legal-points {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.legal-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.legal-item h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.final-message {
    text-align: center;
    background: linear-gradient(to bottom, var(--purple-100), white);
}

.final-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.final-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .operators-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table thead {
        display: none;
    }
    
    .comparison-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
    }
    
    .comparison-table td {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .comparison-table td:last-child {
        border-bottom: none;
    }
    
    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-purple);
    }
    
    .features-grid,
    .values-grid,
    .trust-grid,
    .tips-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .org-contacts {
        flex-direction: column;
    }
}