.crabvoice-page {
    max-width: 800px;
    padding: 40px 20px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.hero .version {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons a {
    text-decoration: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: bold;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.cta-buttons .primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.cta-buttons .secondary {
    background-color: var(--secondary-color);
}

.cta-buttons .secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.content-section {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.content-section h2 {
    color: #7eff83;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-grid li {
    background: var(--background-feature);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.features-grid li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.features-grid .feature-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.features-grid .feature-name {
    font-weight: bold;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.platforms-list li {
    background: var(--background-feature);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tech-stack {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-stack li {
    background: var(--background-feature);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-weight: bold;
    font-size: 0.95rem;
    border-left: 3px solid var(--primary-color);
}

.install-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.install-steps li {
    counter-increment: step;
    padding: 10px 0;
    color: var(--text-muted);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.install-steps li::before {
    content: counter(step) ". ";
    color: var(--primary-color);
    font-weight: bold;
}

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

.install-steps a {
    color: var(--primary-color);
    text-decoration: none;
}

.install-steps a:hover {
    text-decoration: underline;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.page-footer {
    text-align: center;
    padding: 30px 0;
    color: var(--text-secondary);
}

.page-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-footer a:hover {
    text-decoration: underline;
}

.lang-switch {
    text-align: center;
    margin-bottom: 20px;
}

.lang-switch a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 14px;
    border: 1px solid var(--text-secondary);
    border-radius: 20px;
    transition: var(--transition);
}

.lang-switch a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 20px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
