/* Models Page Specific Styles - Override main styles */

/* Hero Section */
body .hero {
    padding-top: 95px !important;
    padding-bottom: 30px !important;
    background: var(--hero-bg);
    text-align: center;
    min-height: auto !important;
}

.hero h1 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Language Models Section */
.language-models {
    padding: 80px 0;
    background: var(--about-bg);
}

.language-models h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-size: 16px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.model-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
}

.model-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.model-card.flagship {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
}

.model-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.model-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-bg);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.model-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.model-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.model-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-row span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

.status {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--status-available);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status.best {
    background: rgba(245, 158, 11, 0.1);
    color: var(--status-best);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status.preview {
    background: rgba(255, 22, 22, 0.1);
    color: rgba(255, 0, 0);
    border: 1px solid rgba(255, 65, 65, 0.3);
}
.status.upcoming {
    background: rgba(139, 92, 246, 0.1);
    color: var(--status-upcoming);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.status.development {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Specialized Models Section */
.specialized-models {
    padding: 80px 0;
    background: var(--models-bg);
}

.specialized-models h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
}

/* Model Comparison Section */
.model-comparison {
    padding: 80px 0;
    background: var(--samples-bg);
}

.model-comparison h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
}

.comparison-table {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s ease;
}

.comparison-table:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

thead th {
    background: var(--accent-bg);
    color: var(--text-primary);
    font-weight: 600;
    padding: 16px 12px;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
}

tbody td {
    padding: 16px 12px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

tbody tr:last-child td {
    border-bottom: none;
}

.flagship-row {
    background: rgba(139, 92, 246, 0.05);
}

.flagship-row td {
    font-weight: 500;
}

.status-mini {
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-mini.available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--status-available);
}

.status-mini.best {
    background: rgba(245, 158, 11, 0.1);
    color: var(--status-best);
}

.status-mini.upcoming {
    background: rgba(139, 92, 246, 0.1);
    color: var(--status-upcoming);
}

/* Getting Started Section */
.getting-started {
    padding: 80px 0;
    background: var(--architecture-bg);
}

.getting-started-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.2s ease;
}

.getting-started-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.getting-started-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.getting-started-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 15px;
}

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

.btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 80px !important;
        padding-bottom: 20px !important;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .language-models h2,
    .specialized-models h2,
    .model-comparison h2 {
        font-size: 24px;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .model-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .model-icon {
        width: 40px;
        height: 40px;
    }
    
    .comparison-table {
        padding: 20px;
    }
    
    table {
        font-size: 12px;
    }
    
    thead th,
    tbody td {
        padding: 12px 8px;
    }
    
    .getting-started-card {
        padding: 32px 24px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
@media (max-width: 480px) {
    .language-models,
    .specialized-models,
    .model-comparison,
    .getting-started {
        padding: 60px 0;
    }
    
    .model-card {
        padding: 20px;
    }
    
    .comparison-table {
        padding: 16px;
    }
    
    table {
        font-size: 11px;
    }
    
    thead th,
    tbody td {
        padding: 10px 6px;
    }
    
    .getting-started-card {
        padding: 24px 20px;
    }
    
    .getting-started-card h2 {
        font-size: 24px;
    }
    
    .model-header h3 {
        font-size: 18px;
    }
    
    .model-icon {
        width: 36px;
        height: 36px;
    }
}

/* Footer Links Override - All on Same Row */
.footer-links {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}