.catalog-main { max-width: 1280px; margin: 0 auto; padding: 10rem 2rem 6rem 2rem; }
.catalog-header { text-align: center; max-width: 700px; margin: 0 auto 4rem auto; }
.catalog-header .section-tag { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #818cf8; margin-bottom: 0.75rem; display: block; }
.catalog-header h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; max-width: 900px; margin-bottom: 1.5rem; background: linear-gradient(135deg, #818cf8, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.catalog-header p { color: var(--text-muted); font-size: 1.1rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; max-width: 1280px; margin: 0 auto; }
.catalog-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: calc(var(--radius) * 1.5); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.catalog-card:hover { transform: translateY(-4px); border-color: rgba(99, 102, 241, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.catalog-card-media { width: 100%; height: 280px; overflow: hidden; background: var(--bg-primary); border-bottom: 1px solid var(--border); }
.catalog-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.catalog-card-body { padding: 2.5rem 2rem; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.catalog-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.catalog-card-top h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-main); letter-spacing: -0.01em; }
.catalog-type-badge { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; color: #818cf8; background: rgba(99, 102, 241, 0.1); padding: 0.375rem 0.875rem; border-radius: 50px; border: 1px solid rgba(99, 102, 241, 0.2); }
.catalog-card-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; }
.catalog-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: auto; }
.catalog-status { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: #4ade80; }
.catalog-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; display: inline-block; }
.catalog-launch-btn { font-size: 0.9rem; font-weight: 600; color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s ease; }
.catalog-launch-btn:hover { color: #818cf8; text-decoration: underline; }
@media (max-width: 968px) { .catalog-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .catalog-main { padding: 8rem 1rem 4rem 1rem; } }
@media (max-width: 640px) { .catalog-card-media { height: 200px; } }