:root {
    /* Midnight & Gold Palette */
    --background: #0f0f0f;
    --card-bg: rgba(30, 30, 30, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
    --accent-primary: #D4AF37;
    --accent-secondary: #3B82F6;
    --accent-tertiary: #F7D794;
    --cta-color: #D4AF37;
    --cta-hover: #B8941F;
    --text-primary: #F5F5F5;
    --text-headings: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;

    /* Demo Backgrounds */
    --demo-bg-other: rgba(44, 44, 46, 0.6);
    --demo-bg-acolyte: rgba(212, 175, 55, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top center, #1a1a1a 0%, #000000 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Navigation */
.nav {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 80px;
}

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

.nav-user {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-welcome {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.logout-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.logout-btn:hover {
    border-color: var(--error-color);
    color: var(--error-color);
    background: rgba(239, 68, 68, 0.1);
}

/* Main Content */
.main-content {
    padding: 8rem 0 4rem;
}

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

.welcome-section {
    text-align: center;
    margin-bottom: 4rem;
}

.welcome-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

/* Cards */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* API Key */
.api-key-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.api-key-display {
    font-family: 'SF Mono', 'Monaco', 'Andale Mono', 'Ubuntu Mono', monospace;
    color: var(--accent-tertiary);
    word-break: break-all;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.api-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #B8941F 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

.btn-danger {
    background: transparent;
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.btn-danger:hover {
    background: var(--error-color);
    color: var(--background);
}

/* Credits */
.credits-display {
    text-align: center;
    margin-bottom: 3rem;
}

.credits-amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-primary);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    margin-bottom: 0.75rem;
    letter-spacing: -0.05em;
    line-height: 0.95;
}

.credits-renewal {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.credits-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 12px;
    margin: 1.5rem 0 1rem;
    overflow: hidden;
}

.credits-fill {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: width 0.3s ease;
}

/* Stats */
.stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-headings);
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.chart-container {
    height: 300px;
    margin-top: 1rem;
}

/* Account Actions */
.account-actions {
    display: grid;
    gap: 1rem;
}

.action-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.action-item:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
}

.action-info h4 {
    color: var(--text-headings);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.action-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Bonus Banner */
.bonus-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 165, 0, 0.15));
    border: 1px solid var(--accent-primary);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    }

    100% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    }
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bonus-icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.bonus-text {
    flex: 1;
    min-width: 250px;
}

.bonus-text h3 {
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bonus-text p {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.countdown-timer {
    color: var(--accent-tertiary);
    font-weight: 600;
    font-size: 1.1rem;
}

.countdown-time {
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    margin-left: 0.5rem;
    color: var(--accent-primary);
}

.bonus-cta-btn {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.bonus-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-headings);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--text-primary);
}

/* Subscription & Plans */
.subscription-sections {
    display: grid;
    gap: 2rem;
}

.current-subscription {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.current-subscription h3 {
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.subscription-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
    color: var(--text-primary);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.plan-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.plan-option:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.plan-option.current-plan {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-headings);
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.plan-features {
    margin-bottom: 2rem;
}

.feature {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.current-badge {
    background: var(--accent-primary);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Credit Packages */
.credit-package {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.credit-package:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.package-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-headings);
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.package-features {
    margin-bottom: 2rem;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Billing History */
.billing-history-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.billing-history-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-headings);
}

.billing-item {
    display: grid;
    grid-template-columns: 120px 1fr 100px 100px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    align-items: center;
}

.billing-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.billing-description {
    color: var(--text-primary);
    font-weight: 500;
}

.billing-amount {
    text-align: right;
    font-weight: 700;
    color: var(--text-primary);
}

.billing-status {
    text-align: center;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.billing-status.status-paid {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.billing-status.status-pending {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-color);
}

.billing-status.status-failed {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error-color);
}

/* Notifications */
.notification {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: none;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.notification.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.notification.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.notification.info {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid var(--accent-secondary);
    color: var(--accent-secondary);
}

/* Model Dropdown */
.model-dropdown-toggle {
    width: 100%;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.model-dropdown-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
}

.model-dropdown-menu {
    position: relative;
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #1a1a1a;
    overflow: hidden;
    display: none;
}

.model-dropdown-menu.show {
    display: block;
}

.model-dropdown-menu li {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s ease;
}

.model-dropdown-menu li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.model-dropdown-menu strong {
    display: block;
    font-size: 1rem;
    color: var(--text-headings);
}

.model-id {
    display: block;
    font-family: monospace;
    color: var(--accent-secondary);
    margin-top: 0.25rem;
}

.model-notes {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .stats-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-content {
        flex-direction: column;
        text-align: center;
    }

    .bonus-cta-btn {
        width: 100%;
    }

    .billing-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .billing-amount {
        text-align: center;
    }
}

/* =========================================
   Landing Page Specific Styles (Index)
   ========================================= */

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.cta-btn {
    background: linear-gradient(135deg, var(--cta-color) 0%, #E8C457 50%, var(--cta-color) 100%);
    background-size: 200% 100%;
    color: var(--background);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow:
        0 4px 15px rgba(212, 175, 55, 0.4),
        0 2px 8px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.cta-btn:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.5),
        0 4px 15px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

.cta-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.cta-btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 2.5rem;
    box-shadow:
        0 6px 20px rgba(212, 175, 55, 0.45),
        0 3px 12px rgba(212, 175, 55, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.cta-btn-large:hover {
    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.6),
        0 5px 18px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero {
    padding: 12rem 0 8rem;
    text-align: center;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.hero-illustration {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1024px;
    max-width: 90%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    filter: blur(2px);
    mask-image: radial-gradient(circle at center,
            rgba(0, 0, 0, 1) 15%,
            rgba(0, 0, 0, 0.9) 30%,
            rgba(0, 0, 0, 0.6) 45%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.1) 75%,
            rgba(0, 0, 0, 0.05) 85%,
            rgba(0, 0, 0, 0) 95%);
    -webkit-mask-image: radial-gradient(circle at center,
            rgba(0, 0, 0, 1) 15%,
            rgba(0, 0, 0, 0.9) 30%,
            rgba(0, 0, 0, 0.6) 45%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.1) 75%,
            rgba(0, 0, 0, 0.05) 85%,
            rgba(0, 0, 0, 0) 95%);
}

@media (max-width: 768px) {
    .hero-illustration {
        max-width: 95%;
        mask-image: radial-gradient(circle at center,
                rgba(0, 0, 0, 1) 10%,
                rgba(0, 0, 0, 0.9) 25%,
                rgba(0, 0, 0, 0.6) 40%,
                rgba(0, 0, 0, 0.3) 55%,
                rgba(0, 0, 0, 0.1) 70%,
                rgba(0, 0, 0, 0.05) 80%,
                rgba(0, 0, 0, 0) 92%);
        -webkit-mask-image: radial-gradient(circle at center,
                rgba(0, 0, 0, 1) 10%,
                rgba(0, 0, 0, 0.9) 25%,
                rgba(0, 0, 0, 0.6) 40%,
                rgba(0, 0, 0, 0.3) 55%,
                rgba(0, 0, 0, 0.1) 70%,
                rgba(0, 0, 0, 0.05) 80%,
                rgba(0, 0, 0, 0) 92%);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.models-comparison {
    background: rgba(30, 30, 30, 0.25);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.how-to-choose {
    background: rgba(30, 30, 30, 0.2) !important;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.model-column {
    background: rgba(30, 30, 30, 0.3) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.demo-section {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.demo-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.demo-side {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.demo-side.other-ai {
    background: linear-gradient(135deg, var(--demo-bg-other) 0%, rgba(44, 44, 46, 0.4) 100%);
    border: 1px solid rgba(138, 138, 142, 0.3);
}

.demo-side.acolyte-ai {
    background: linear-gradient(135deg, var(--demo-bg-acolyte) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.demo-label {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.demo-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.features-section {
    padding: 6rem 0;
    margin: 3rem 0;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--accent-primary);
    box-shadow: 0 16px 50px rgba(212, 175, 55, 0.25);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--accent-primary);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.pricing-preview {
    padding: 6rem 0;
    background: var(--card-bg);
    margin: 6rem 0;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

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

.pricing-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex: 0 1 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    position: relative;
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-tier {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
    letter-spacing: -0.02em;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-credits {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.tools-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.tools-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tool-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

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

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

.tool-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.tool-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-headings);
    margin: 0;
    letter-spacing: -0.02em;
}

.tool-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-check {
    font-size: 0.9rem;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.tools-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

.footer-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--accent-primary);
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

/* Site Footer */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-divider {
    color: var(--text-secondary);
    opacity: 0.5;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tool-card {
        padding: 2rem 1.5rem;
    }
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.experience-section {
    padding: 6rem 0;
    background: var(--background);
}

.models-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 5rem;
}

.model-column {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-column:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.model-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.demonstration-box {
    background: rgba(44, 44, 46, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    height: 320px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow-y: auto;
}

.demo-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-family: 'Georgia', serif;
}

.demonstration-box::-webkit-scrollbar {
    width: 8px;
}

.demonstration-box::-webkit-scrollbar-track {
    background: rgba(44, 44, 46, 0.3);
    border-radius: 4px;
}

.demonstration-box::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

.demonstration-box::-webkit-scrollbar-thumb:hover {
    background: var(--cta-hover);
}

.metadata-bar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metadata-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.metadata-item:last-child {
    border-bottom: none;
}

.metadata-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.metadata-value {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.how-to-choose {
    text-align: center;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.choose-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-headings);
    margin-bottom: 2rem;
}

.choose-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.choose-bullet {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.bullet-point {
    color: var(--accent-primary);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.1rem;
}

.bullet-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.5;
}

.typing-cursor::after {
    content: '|';
    color: var(--accent-primary);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 998;
}

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

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-nav-links li {
    margin: 1rem 0;
}

.mobile-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-primary);
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-auth-buttons .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-auth-buttons .nav-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.mobile-user-welcome {
    text-align: center;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.model-mode-selector {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    padding: 0.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mode-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.mode-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

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

.mode-btn.active {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-color: var(--accent-primary);
    color: var(--background);
    box-shadow:
        0 4px 20px rgba(212, 175, 55, 0.4),
        0 2px 10px rgba(212, 175, 55, 0.3);
    transform: translateY(0);
}

.mode-btn.active::before {
    display: none;
}

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

.mode-label {
    font-family: 'Inter', sans-serif;
}

.narrator-column {
    display: none;
}

.narrator-mode .narrator-column {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
}

.narrator-mode .persona-column {
    display: none;
}

.narrator-mode {
    grid-template-columns: 1fr;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .demo-comparison {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    #auth-nav {
        display: none !important;
    }

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

    .model-mode-selector {
        flex-direction: column;
        max-width: 100%;
    }

    .mode-btn {
        padding: 0.875rem 1rem;
    }

    .models-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demonstration-box {
        height: 280px;
    }

    .choose-bullets {
        gap: 1rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .choose-title {
        font-size: 1.5rem;
    }

    .mobile-auth-buttons {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .mobile-auth-buttons .nav-link {
        padding: 1rem 1.5rem;
        min-height: 52px;
        font-size: 1.05rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-auth-buttons .nav-link:active {
        transform: scale(0.97);
        background: rgba(212, 175, 55, 0.1);
    }

    .mobile-auth-buttons .cta-btn {
        padding: 1.125rem 1.75rem;
        min-height: 56px;
        font-size: 1.125rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        background: linear-gradient(135deg, var(--cta-color) 0%, #E8C457 50%, var(--cta-color) 100%);
        background-size: 200% 100%;
        box-shadow:
            0 6px 20px rgba(212, 175, 55, 0.4),
            0 3px 10px rgba(212, 175, 55, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-auth-buttons .cta-btn:active {
        transform: translateY(1px) scale(0.98);
        box-shadow:
            0 3px 10px rgba(212, 175, 55, 0.3),
            0 1px 5px rgba(212, 175, 55, 0.2);
    }
}

/* =========================================
   Authentication Pages (Login/Signup)
   ========================================= */

.auth-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.auth-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-select {
    cursor: pointer;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.auth-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.auth-links a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

.back-link {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.trial-badge {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.plan-info {
    background: var(--background);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.terms {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

.terms a {
    color: var(--accent-primary);
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-container {
        margin: 1rem;
        padding: 2rem;
    }

    .back-link {
        position: static;
        display: block;
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* =========================================
   Pricing Page Specifics
   ========================================= */

.pricing-section {
    padding: 4rem 0;
}

/* Note: .pricing-grid and .pricing-card might be shared with index, but ensuring specific styles here */
.pricing-section .pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.pricing-section .pricing-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex: 0 1 350px;
}

.pricing-section .pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-section .pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.pricing-section .pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--background);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-tier {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-credits {
    background: var(--background);
    padding: 1rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.credits-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.credits-breakdown {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-style: italic;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
}

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

.credit-system {
    padding: 6rem 0;
    background: var(--card-bg);
    margin: 6rem 0;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

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

.credit-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.credit-type {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.credit-cost {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.credit-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-section {
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Top-Up Credits Section */
.topup-section {
    padding: 6rem 0;
    background: var(--card-bg);
    margin: 0 0 6rem 0;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.topup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.topup-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.topup-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-secondary);
}

.topup-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.topup-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--background);
    padding: 0.4rem 1rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.topup-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.topup-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.topup-credits {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.topup-rate {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.topup-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.topup-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    text-align: center;
}

.topup-note p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.topup-note strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .topup-section {
        padding: 4rem 1rem;
        margin: 0 1rem 4rem 1rem;
    }

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

    .topup-price {
        font-size: 2rem;
    }
}

/* =========================================
   How It Works Page Specifics
   ========================================= */

.steps-section {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    gap: 4rem;
    margin-top: 3rem;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--background);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.step-content {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.step-screenshot {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
}

.payment-section {
    padding: 6rem 0;
    background: var(--card-bg);
    margin: 6rem 0;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

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

.payment-step {
    background: var(--background);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.payment-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.payment-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.final-cta {
    padding: 4rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =========================================
   Legal Pages (Privacy & Terms) Specifics
   ========================================= */

.legal-content {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 3rem;
    margin-bottom: 2rem;
}

.legal-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.legal-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-headings);
    margin: 1.5rem 0 0.5rem 0;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box .legal-section-title {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.data-table {
    background: var(--background);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin: 1.5rem 0;
    overflow: hidden;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.data-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-primary);
    font-weight: 600;
}

.data-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
    }

    .legal-page-title {
        font-size: 2rem;
    }

    .data-table {
        font-size: 0.9rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* =========================================
   Sitemap Page Specifics
   ========================================= */

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

.sitemap-section {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.sitemap-section:hover {
    transform: translateY(-4px);
}

.sitemap-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    /* Override global center alignment if needed */
}

.page-list {
    list-style: none;
}

.page-item {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--background);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.page-item:hover {
    border-color: var(--accent-primary);
}

.page-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.page-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.cta-section {
    text-align: center;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Verification Pages Specifics
   ========================================= */

.verification-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.verification-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(34, 197, 94, 0.5);
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

.error-icon {
    font-size: 4rem;
    color: var(--error-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
    filter: drop-shadow(0 4px 8px rgba(239, 68, 68, 0.3));
}

.verification-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.verification-details {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: left;
}

.error-details-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    color: #FFB3B3;
}

.help-section {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.help-section h3 {
    color: #8A2BE2;
    margin-bottom: 1rem;
}

.help-section ul {
    list-style: none;
    padding: 0;
}

.help-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    color: var(--text-secondary);
}

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

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: var(--cta-color);
    color: var(--background);
}

.btn-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.resend-form {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 10px;
}

.resend-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.resend-form input:focus {
    outline: none;
    border-color: #8A2BE2;
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.footer-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Error and Success Messages */
.error-message {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--error-color);
    border-left: 4px solid var(--error-color);
    color: #fca5a5;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.error-message::before {
    content: "⚠";
    font-size: 1.1rem;
    flex-shrink: 0;
}

.success-message {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--success-color);
    border-left: 4px solid var(--success-color);
    color: #6ee7b7;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-message::before {
    content: "✓";
    font-size: 1.1rem;
    flex-shrink: 0;
}