/* Sorting History Website Styles */
/* Color scheme matches the app: dark background, orange/coral accent */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a2e;
    --bg-card: #1e2030;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-orange: #e07850;
    --accent-blue: #4a9eff;
    --accent-coral: #ff7f6e;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-decoration: none;
}

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

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

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

/* Language Picker */
.lang-picker {
    display: flex;
    gap: 0.4rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-picker a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.5px;
}

.lang-picker a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.lang-picker a.lang-active {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Hero Section */
main {
    padding-top: 80px;
}

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.app-icon img {
    border-radius: 22%;
    box-shadow: 0 10px 40px rgba(224, 120, 80, 0.3);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-coral));
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    max-width: 300px;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.features h2, .categories h2, .notify h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 120, 80, 0.2);
}

.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-orange);
}

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

.feature-card p {
    color: var(--text-secondary);
}

/* Categories Section */
.categories {
    padding: 6rem 2rem;
    text-align: center;
}

.categories > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.tag {
    background: var(--bg-card);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Notify Section */
.notify {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
    text-align: center;
}

.notify p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Notify Form */
.notify-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.notify-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

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

.notify-input:focus {
    border-color: var(--accent-orange);
}

.notify-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-coral));
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.notify-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(224, 120, 80, 0.4);
}

.notify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.notify-btn-success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.notify-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.notify-message-success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.notify-message-error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.notify-privacy {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Screenshot Showcase Section */
.showcase {
    padding: 6rem 2rem;
    text-align: center;
}

.showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

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

.showcase-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.showcase-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    min-width: min-content;
}

.showcase-item {
    flex: 0 0 auto;
    width: 220px;
}

.showcase-phone {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.showcase-caption {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .showcase h2 {
        font-size: 2rem;
    }

    .showcase-grid {
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .showcase-item {
        width: 180px;
    }
}

/* Section with Screenshot (Features Page) */
.section-with-screenshot {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.section-with-screenshot .section-text {
    flex: 1;
}

.section-with-screenshot .section-screenshot {
    flex: 0 0 auto;
}

.section-with-screenshot .section-screenshot .showcase-phone {
    width: 220px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .section-with-screenshot {
        flex-direction: column;
        gap: 2rem;
    }

    .section-with-screenshot .section-screenshot {
        order: -1;
    }

    .section-with-screenshot .section-screenshot .showcase-phone {
        width: 180px;
    }
}

/* Footer */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

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

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

/* Mobile hamburger menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }

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

    .phone-mockup {
        max-width: 250px;
    }

    .nav-toggle {
        display: block;
    }

    nav {
        flex-wrap: wrap;
    }

    .nav-links,
    .lang-picker {
        display: none;
        width: 100%;
    }

    .nav-links.nav-open,
    .lang-picker.nav-open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
    }

    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lang-picker {
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 0;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lang-picker a {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }

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

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Privacy & Support Pages */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

.page-content .last-updated {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.page-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-content p, .page-content li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content a {
    color: var(--accent-orange);
}

.contact-info {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--accent-orange);
    text-decoration: none;
}

/* Plans / Pricing Section */
.plans {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.plans-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.plan-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.plan-card-featured {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(224, 120, 80, 0.15);
}

.plan-card-premium {
    border-color: var(--accent-blue);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-coral));
    color: white;
    padding: 0.3rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.plan-card-premium .plan-header h3 {
    color: var(--accent-blue);
}

.plan-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.plan-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.plan-features li::before {
    content: "\2713";
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.plan-card-premium .plan-features li::before {
    color: var(--accent-blue);
}

.plan-features .plan-feature-note {
    color: var(--text-secondary);
    opacity: 0.7;
    font-style: italic;
}

.plan-features .plan-feature-note::before {
    content: "\2022";
}

/* Cascade Explainer */
.cascade-explainer {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cascade-explainer h3 {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.cascade-explainer > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cascade-table-wrapper {
    overflow-x: auto;
}

.cascade-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.cascade-table th,
.cascade-table td {
    padding: 0.75rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cascade-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.cascade-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

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

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

    .plans h2 {
        font-size: 2rem;
    }
}

/* Category Grid (new structured layout) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.category-group {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 16px;
}

.category-group h3 {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.category-list li::before {
    content: "•";
    color: var(--accent-coral);
    margin-right: 0.5rem;
}

/* Family Game Night Section */
.family-night {
    padding: 6rem 2rem;
}

.family-night h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.features-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Customization Section */
.customization {
    padding: 6rem 2rem;
}

.customization h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Make FAQ section full width on page */
section.faq {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

section.faq > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

    .faq h2, .customization h2 {
        font-size: 2rem;
    }
}

/* ===========================================
   Legal Pages (Privacy Policy, Terms of Service)
   =========================================== */

.legal-page {
    max-width: 900px;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-orange);
}

.legal-page section {
    margin-bottom: 2rem;
}

/* Table of Contents */
.toc {
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.toc h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.toc ol {
    columns: 2;
    column-gap: 2rem;
    padding-left: 1.25rem;
    margin: 0;
}

.toc li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.toc a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.toc a:hover {
    color: var(--accent-orange);
}

@media (max-width: 600px) {
    .toc ol {
        columns: 1;
    }
}

/* Tables in Legal Pages */
.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.legal-page th,
.legal-page td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-page td {
    color: var(--text-secondary);
}

.legal-page tr:last-child td {
    border-bottom: none;
}

.legal-page .highlight-row {
    background: rgba(224, 120, 80, 0.1);
}

.legal-page .highlight-row td {
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .legal-page table {
        font-size: 0.9rem;
    }

    .legal-page th,
    .legal-page td {
        padding: 0.625rem 0.75rem;
    }
}

/* Highlight Box (main tier comparison) */
.highlight-box {
    background: linear-gradient(135deg, rgba(224, 120, 80, 0.15), rgba(255, 127, 110, 0.1));
    border: 1px solid rgba(224, 120, 80, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    color: var(--accent-orange);
    font-size: 1.5rem;
}

.highlight-box .tier-table {
    margin-bottom: 1rem;
}

.highlight-cta {
    text-align: center;
    color: var(--text-primary);
    margin: 1rem 0 0;
    font-size: 1.1rem;
}

/* Notice Box (informational callouts) */
.notice-box {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.notice-box h4 {
    margin: 0 0 0.5rem;
    color: var(--text-primary);
}

.notice-box p {
    margin: 0.5rem 0;
}

.notice-box ul {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
}

.notice-box.warning {
    border-left-color: var(--accent-coral);
    background: rgba(255, 127, 110, 0.1);
}

/* Summary Box (end of document) */
.summary-box {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.summary-box h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    text-align: center;
}

.summary-box table {
    margin-bottom: 1.5rem;
}

.summary-box .highlight-cta {
    margin-bottom: 0;
}

/* Legal Page Lists */
.legal-page ul,
.legal-page ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.legal-page li strong {
    color: var(--text-primary);
}

/* ===========================================
   Comparison Tables (Features Page)
   =========================================== */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table th:first-child {
    text-align: left;
}

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

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

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

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive table wrapper */
.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

@media (max-width: 600px) {
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
}

/* ===========================================
   About Page Styles
   =========================================== */

.about-tiers {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.about-tiers h3 {
    color: var(--accent-orange);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.about-tiers h3:first-child {
    margin-top: 0;
}

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

.about-tiers ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-tiers li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.about-tiers li strong {
    color: var(--text-primary);
}

.about-cta {
    background: linear-gradient(135deg, rgba(224, 120, 80, 0.15), rgba(255, 127, 110, 0.1));
    border: 1px solid rgba(224, 120, 80, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.about-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-cta .notify-btn {
    display: inline-block;
}

/* Comparison Page Visual */
.comparison-visual {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.comparison-visual-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.comparison-visual-item img {
    width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comparison-visual-label {
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    font-weight: 500;
}

.comparison-visual-inline {
    justify-content: flex-start;
    margin: 1rem 0 1.5rem;
}

@media (max-width: 768px) {
    .comparison-visual-item img {
        width: 150px;
    }
}
