@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');

:root {
    --burgundy-50: #fef2f3;
    --burgundy-100: #fde2e4;
    --burgundy-150: #fbccd1;
    --burgundy-200: #f9a3ad;
    --burgundy-300: #f27284;
    --burgundy-400: #e23e57;
    --burgundy-500: #b81b3b;
    --burgundy-600: #8a1228;
    --burgundy-700: #6b0c1e;
    --burgundy-800: #540a17;
    --burgundy-900: #3f0711;
    --burgundy-950: #220308;

    --background: #fafafa;
    --foreground: #0f172a;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --footer-bg: #0a0102;
    --footer-border: #2a040b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
}

/* Header */
.header {
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 72px;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-brand-icon {
    background: linear-gradient(135deg, var(--burgundy-500), var(--burgundy-700));
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(138, 18, 40, 0.15);
}

.nav-brand h1 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 800;
    color: var(--slate-800);
}

.nav-menu {
    display: none;
    gap: 12px;
}

.nav-link {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.nav-link.active,
.nav-link:hover {
    color: var(--burgundy-600);
    background-color: var(--burgundy-50);
}

.nav-search {
    position: relative;
    display: none;
}

.nav-search input {
    width: 280px;
    padding: 10px 40px 10px 16px;
    background: var(--slate-100);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Tajawal', sans-serif;
    color: var(--slate-700);
    transition: all 0.2s ease;
    outline: none;
}

.nav-search input:focus {
    background: white;
    border-color: var(--burgundy-300);
    box-shadow: 0 0 0 3px rgba(138, 18, 40, 0.05);
}

.nav-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    color: var(--slate-600);
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: var(--slate-100);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--slate-200);
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.mobile-search {
    position: relative;
    margin-bottom: 16px;
}

.mobile-search input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    background: var(--slate-100);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Tajawal', sans-serif;
    outline: none;
}

.mobile-search input:focus {
    background: white;
    border-color: var(--burgundy-300);
}

.mobile-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    display: flex;
    align-items: center;
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--slate-700);
    font-weight: 700;
    transition: background 0.2s;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--burgundy-600);
    background: var(--burgundy-50);
}

/* Hero Section */
.hero {
    background: var(--burgundy-950);
    color: white;
    padding: clamp(60px, 10vw, 120px) 20px clamp(40px, 8vw, 100px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 3, 8, 0.8), rgba(10, 1, 2, 0.95));
    z-index: 1;
}

.hero-orb {
    position: absolute;
    top: -20%;
    right: -10%;
    width: clamp(400px, 50vw, 600px);
    height: clamp(400px, 50vw, 600px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 18, 40, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero h2 .gradient-text {
    background: linear-gradient(135deg, var(--burgundy-200), var(--burgundy-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--slate-300);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.hero-dua {
    font-size: 0.95rem;
    color: var(--slate-400);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
}

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

.btn-primary:hover {
    background: var(--burgundy-700);
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--slate-800);
    border: 1px solid var(--slate-200);
}

.btn-secondary:hover {
    background: var(--slate-50);
}

/* App Highlights */
.app-highlights {
    padding: clamp(40px, 8vw, 80px) 0;
    background: white;
    border-bottom: 1px solid var(--slate-100);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 3vw, 24px);
}

.highlight-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--slate-50);
    border-radius: 16px;
    border: 1px solid var(--slate-100);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: var(--burgundy-50);
    color: var(--burgundy-600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--slate-500);
}

/* Latest Apps */
.latest-apps {
    padding: clamp(40px, 8vw, 80px) 0;
}

.section-header {
    margin-bottom: clamp(24px, 4vw, 40px);
}

.section-header h3 {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--slate-800);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(16px, 3vw, 24px);
}

.app-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--slate-200);
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.app-card:hover {
    border-color: var(--burgundy-200);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.app-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.app-icon img,
.app-icon-image {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--slate-100);
}

.app-icon-placeholder {
    width: 64px;
    height: 64px;
    background: var(--burgundy-50);
    color: var(--burgundy-400);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-info {
    flex: 1;
}

.app-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--slate-800);
    margin-bottom: 4px;
}

.app-info .developer {
    font-size: 0.9rem;
    color: var(--slate-500);
}

.app-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.app-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--slate-100);
    color: var(--slate-600);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.app-description {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.app-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--slate-100);
    font-size: 0.85rem;
    color: var(--slate-500);
    font-weight: 600;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* App Detail Page */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--slate-500);
}

.breadcrumb a {
    color: var(--burgundy-600);
    text-decoration: none;
    font-weight: 700;
}

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

.app-detail {
    background: white;
    border-radius: 20px;
    padding: clamp(20px, 4vw, 40px);
    border: 1px solid var(--slate-200);
}

.app-header {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vw, 32px);
    margin-bottom: clamp(24px, 4vw, 40px);
}

.app-header .app-icon img,
.app-header .app-icon-placeholder {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    border-radius: clamp(16px, 3vw, 24px);
}

.app-detail .app-info {
    flex: 1;
}

.app-info h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--slate-800);
    margin-bottom: 8px;
    line-height: 1.3;
}

.app-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-actions .btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 48px);
}

.app-content-main {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 40px);
    min-width: 0;
}

.app-content-sidebar {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 40px);
    min-width: 0;
}

.app-content h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 800;
    color: var(--slate-800);
    margin-bottom: 16px;
}

.screenshots-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
}

.screenshots-carousel img {
    height: clamp(300px, 60vh, 500px);
    width: auto;
    max-width: 85vw;
    border-radius: 12px;
    object-fit: contain;
    border: 1px solid var(--slate-200);
    background: var(--slate-50);
    scroll-snap-align: start;
}

.screenshot-placeholder {
    width: 240px;
    height: 480px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    font-size: 0.9rem;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    overflow: hidden;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: white;
    border-bottom: 1px solid var(--slate-100);
}

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

.detail-item .label {
    color: var(--slate-500);
    font-weight: 500;
}

.detail-item .value {
    color: var(--slate-800);
    font-weight: 700;
}

.links-grid {
    display: grid;
    gap: 12px;
}

.download-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    text-decoration: none;
    color: var(--slate-800);
    font-weight: 700;
    transition: all 0.2s ease;
}

.download-link:hover {
    background: white;
    border-color: var(--burgundy-300);
}

.download-link .size {
    color: var(--slate-500);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--slate-400);
    padding: clamp(40px, 8vw, 80px) 0 clamp(20px, 4vw, 40px);
    margin-top: clamp(40px, 8vw, 80px);
    border-top: 1px solid var(--footer-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand-logo .brand-icon {
    width: 32px;
    height: 32px;
    background: var(--burgundy-600);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-logo span {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.footer-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.social-link:hover {
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--footer-border);
    text-align: center;
    font-size: 0.9rem;
}

.footer-external-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-external-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--slate-300);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-external-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: var(--burgundy-500);
}

/* Utilities */
.search-results-info {
    margin-bottom: 24px;
    color: var(--slate-600);
    font-weight: 500;
    display: none;
}
.search-results-info.active {
    display: block;
}

.loading-indicator {
    text-align: center;
    padding: 60px 0;
    color: var(--slate-500);
}

.loading-spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid var(--slate-200);
    border-top-color: var(--burgundy-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.no-apps {
    text-align: center;
    padding: 60px 0;
}

.no-apps-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--slate-300);
}

.no-apps h4 {
    font-size: 1.2rem;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.no-apps p {
    color: var(--slate-500);
}

/* Responsive */
@media (min-width: 768px) {
    .navbar {
        height: 80px;
    }
    
    .nav-menu, .nav-search {
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-btn {
        display: none;
    }

    .app-header {
        flex-direction: row;
        align-items: center;
    }

    .app-actions .btn {
        flex: none;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .app-content {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-item {
        border-bottom: 1px solid var(--slate-100);
    }
    
    .detail-item:nth-last-child(2) {
        border-bottom: none;
    }
}

/* Resources Page Styles */
.resources-hero {
    padding-bottom: clamp(40px, 6vw, 80px);
}

.resources-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: white;
    border-bottom: 1px solid var(--slate-100);
}

.bg-slate {
    background: var(--slate-50);
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-icon { background: #fee2e2; color: #ef4444; }
.website-icon { background: #e0e7ff; color: #6366f1; }
.course-icon { background: #dcfce7; color: #22c55e; }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--slate-500);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 4vw, 32px);
    margin-top: 32px;
}

.resource-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: var(--burgundy-200);
}

.resource-banner {
    height: 100px;
}

.bg-gradient-1 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.bg-gradient-2 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.bg-gradient-3 { background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%); }
.bg-gradient-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.bg-gradient-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.resource-content {
    padding: 0 24px 24px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-logo {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    margin-top: -36px;
    margin-bottom: 16px;
    padding: 4px;
    border: 1px solid var(--slate-200);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.resource-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.placeholder-logo {
    width: 100%;
    height: 100%;
    background: var(--burgundy-50);
    color: var(--burgundy-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
}

.resource-icon-top {
    width: 64px;
    height: 64px;
    background: var(--burgundy-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 24px;
}

.resource-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.resource-content p {
    font-size: 0.95rem;
    color: var(--slate-500);
    margin-bottom: 24px;
    flex: 1;
}

.resource-link {
    font-weight: 700;
    color: var(--burgundy-600);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: gap 0.3s;
}

.resource-card:hover .resource-link {
    color: var(--burgundy-700);
    gap: 12px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(24px, 4vw, 32px);
    margin-top: 32px;
}

.course-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.course-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: var(--burgundy-200);
}

.course-image {
    position: relative;
    height: 180px;
}

.course-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--slate-800);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    backdrop-filter: blur(4px);
}

.course-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.course-info p {
    font-size: 0.95rem;
    color: var(--slate-500);
    margin-bottom: 20px;
    flex: 1;
}

.course-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--slate-100);
}

.course-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--slate-600);
    font-weight: 600;
}

.w-full {
    width: 100%;
}

/* Scrollbar */
.screenshots-carousel::-webkit-scrollbar {
    height: 8px;
}

.screenshots-carousel::-webkit-scrollbar-track {
    background: var(--slate-100);
    border-radius: 4px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
    background: var(--slate-300);
    border-radius: 4px;
}

.screenshots-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--slate-400);
}