* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* French Poker Theme Colors */
    --poker-dark: #0e0a1a;
    --poker-darker: #1a122b;
    --poker-purple: #6b46c1;
    --poker-pink: #ff5f6d;
    --poker-orange: #ffc371;
    --poker-cyan: #38f9d7;
    --poker-gold: #f7b731;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: radial-gradient(circle at 80% 10%, #1a122b 0%, #0e0a1a 80%);
    --gradient-card: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(255, 95, 109, 0.1) 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--gradient-hero);
    background-attachment: fixed;
    color: #e8e4f3;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Age Banner */
.age-banner {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-xs);
    font-size: 0.85rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
}

/* Header */
header {
    background: rgba(14, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 34px;
    z-index: 999;
    border-bottom: 1px solid rgba(107, 70, 193, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--poker-pink) 0%, var(--poker-orange) 50%, var(--poker-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-accent {
    font-weight: 800;
}

nav {
    display: flex;
    gap: var(--spacing-md);
}

nav a {
    color: #e8e4f3;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

nav a:hover {
    color: white;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, white 0%, #e8e4f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.subheading {
    font-size: 1.2rem;
    color: #b8b0d0;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Elements */
.trust-elements {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin: var(--spacing-lg) 0;
}

.trust-item {
    background: rgba(107, 70, 193, 0.1);
    border: 1px solid rgba(107, 70, 193, 0.3);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(107, 70, 193, 0.2);
    border-color: rgba(107, 70, 193, 0.5);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.2rem;
}

/* Disclaimer Box */
.disclaimer-box {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: var(--spacing-sm);
    font-size: 0.9rem;
    color: #fca5a5;
    margin-top: var(--spacing-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Poker Rooms Section */
.poker-rooms {
    padding: var(--spacing-xl) 0;
    background: rgba(0, 0, 0, 0.2);
}

.poker-rooms h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--poker-pink) 0%, var(--poker-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    color: #b8b0d0;
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

/* Poker Grid */
.poker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* Poker Card */
.poker-card {
    background: rgba(26, 18, 43, 0.6);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 16px;
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.poker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poker-card:hover {
    transform: translateY(-5px);
    border-color: rgba(107, 70, 193, 0.6);
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
}

.poker-card:hover::before {
    opacity: 1;
}

.poker-rank {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 95, 109, 0.4);
}

.poker-logo {
    width: 100%;
    height: 150px;
    margin-bottom: var(--spacing-sm);
    border-radius: 12px;
    overflow: hidden;
}

.poker-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.poker-card:hover .poker-logo img {
    transform: scale(1.05);
}

.poker-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

/* Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.stars {
    color: var(--poker-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.score {
    background: rgba(247, 183, 49, 0.2);
    color: var(--poker-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Bonus Highlight */
.bonus-highlight {
    background: var(--gradient-card);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 12px;
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.bonus-label {
    display: block;
    font-size: 0.85rem;
    color: #b8b0d0;
    margin-bottom: 0.25rem;
}

.bonus-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features List */
.features {
    list-style: none;
    margin-bottom: var(--spacing-sm);
}

.features li {
    padding: 0.5rem 0;
    color: #b8b0d0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(107, 70, 193, 0.1);
}

.features li:last-child {
    border-bottom: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 95, 109, 0.4);
    width: 100%;
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(255, 95, 109, 0.6);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.terms {
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* How to Choose Section */
.how-to-choose {
    padding: var(--spacing-xl) 0;
    background: rgba(26, 18, 43, 0.3);
}

.how-to-choose h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.step {
    background: rgba(26, 18, 43, 0.6);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(107, 70, 193, 0.6);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 4px 15px rgba(255, 95, 109, 0.4);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.step p {
    color: #b8b0d0;
    font-size: 0.95rem;
}

.section-disclaimer {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: var(--spacing-md);
}

/* Info Section */
.info-section {
    padding: var(--spacing-xl) 0;
}

.content-block {
    margin-bottom: var(--spacing-lg);
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.content-block p {
    color: #b8b0d0;
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.benefits-list li {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    background: rgba(26, 18, 43, 0.4);
    border-left: 4px solid var(--poker-pink);
    border-radius: 8px;
    color: #b8b0d0;
}

.benefits-list li strong {
    color: white;
}

/* Poker Types */
.poker-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.type-card {
    background: rgba(26, 18, 43, 0.6);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(107, 70, 193, 0.6);
}

.type-card h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.type-card p {
    color: #b8b0d0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: rgba(26, 18, 43, 0.4);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: var(--spacing-lg) auto;
}

.check-item {
    background: rgba(26, 18, 43, 0.6);
    border: 1px solid rgba(107, 70, 193, 0.3);
    padding: var(--spacing-sm);
    border-radius: 8px;
    color: #e8e4f3;
    font-size: 1.05rem;
}

.cta-subtext {
    margin-top: var(--spacing-md);
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ANJ Disclaimer Section */
.anj-disclaimer {
    padding: var(--spacing-xl) 0;
    background: rgba(220, 38, 38, 0.05);
    border-top: 2px solid rgba(220, 38, 38, 0.3);
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
}

.anj-disclaimer h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: white;
    text-align: center;
}

.anj-disclaimer p {
    color: #e8e4f3;
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
    line-height: 1.8;
}

.responsible-gaming-info {
    background: rgba(26, 18, 43, 0.6);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.responsible-gaming-info h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.responsible-gaming-info p {
    margin-bottom: 0.5rem;
}

.responsible-gaming-info a {
    color: var(--poker-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.responsible-gaming-info a:hover {
    color: var(--poker-orange);
}

/* Footer */
footer {
    background: rgba(14, 10, 26, 0.95);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(107, 70, 193, 0.3);
}

.footer-logos {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.footer-logos h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.logos-grid a {
    opacity: 0.7;
    transition: all 0.3s ease;
    display: block;
}

.logos-grid a:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logos-grid img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
}

.age-logo {
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(107, 70, 193, 0.2);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.footer-section p,
.footer-section li {
    color: #b8b0d0;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: #b8b0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--poker-pink);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(107, 70, 193, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .subheading {
        font-size: 1rem;
    }

    .poker-grid {
        grid-template-columns: 1fr;
    }

    .trust-elements {
        gap: var(--spacing-sm);
    }

    .trust-item {
        font-size: 0.85rem;
        padding: 0.5rem var(--spacing-sm);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        gap: var(--spacing-sm);
    }

    .logos-grid img {
        width: 80px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .poker-card {
        padding: var(--spacing-sm);
    }

    .bonus-amount {
        font-size: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: var(--spacing-xl) 0;
    min-height: 70vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #b8b0d0;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 18, 43, 0.4);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 16px;
    padding: var(--spacing-lg);
}

.legal-content h2 {
    font-size: 1.8rem;
    color: white;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid rgba(107, 70, 193, 0.3);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #e8e4f3;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.legal-content p {
    color: #b8b0d0;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.legal-content ul {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
}

.legal-content li {
    color: #b8b0d0;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--poker-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--poker-orange);
    text-decoration: underline;
}

.legal-content strong {
    color: white;
}

/* Responsible Gaming Page Specific Styles */
.warning-box {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.4);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.warning-box h2 {
    color: #fca5a5;
    border: none;
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 1.5rem;
}

.warning-box p {
    color: #fca5a5;
    font-size: 1.05rem;
}

.help-number {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: var(--spacing-sm);
}

.help-number a {
    color: white;
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.help-number a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 95, 109, 0.4);
}

.warning-signs {
    background: rgba(220, 38, 38, 0.05);
    border-left: 4px solid rgba(220, 38, 38, 0.5);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin: var(--spacing-md) 0;
}

.warning-signs h3 {
    color: #fca5a5;
}

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

.help-card {
    background: rgba(107, 70, 193, 0.1);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    border-color: rgba(107, 70, 193, 0.6);
}

.help-card h3 {
    color: white;
    margin-top: 0;
    font-size: 1.2rem;
}

.help-card p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.help-card strong {
    color: #e8e4f3;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.tip-card {
    background: rgba(26, 18, 43, 0.6);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 8px;
    padding: var(--spacing-sm);
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: rgba(107, 70, 193, 0.6);
}

.tip-card h3 {
    color: white;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

.tip-card p {
    font-size: 0.9rem;
    margin: 0;
}

.final-warning {
    background: var(--gradient-card);
    border: 2px solid rgba(107, 70, 193, 0.4);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
    text-align: center;
}

.final-warning h2 {
    color: white;
    border: none;
    margin: 0 0 var(--spacing-sm) 0;
}

.final-warning p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.help-cta {
    font-size: 1.3rem;
    font-weight: 700;
}

.help-cta a {
    color: white;
    background: var(--gradient-primary);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: var(--spacing-sm);
}

.help-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 95, 109, 0.6);
}

/* Responsive for legal pages */
@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: var(--spacing-md);
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .help-resources {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .legal-page h1 {
        font-size: 1.75rem;
    }

    .legal-content {
        padding: var(--spacing-sm);
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}

.text-logo {
    color: #b8b0d0;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(107, 70, 193, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.text-logo:hover {
    background: rgba(107, 70, 193, 0.2);
    color: white;
    border-color: rgba(107, 70, 193, 0.6);
}
