/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    overflow-x: hidden;
}

/* CSS Custom Properties */
:root {
    --primary-gradient: linear-gradient(135deg, #ff6b9d 0%, #c44d90 100%);
    --secondary-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-emoji {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-badge span {
    background: rgba(255, 107, 157, 0.1);
    color: #c44d90;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    border: 1px solid var(--border-color);
}

.chat-bubble {
    margin-bottom: 1.5rem;
}

.chat-bubble:last-child {
    margin-bottom: 0;
}

.bubble-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.bubble-name {
    font-weight: 600;
    color: var(--text-primary);
}

.bubble-status {
    font-size: 0.75rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bubble-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.bubble-content {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-bubble.bot .bubble-content {
    background: linear-gradient(135deg, #ff6b9d, #c44d90);
    color: white;
    margin-left: 0;
    margin-right: 2rem;
}

.chat-bubble.user .bubble-content {
    background: #f7fafc;
    color: var(--text-primary);
    margin-left: 2rem;
    margin-right: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,157,0.3) 0%, rgba(255,107,157,0) 70%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168,237,234,0.4) 0%, rgba(168,237,234,0) 70%);
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(196,77,144,0.3) 0%, rgba(196,77,144,0) 70%);
    top: 60%;
    right: 60%;
    animation-delay: 4s;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.solution-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.preview-icon {
    font-size: 1.5rem;
}

/* Differentiators Section */
.differentiators {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.diff-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.diff-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.diff-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.diff-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.diff-card ul {
    list-style: none;
    padding: 0;
}

.diff-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.diff-card li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
}

/* Feature Highlights Section */
.feature-highlights {
    padding: 6rem 0;
    background: white;
}

.features-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    border: 1px solid var(--border-color);
}

.feature-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.feature-slide.active {
    display: grid;
}

.feature-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-content li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-content li::before {
    content: '💕';
    position: absolute;
    left: 0;
    top: 0;
}

.chat-example, .moderation-example, .achievement-example {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.chat-message.bot {
    background: linear-gradient(135deg, #ff6b9d, #c44d90);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    line-height: 1.5;
}

.mod-action {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fef2f2, #fef7f7);
    border-radius: 12px;
    border-left: 4px solid #f56565;
}

.mod-icon {
    font-size: 1.25rem;
}

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef7e6, #fffbf0);
    border-radius: 15px;
    border: 2px solid #f6ad55;
}

.achievement-badge.gold {
    background: linear-gradient(135deg, #fef7e6, #fffbf0);
    border-color: #f6c90e;
}

.badge-icon {
    font-size: 2rem;
}

.badge-content strong {
    color: #b45309;
    display: block;
    margin-bottom: 0.25rem;
}

.badge-content p {
    color: #92400e;
    margin: 0;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn.active {
    background: var(--primary-gradient);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #667eea;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.8;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.orb-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.orb-5 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #a0aec0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ff6b9d;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .solution-content,
    .feature-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .diff-card,
    .problem-card {
        padding: 1.5rem;
    }
}

/* Features Page Styles */
.features-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    text-align: center;
}

.features-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.features-hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.feature-nav {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.feature-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-nav-item:hover {
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1.5rem;
}

.nav-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.feature-section {
    padding: 4rem 0;
}

.feature-section.bg-light {
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
}

.feature-header {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-header .feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.feature-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-example {
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.example-chat .chat-message.bot {
    background: linear-gradient(135deg, #ff6b9d, #c44d90);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-list ul {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
}

.example-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-item {
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 3px solid #ff6b9d;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    background: rgba(255, 107, 157, 0.1);
    color: #c44d90;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

/* Moderation Styles */
.moderation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.moderation-category h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.command-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.command-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.command-item code {
    background: linear-gradient(135deg, #ff6b9d, #c44d90);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.command-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.protection-features {
    display: grid;
    gap: 1.5rem;
}

.protection-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.protection-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.protection-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.protection-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.moderation-showcase {
    margin-top: 3rem;
    text-align: center;
}

.moderation-showcase h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.showcase-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.showcase-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mod-message {
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    padding: 1rem;
    border-radius: 12px;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
    border-left: 3px solid #ff6b9d;
}

.warning-levels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.warning-level {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    border-radius: 8px;
}

.warning-number {
    background: var(--primary-gradient);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.warning-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Engagement Styles */
.engagement-features {
    display: grid;
    gap: 3rem;
}

.engagement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.engagement-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.engagement-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.engagement-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.engagement-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.example-message {
    background: linear-gradient(135deg, #ff6b9d, #c44d90);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    font-style: italic;
    line-height: 1.5;
}

.engagement-settings h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.engagement-settings ul {
    list-style: none;
    padding: 0;
}

.engagement-settings li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.engagement-settings li::before {
    content: '⚙️';
    position: absolute;
    left: 0;
    top: 0;
}

.challenge-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.challenge-type {
    padding: 1rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.challenge-type h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.challenge-type p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* Achievement Styles */
.achievement-categories {
    display: grid;
    gap: 3rem;
}

.achievement-category h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.achievement-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tier {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid;
}

.tier.bronze {
    background: linear-gradient(135deg, #fef7e6 0%, #fffbf0 100%);
    border-color: #cd7f32;
}

.tier.silver {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #c0c0c0;
}

.tier.gold {
    background: linear-gradient(135deg, #fef7e6 0%, #fffbf0 100%);
    border-color: #ffd700;
}

.tier-badge {
    font-size: 2rem;
    flex-shrink: 0;
}

.tier-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tier-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.streak-examples {
    display: grid;
    gap: 1rem;
}

.streak-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.streak-name {
    color: var(--text-primary);
    font-weight: 600;
}

.streak-days {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.social-achievements {
    display: grid;
    gap: 1rem;
}

.social-achievement {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.social-achievement h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.social-achievement p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.special-badges {
    display: grid;
    gap: 1rem;
}

.special-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.badge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.badge-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.achievement-showcase {
    margin-top: 3rem;
    text-align: center;
}

.achievement-showcase h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.celebration-example {
    max-width: 600px;
    margin: 0 auto;
}

.celebration-message {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: left;
}

.celebration-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.celebration-icon {
    font-size: 1.5rem;
}

.celebration-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.celebration-content p:last-child {
    margin-bottom: 0;
}

/* Crypto Styles */
.crypto-features {
    display: grid;
    gap: 3rem;
}

.crypto-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.crypto-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.crypto-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.crypto-example {
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contract-detection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-message, .bot-response {
    padding: 1rem;
    border-radius: 15px;
    line-height: 1.5;
}

.user-message {
    background: #f7fafc;
    color: var(--text-primary);
    margin-left: 2rem;
}

.bot-response {
    background: linear-gradient(135deg, #ff6b9d, #c44d90);
    color: white;
    margin-right: 2rem;
}

.crypto-commands {
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.crypto-command {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    text-align: center;
}

.crypto-command code {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.crypto-command span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.keyword-reactions {
    display: grid;
    gap: 1rem;
}

.reaction-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    align-items: center;
}

.keyword {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.reaction {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
}

.crypto-disclaimer {
    background: linear-gradient(135deg, #fef2f2 0%, #fef7f7 100%);
    border: 2px solid #f56565;
    border-radius: 15px;
    padding: 2rem;
}

.disclaimer-content h4 {
    color: #c53030;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.disclaimer-content p {
    color: #742a2a;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Getting Started Page Styles */
.getting-started-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    text-align: center;
}

.getting-started-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.getting-started-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.quick-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stat-icon {
    font-size: 1.25rem;
}

.stat-text {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.setup-steps {
    padding: 4rem 0;
    background: white;
}

.steps-container {
    display: grid;
    gap: 3rem;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-action {
    margin-bottom: 1rem;
}

.step-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #fef7e6 0%, #fffbf0 100%);
    border-radius: 10px;
    border-left: 3px solid #f59e0b;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.note-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.permissions-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.permission-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.permission-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.permission-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.permission-details strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.permission-details span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.config-preview {
    margin-bottom: 1rem;
}

.config-example {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.config-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.config-icon {
    font-size: 1.25rem;
}

.config-options {
    display: grid;
    gap: 0.75rem;
}

.config-option {
    padding: 0.75rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-left: 3px solid #ff6b9d;
}

.chat-examples {
    margin-bottom: 1.5rem;
}

.chat-example {
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.example-message {
    padding: 0.75rem 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.example-message:last-child {
    margin-bottom: 0;
}

.example-message.user {
    background: #f7fafc;
    color: var(--text-primary);
    margin-left: 2rem;
}

.example-message.bot {
    background: linear-gradient(135deg, #ff6b9d, #c44d90);
    color: white;
    margin-right: 2rem;
}

.interaction-tips h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.interaction-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.interaction-tips li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.interaction-tips li::before {
    content: '💡';
    position: absolute;
    left: 0;
    top: 0;
}

.config-guide {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
}

.config-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.config-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.config-section .config-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.config-section h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.config-details {
    display: grid;
    gap: 1rem;
}

.config-item {
    padding: 1rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    border-radius: 10px;
    border-left: 3px solid #ff6b9d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.config-item strong {
    color: var(--text-primary);
}

.essential-commands {
    padding: 4rem 0;
    background: white;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.command-category {
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.command-category h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.command-category .command-list {
    display: grid;
    gap: 1rem;
}

.command {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.command code {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 0.85rem;
}

.command span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

.troubleshooting {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.issue-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.issue-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.issue-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.issue-solutions {
    display: grid;
    gap: 0.75rem;
}

.solution {
    padding: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #f7fef7 100%);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-left: 3px solid #10b981;
}

.next-steps {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.next-steps-content h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.next-steps-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.next-steps .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.support-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

.support-note a {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 500;
}

.support-note a:hover {
    text-decoration: underline;
}

/* Support Page Styles */
.support-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    text-align: center;
}

.support-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.support-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-btn {
    padding: 1rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    transition: opacity 0.3s ease;
}

.search-btn:hover {
    opacity: 0.8;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.quick-link:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.link-icon {
    font-size: 1.125rem;
}

.faq-categories {
    padding: 4rem 0;
    background: white;
}

.faq-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-nav-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.faq-nav-btn:hover {
    border-color: #ff6b9d;
    color: var(--text-primary);
}

.faq-nav-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
}

.faq-question h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer > div {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul, .faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer code {
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    position: relative;
}

.faq-answer a {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.no-results {
    text-align: center;
    padding: 3rem;
    display: none;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.knowledge-base {
    padding: 4rem 0;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.resource-link {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.resource-link:hover {
    gap: 0.75rem;
}

.copy-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1000;
    animation: fadeInUp 0.3s ease;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

mark {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 0.125rem 0.25rem;
    border-radius: 3px;
    color: var(--text-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 2rem;
    }
    
    .search-box {
        margin: 0 1rem 2rem;
    }
    
    .quick-links {
        padding: 0 1rem;
    }
    
    .quick-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .faq-nav {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .faq-nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer > div {
        padding: 0 1rem 1rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
         }
 }

/* Legal Pages Styles */
.legal-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
}

.legal-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legal-meta p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.legal-content {
    padding: 3rem 0;
    background: white;
}

.legal-document {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.legal-nav h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav li {
    margin-bottom: 0.5rem;
}

.legal-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.legal-nav a:hover {
    color: #ff6b9d;
}

.legal-sections {
    max-width: none;
}

.legal-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.legal-section h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff6b9d;
}

.legal-section h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section code {
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.legal-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8faff 100%);
    text-align: center;
}

.legal-cta h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.legal-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.legal-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 1024px) {
    .legal-document {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-nav {
        position: static;
        order: -1;
    }
    
    .legal-nav h3 {
        text-align: center;
    }
    
    .legal-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .legal-nav li {
        margin-bottom: 0;
    }
    
    .legal-nav a {
        padding: 0.5rem 1rem;
        background: white;
        border-radius: 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .legal-intro {
        font-size: 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    .legal-cta h2 {
        font-size: 1.75rem;
    }
    
    .legal-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.hidden { display: none; }
.visible { display: block; } 