.ct-section-title { font-size: 1.3rem; font-weight: 700; color: #fff; margin: 30px 0 15px; padding-bottom: 8px; border-bottom: 3px solid var(--ct-accent); display: inline-block; }
.ct-section-title:first-of-type { margin-top: 15px; }

.ct-movie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; margin-bottom: 35px; }
.ct-movie-card { background: var(--ct-card); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.4); transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.ct-movie-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.6); }
.ct-movie-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; transition: transform 0.3s ease; }
.ct-movie-info { padding: 10px; }
.ct-movie-title { font-size: 0.85rem; font-weight: 600; color: #eee; line-height: 1.3; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ct-movie-year { font-size: 0.75rem; color: #777; }
.ct-no-cover { width: 100%; aspect-ratio: 2/3; background: var(--ct-dark); display: flex; align-items: center; justify-content: center; color: var(--ct-light); font-size: 14px; }

.ct-layout { display: grid; grid-template-columns: 1fr 300px; gap: 30px; }
@media (max-width: 900px) { .ct-layout { grid-template-columns: 1fr; } }

.ct-sidebar-box { background: var(--ct-card); border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.4); padding: 18px; margin-bottom: 20px; }
.ct-sidebar-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--ct-accent); }

.ct-tabs { display: flex; gap: 4px; margin-bottom: 12px; }
.ct-tab { flex: 1; padding: 7px 4px; background: var(--ct-dark); color: #aaa; border: none; border-radius: 4px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: background 0.2s, color 0.2s; }
.ct-tab:hover { color: #fff; }
.ct-tab.is-active { background: var(--ct-accent); color: #fff; }

.ct-tab-panel { display: none; }
.ct-tab-panel.is-active { display: block; }

.ct-ranking-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--ct-border); text-decoration: none; color: inherit; transition: background 0.2s; }
.ct-ranking-item:hover { background: rgba(255,255,255,0.05); }
.ct-ranking-item:last-child { border-bottom: none; }
.ct-ranking-pos { font-size: 1.1rem; font-weight: 700; color: var(--ct-accent); width: 24px; text-align: center; }
.ct-ranking-info { flex: 1; }
.ct-ranking-name { font-size: 0.85rem; font-weight: 600; color: #ccc; }
.ct-ranking-score { font-size: 0.8rem; color: var(--ct-gold); font-weight: 700; }
.ct-ranking-empty { font-size: 0.85rem; color: #777; padding: 8px 0; margin: 0; }
