:root {
    --page-400: var(--purple-400);
    --page-500: var(--purple-500);
    --page-600: var(--purple-600);
    --page-bs-01: var(--purple-bs-01);
    --page-bs-02: var(--purple-bs-02);
    --page-bs-03: var(--purple-bs-03);
    --blob-c0: rgba(192, 132, 252, 0.8);
    --blob-c1: rgba(147, 51, 234, 0.4);
}

/* Code Review Page Specific Styles */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--page-500);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.process-content {
    flex-grow: 1;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-description {
    color: var(--slate-600);
}

.review-type-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--page-500);
}

.review-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.review-type-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.review-type-description {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
}

.review-type-features {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.review-type-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate-600);
}

.review-type-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--page-500);
}

.language-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.language-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.language-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: rgba(168, 85, 247, 0.1);
    color: var(--page-600);
}

.language-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.language-description {
    font-size: 0.875rem;
    color: var(--slate-600);
}

.faq-item {
    border-bottom: 1px solid var(--slate-200);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--page-500);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding-top: 0.75rem;
    color: var(--slate-600);
}

.faq-item.active .faq-answer {
    display: block;
}

.code-block {
    background-color: var(--slate-800);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.code-block pre {
    font-family: "Courier New", Courier, monospace;
    color: var(--slate-100);
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-block .comment {
    color: var(--slate-500);
}

.code-block .keyword {
    color: var(--purple-400);
}

.code-block .string {
    color: var(--green-400);
}

.code-block .function {
    color: var(--blue-400);
}

.vulnerability-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--page-500);
    display: flex;
    flex-direction: column;
    justify-items: center;
}

.vulnerability-card > .code-block {
    max-height: 300px;
}

.vulnerability-card p {
    flex-grow: 1;
}

.vulnerability-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vulnerability-severity {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.severity-high {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.severity-medium {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.severity-low {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.language-icon {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(147,51,234)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'%3E%3C/path%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'%3E%3C/path%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}