font-size: 13px; color: #888; margin: 0; } /* Action Row */ .action-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 10px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; } .meta-left { display: flex; align-items: center; gap: 16px; font-size: 13px; color: #999; } .meta-left span { display: flex; align-items: center; gap: 4px; } .actions-right { display: flex; align-items: center; gap: 6px; } .act-btn { display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; border: none; cursor: pointer; transition: background 0.15s, color 0.15s; text-decoration: none; font-family: inherit; } .act-btn.like { background: #1a3a1a; color: #4caf50; } .act-btn.like:hover { background: #2a5a2a; } .act-btn.dislike { background: #3a1a1a; color: #f44336; } .act-btn.dislike:hover { background: #5a2a2a; } .act-btn.share { background: #1a1a2a; color: #90caf9; } .act-btn.share:hover { background: #2a2a4a; } .act-btn.api { background: #2a1a2a; color: #ce93d8; } .act-btn.api:hover { background: #3a2a3a; } /* Tags */ .tags-wrap { padding: 12px 0; display: flex; flex-wrap: wrap; gap: 6px; } .tag-pill { display: inline-block; padding: 4px 12px; background: #1a1a1a; color: #aaa; border-radius: 14px; font-size: 12px; text-decoration: none; transition: background 0.15s, color 0.15s; border: 1px solid #2a2a2a; } .tag-pill:hover { background: #2a2a2a; color: #fff; border-color: #444; } /* Description */ .desc-box { padding: 14px 0; border-top: 1px solid #1a1a1a; } .desc-box .desc-text { font-size: 14px; line-height: 1.7; color: #999; max-height: 80px; overflow: hidden; transition: max-height 0.3s ease; } .desc-box .desc-text.expanded { max-height: 2000px; } .desc-toggle { color: #90caf9; font-size: 13px; cursor: pointer; margin-top: 6px; display: inline-block; border: none; background: none; padding: 0; font-family: inherit; } .desc-toggle:hover { text-decoration: underline; } /* Info Panel */ .info-panel { background: #111; border-radius: 8px; padding: 16px; margin-top: 16px; } .info-panel h3 { font-size: 14px; font-weight: 600; color: #fff; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid #222; } .info-row { display: flex; padding: 6px 0; font-size: 13px; border-bottom: 1px solid #1a1a1a; } .info-row:last-child { border-bottom: none; } .info-label { width: 110px; flex-shrink: 0; color: #666; } .info-value { color: #ccc; flex: 1; } .info-value a { color: #90caf9; text-decoration: none; } .info-value a:hover { color: #fff; text-decoration: underline; } /* Sidebar */ .sidebar { } .sidebar-title { font-size: 15px; font-weight: 600; color: #fff; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid #222; } /* Related Videos */ .related-list { display: flex; flex-direction: column; gap: 12px; } .rel-card { display: flex; gap: 10px; text-decoration: none; border-radius: 6px; transition: background 0.15s; padding: 4px; } .rel-card:hover { background: #1a1a1a; } .rel-thumb { width: 168px; height: 94px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: #111; } .rel-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; } .rel-thumb img[src*="logo.png"] { object-fit: contain; background: #1a1a1a; padding: 15%; } .rel-info { flex: 1; min-width: 0; padding: 2px 0; } .rel-title { font-size: 13px; font-weight: 500; color: #e0e0e0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0 0 6px; } .rel-meta { font-size: 12px; color: #777; } /* Related Grid (below player on mobile) */ .related-grid-bottom { display: none; } @media (max-width: 1024px) { .sidebar .related-list { display: none; } .related-grid-bottom { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-top: 24px; } .grid-card { text-decoration: none; border-radius: 8px; overflow: hidden; background: #111; transition: transform 0.15s; } .grid-card:hover { transform: translateY(-2px); } .grid-card-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #0a0a0a; } .grid-card-thumb[src*="logo.png"] { object-fit: contain; background: #1a1a1a; padding: 15%; } .grid-card-info { padding: 8px 10px 10px; } .grid-card-title { font-size: 13px; font-weight: 500; color: #e0e0e0; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0 0 4px; } .grid-card-meta { font-size: 11px; color: #777; } } @media (min-width: 1025px) { .related-grid-bottom { display: none !important; } } /* Breadcrumb */ .breadcrumb { padding: 12px 0 0; font-size: 12px; color: #666; } .breadcrumb a { color: #888; text-decoration: none; } .breadcrumb a:hover { color: #ccc; } .breadcrumb .sep { margin: 0 6px; color: #444; }