:root {
--bg-main: #0f1015;
--bg-card: #181a20;
--bg-card-hover: #22252e; --accent: #7b2cbf;
--accent-hover: #7b2cbf;
--accent-glow: rgba(157, 78, 221, 0.45);
--text-main: #ffffff;
--text-muted: #9aa0a6;
--border-color: rgba(255, 255, 255, 0.08);
--font-family: 'Exo 2', Helvetica, Arial, sans-serif;
--max-width: 1400px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg-main);
color: var(--text-main);
font-family: var(--font-family);
line-height: 1.5;
overflow-x: hidden;
}
@supports (font-display: swap) {
body {
font-display: swap;
}
}
a {
color: inherit;
text-decoration: none;
} .dp-container {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 20px;
} .dp-header {
background-color: #12141a;
border-bottom: 1px solid var(--border-color);
position: sticky;
top: 0;
z-index: 1000;
}
.dp-header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 70px;
}
.dp-logo a {
font-size: 1.5rem;
font-weight: 800;
color: var(--text-main);
text-transform: uppercase;
letter-spacing: 1px;
}
.dp-logo span {
color: var(--accent);
}
.dp-nav ul {
display: flex;
list-style: none;
gap: 20px;
}
.dp-nav a {
font-size: 0.95rem;
font-weight: 500;
color: var(--text-muted);
transition: color 0.2s;
}
.dp-nav a:hover {
color: var(--accent);
}
.dp-search-form {
display: flex;
align-items: center;
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 20px;
padding: 6px 14px;
}
.dp-search-form input {
background: transparent;
border: none;
outline: none;
color: var(--text-main);
font-size: 0.85rem;
width: 180px;
}
.dp-search-form button {
background: transparent;
border: none;
color: var(--text-muted);
cursor: pointer;
} .dp-section-header {
display: flex;
align-items: center;
justify-content: space-between;
margin: 30px 0 20px;
border-left: 4px solid var(--accent);
padding-left: 12px;
}
.dp-section-header h2 {
font-size: 1.3rem;
font-weight: 700;
} .auth-buttons {
display: flex;
align-items: center;
gap: 10px;
margin-left: 15px;
} .user-avatar {
display: flex;
align-items: center;
}
.user-avatar a {
display: inline-block;
line-height: 0;
border: 2px solid var(--accent, #9d4edd);
border-radius: 50%;
padding: 2px;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.user-avatar a:hover {
transform: scale(1.05);
box-shadow: 0 0 10px var(--accent-glow, rgba(157, 78, 221, 0.45));
}
.user-avatar img {
border-radius: 50%;
object-fit: cover;
display: block;
} .auth-buttons .login-btn,
.auth-buttons .signup-btn {
display: inline-flex;
align-items: center;
justify-content: center;
font-family: var(--font-family, sans-serif);
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
padding: 8px 16px;
border-radius: 6px;
text-decoration: none;
transition: all 0.2s ease;
white-space: nowrap;
} .auth-buttons .login-btn {
color: var(--text-main, #ffffff);
background-color: transparent;
border: 1px solid var(--border-color, rgba(255, 255, 255, 0.15));
}
.auth-buttons .login-btn:hover {
background-color: rgba(255, 255, 255, 0.08);
color: #ffffff;
} .auth-buttons .signup-btn {
color: #ffffff;
background-color: var(--accent, #9d4edd);
border: 1px solid var(--accent, #9d4edd);
box-shadow: 0 0 10px var(--accent-glow, rgba(157, 78, 221, 0.3));
}
.auth-buttons .signup-btn:hover {
background-color: var(--accent-hover, #7b2cbf);
border-color: var(--accent-hover, #7b2cbf);
} .dp-auth-modal {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.dp-auth-modal.is-active {
opacity: 1;
visibility: visible;
} .dp-auth-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(10, 10, 12, 0.88);
backdrop-filter: blur(8px);
} .dp-auth-modal-dialog {
position: relative;
z-index: 2;
width: 100%;
max-width: 440px;
background-color: #181a20;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 35px 30px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
transform: translateY(20px) scale(0.95);
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dp-auth-modal.is-active .dp-auth-modal-dialog {
transform: translateY(0) scale(1);
} .dp-auth-close {
position: absolute;
top: 15px;
right: 20px;
background: transparent;
border: none;
color: #9aa0a6;
font-size: 28px;
cursor: pointer;
line-height: 1;
transition: color 0.2s ease;
}
.dp-auth-close:hover {
color: #ffffff;
} .dp-auth-header {
text-align: center;
margin-bottom: 25px;
}
.dp-auth-header .dp-logo {
font-size: 1.4rem;
font-weight: 800;
margin-bottom: 20px;
} .dp-auth-tabs {
display: flex;
background-color: rgba(255, 255, 255, 0.04);
padding: 4px;
border-radius: 8px;
gap: 4px;
}
.dp-auth-tab-btn {
flex: 1;
padding: 10px;
background: transparent;
border: none;
color: #9aa0a6;
font-size: 14px;
font-weight: 700;
border-radius: 6px;
cursor: pointer;
transition: all 0.2s ease;
}
.dp-auth-tab-btn.active {
background-color: var(--accent, #9d4edd);
color: #ffffff;
box-shadow: 0 2px 8px rgba(157, 78, 221, 0.4);
} .dp-auth-tab-content {
display: none;
}
.dp-auth-tab-content.active {
display: block;
} .dp-auth-body .form-group {
margin-bottom: 16px;
}
.dp-auth-body label {
display: block;
font-size: 12px;
font-weight: 600;
color: #9aa0a6;
margin-bottom: 6px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.dp-auth-body input[type="text"],
.dp-auth-body input[type="email"],
.dp-auth-body input[type="password"] {
width: 100%;
padding: 12px 14px;
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: #ffffff;
font-size: 14px;
outline: none;
transition: border-color 0.2s ease;
}
.dp-auth-body input[type="text"]:focus,
.dp-auth-body input[type="email"]:focus,
.dp-auth-body input[type="password"]:focus {
border-color: var(--accent, #9d4edd);
}
.form-options {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 12px;
margin-bottom: 20px;
color: #9aa0a6;
}
.form-options label {
margin-bottom: 0;
text-transform: none;
cursor: pointer;
}
.forgot-password {
color: var(--accent, #9d4edd);
text-decoration: none;
}
.forgot-password:hover {
text-decoration: underline;
}
.form-note {
font-size: 12px;
color: #9aa0a6;
margin-bottom: 20px;
line-height: 1.4;
}
.dp-btn-submit {
width: 100%;
padding: 12px;
background-color: var(--accent, #9d4edd);
color: #ffffff;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.1s ease;
}
.dp-btn-submit:hover {
background-color: var(--accent-hover, #7b2cbf);
} body.modal-open {
overflow: hidden;
} .dp-video-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 20px;
}
.dp-video-card {
background-color: var(--bg-card);
border-radius: 8px;
overflow: hidden;
transition: transform 0.2s, box-shadow 0.2s;
position: relative;
}
.dp-video-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
background-color: var(--bg-card-hover);
}
.dp-thumbnail {
position: relative;
width: 100%;
aspect-ratio: 3 / 4; overflow: hidden;
}
.dp-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}
.dp-video-card:hover .dp-thumbnail img {
transform: scale(1.05);
}
.dp-badge-quality {
position: absolute;
top: 8px;
left: 8px;
background: var(--accent);
color: #fff;
font-size: 0.7rem;
font-weight: 700;
padding: 2px 6px;
border-radius: 4px;
text-transform: uppercase;
}
.dp-play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.8);
width: 45px;
height: 45px;
background: var(--accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: all 0.2s;
box-shadow: 0 0 15px var(--accent-glow);
}
.dp-video-card:hover .dp-play-icon {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
.dp-play-icon::after {
content: '';
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 7px 0 7px 12px;
border-color: transparent transparent transparent #ffffff;
margin-left: 3px;
}
.dp-card-info {
padding: 12px;
}
.dp-card-title {
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 6px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.dp-card-meta {
display: flex;
justify-content: space-between;
font-size: 0.75rem;
color: var(--text-muted);
} .dp-single-container {
display: flex;
flex-direction: column;
gap: 30px;
margin-top: 30px;
width: 100%;
}
.dp-main-content {
width: 100%;
}
.dp-player-wrapper {
position: relative;
width: 100%;
background: transparent;
border-radius: 8px;
} .player-layout {
display: flex !important;
flex-direction: row !important;
gap: 20px;
align-items: flex-start;
width: 100%;
margin-bottom: 20px;
} .player-sidebar {
width: 320px;
min-width: 320px;
background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255,255,255,.06);
backdrop-filter: blur(10px);
box-shadow: 0 10px 30px rgba(0,0,0,.25);
flex-shrink: 0;
}
.player-sidebar-header {
background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 75%, #000), #050505);
padding: 18px 20px;
border-bottom: 1px solid rgba(255,255,255,.06);
}
.player-sidebar-header h3 {
margin: 0;
color: #fff;
font-size: 0.95rem;
font-weight: 800;
letter-spacing: .5px;
text-transform: uppercase;
display: flex;
align-items: center;
gap: 8px;
}
.player-sidebar-list {
display: flex;
flex-direction: column;
gap: 10px;
padding: 14px;
max-height: 480px;
overflow-y: auto;
}
.player-sidebar-list::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.player-sidebar-list::-webkit-scrollbar-thumb {
background: var(--accent);
border-radius: 999px;
}
.player-sidebar-list a {
display: flex;
align-items: center;
gap: 14px;
padding: 14px;
border-radius: 16px;
background: rgba(255,255,255,.025);
text-decoration: none;
transition: .25s ease;
color: #fff;
position: relative;
border: 1px solid rgba(255,255,255,.04);
}
.player-sidebar-list a:hover {
transform: translateY(-2px);
background: rgba(255,255,255,.055);
}
.player-sidebar-list a.active {
background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 82%, #000), #080808);
border-color: rgba(255,255,255,.08);
box-shadow: 0 0 20px rgba(0,0,0,.35), 0 10px 25px rgba(0,0,0,.28);
}
.ep-info {
display: flex;
flex-direction: column;
gap: 4px;
min-width: 0;
}
.watching-label {
display: none;
font-size: .63rem;
color: #fff;
opacity: .9;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .4px;
}
.player-sidebar-list a.active .watching-label {
display: block;
}
.ep-title {
font-size: .95rem;
color: #fff;
line-height: 1.45;
word-break: break-word;
text-transform: uppercase;
font-weight: 700;
} .player-area {
flex: 1;
min-width: 0;
}
.player.tab-content {
display: none;
}
.player.tab-content.active {
display: block;
animation: fadePlayer .2s ease;
}
@keyframes fadePlayer {
from { opacity: 0; transform: translateY(5px); }
to { opacity: 1; transform: translateY(0); }
}
.player-area iframe, 
.player-area .jwplayer {
width: 100% !important;
aspect-ratio: 16/9;
min-height: 350px;
border: 0;
border-radius: 16px;
background: #000;
} .selo-single {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 18px;
flex-wrap: wrap;
}
.selo-hd {
background: var(--accent);
color: #fff;
padding: 5px 10px;
border-radius: 10px;
font-size: .9rem;
font-weight: 700;
}
#current-episode {
border: 1px solid rgba(255, 255, 255, .05);
color: #09090b;
padding: 7px 14px;
border-radius: 12px;
font-size: .83rem;
font-weight: 700;
backdrop-filter: blur(10px);
background: #fff;
} .dp-video-details {
background: var(--bg-card);
padding: 20px;
border-radius: 12px;
margin-top: 20px;
}
.dp-video-details h1 {
font-size: 1.6rem;
margin-bottom: 10px;
}
.dp-meta-bar {
display: flex !important;
align-items: center !important;
flex-wrap: wrap !important;
gap: 15px !important;
font-size: 0.85rem;
color: var(--text-muted);
margin-bottom: 15px;
border-bottom: 1px solid var(--border-color);
padding-bottom: 15px;
}
.dp-video-description {
font-size: 0.95rem;
color: #ccc;
line-height: 1.6;
} .dp-video-rating {
margin-top: 20px;
padding: 14px 18px;
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--border-color);
border-radius: 10px;
display: inline-flex;
align-items: center;
gap: 12px;
}
.dp-video-rating .starstruck-wrap {
display: flex;
align-items: center;
gap: 12px;
}
.dp-video-rating .starstruck-stars,
.dp-video-rating .starstruck-main {
color: #ffc107;
font-size: 1.25rem;
cursor: pointer;
}
.dp-video-rating .starstruck-stars .star-item {
color: #444;
transition: color 0.15s ease;
margin-right: 2px;
}
.dp-video-rating .starstruck-stars .star-item.on {
color: #ffc107;
}
.dp-video-rating .starstruck-data {
color: var(--text-muted);
font-size: 0.9rem;
}
.dp-video-rating .starstruck-data .rating-value,
.dp-video-rating .starstruck-data strong {
color: #ffffff;
font-size: 1rem;
} .dp-sidebar {
width: 100%;
margin-top: 25px;
border-top: 1px solid var(--border-color);
padding-top: 25px;
}
.dp-sidebar .dp-video-grid {
display: grid !important;
grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)) !important;
gap: 20px !important;
padding: 0;
}
.dp-sidebar .dp-video-card {
display: flex !important;
flex-direction: column !important;
height: 100% !important;
background-color: var(--bg-card);
border-radius: 10px !important;
overflow: hidden !important;
border: 1px solid var(--border-color);
position: relative !important;
transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.dp-sidebar .dp-video-card:hover {
transform: translateY(-5px) !important;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5) !important;
background-color: var(--bg-card-hover) !important;
}
.dp-sidebar .dp-video-card .dp-card-link {
display: block !important;
width: 100% !important;
position: relative !important;
}
.dp-sidebar .dp-video-card .dp-thumbnail {
width: 100% !important;
aspect-ratio: 2 / 3 !important;
position: relative !important;
overflow: hidden !important;
margin: 0 !important;
}
.dp-sidebar .dp-video-card .dp-thumbnail img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
display: block !important;
transition: transform 0.3s ease !important;
}
.dp-sidebar .dp-video-card:hover .dp-thumbnail img {
transform: scale(1.05) !important;
}
.dp-sidebar .dp-video-card .dp-card-info {
padding: 12px !important;
display: flex !important;
flex-direction: column !important;
justify-content: space-between !important;
flex-grow: 1 !important;
position: relative !important;
z-index: 2 !important;
background: var(--bg-card) !important;
}
.dp-sidebar .dp-video-card .dp-card-title {
font-size: 0.95rem !important;
font-weight: 700 !important;
line-height: 1.35 !important;
margin-bottom: 6px !important;
white-space: normal !important;
display: -webkit-box !important;
-webkit-line-clamp: 2 !important;
-webkit-box-orient: vertical !important;
overflow: hidden !important;
}
.dp-sidebar .dp-video-card .dp-card-title a {
color: #ffffff !important;
transition: color 0.2s ease;
}
.dp-sidebar .dp-video-card .dp-card-title a:hover {
color: var(--accent) !important;
}
.dp-sidebar .dp-video-card .dp-card-meta {
font-size: 0.8rem !important;
color: var(--text-muted) !important;
}  .dp-footer {
background-color: #14151d; color: #8c93a8;
padding: 30px 0 20px 0;
font-size: 13px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
margin-top: 40px;
}
.dp-footer .dp-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 15px;
} .dp-footer-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-bottom: 25px;
}
.dp-footer-tags a {
background: #181a20; color: #8c93a8;
border: 1px solid rgba(255, 255, 255, 0.08);
text-decoration: none;
padding: 6px 12px;
border-radius: 4px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
transition: all 0.2s ease;
}
.dp-footer-tags a:hover {
background: #232630;
color: #ffffff;
border-color: rgba(255, 255, 255, 0.2);
} .dp-footer-divider {
border: 0;
height: 1px;
background: rgba(255, 255, 255, 0.08);
margin: 20px 0;
} .dp-footer-bottom {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}
.dp-footer-logo img {
max-height: 40px;
width: auto;
display: block;
}
.dp-footer-info {
display: flex;
flex-direction: column;
gap: 8px;
}
.dp-footer-copy {
margin: 0;
color: #6b7280;
font-size: 12px;
line-height: 1.4;
} .dp-footer-nav {
display: flex;
flex-wrap: wrap;
gap: 14px;
}
.dp-footer-nav a {
color: var(--accent); text-decoration: none;
font-weight: 600;
font-size: 12px;
text-transform: uppercase;
transition: opacity 0.2s ease;
}
.dp-footer-nav a:hover {
opacity: 0.8;
text-decoration: underline;
} @media (max-width: 768px) {
.dp-footer-bottom {
flex-direction: column;
align-items: flex-start;
}
} .dp-pagination-container {
margin-top: 50px;
display: flex;
width: 100%;
}
.dp-pagination-container .navigation.pagination {
display: inline-block;
}
.dp-pagination-container .screen-reader-text {
display: none;
}
.dp-pagination-container .nav-links {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
justify-content: center;
}
.dp-pagination-container .page-numbers {
display: flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 14px;
background-color: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 8px;
color: var(--text-main);
font-size: 0.9rem;
font-weight: 600;
transition: all 0.2s ease;
text-decoration: none;
}
.dp-pagination-container .page-numbers:hover {
background-color: var(--bg-card-hover);
border-color: var(--accent);
color: var(--accent);
transform: translateY(-2px);
}
.dp-pagination-container .page-numbers.current {
background-color: var(--accent);
border-color: var(--accent);
color: #ffffff;
box-shadow: 0 4px 12px var(--accent-glow);
}
.dp-pagination-container .page-numbers.dots {
background-color: transparent;
border: none;
color: var(--text-muted);
cursor: default;
}
.dp-pagination-container .page-numbers.dots:hover {
transform: none;
background-color: transparent;
border: none;
color: var(--text-muted);
} .dp-tags-list {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 15px;
margin-bottom: 15px;
}
.dp-tag-item {
display: inline-flex;
align-items: center;
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-color);
color: var(--text-muted);
font-size: 0.75rem;
font-weight: 600;
padding: 3px 10px;
border-radius: 12px;
text-decoration: none;
line-height: 1;
transition: all 0.2s ease;
}
.dp-tag-hash {
color: var(--accent);
margin-right: 2px;
font-weight: 700;
}
.dp-tag-item:hover {
background-color: var(--accent);
border-color: var(--accent);
color: #ffffff;
transform: translateY(-1px);
}
.dp-tag-item:hover .dp-tag-hash {
color: #ffffff;
}
.meta-seo-badge {
font-size: 0.85rem;
color: var(--text-muted);
display: flex;
align-items: center;
gap: 6px;
}
.meta-seo-badge .dot {
width: 8px;
height: 8px;
background-color: #00e676;
border-radius: 50%;
display: inline-block;
}  @media (max-width: 991px) {
.player-layout {
flex-direction: column !important;
}
.player-area {
width: 100%;
order: 1;
}
.player-sidebar {
width: 100%;
min-width: 100%;
order: 2;
}
.player-sidebar-list {
flex-direction: row;
overflow-x: auto;
max-height: none;
white-space: nowrap;
padding-bottom: 10px;
}
.player-sidebar-list a {
min-width: 160px;
flex-shrink: 0;
}
} @media (max-width: 768px) {
.dp-container {
padding: 0 12px;
}
.dp-header-inner {
flex-direction: column;
gap: 12px;
height: auto;
padding: 12px 0;
}
.dp-search-form {
width: 100%;
}
.dp-search-form input {
width: 100%;
} .dp-video-grid {
grid-template-columns: repeat(2, 1fr) !important;
gap: 10px !important;
} .dp-sidebar .dp-video-grid {
grid-template-columns: repeat(2, 1fr) !important;
gap: 10px !important;
}
.dp-card-info {
padding: 8px;
}
.dp-card-title {
font-size: 0.8rem;
}
.dp-card-meta {
font-size: 0.7rem;
}
.player-area iframe, 
.player-area .jwplayer {
min-height: 210px;
border-radius: 10px;
}
.dp-video-details {
padding: 15px;
}
.dp-video-details h1 {
font-size: 1.2rem;
}
.dp-meta-bar {
gap: 10px !important;
font-size: 0.75rem;
}
} @media (max-width: 480px) {
.dp-section-header h2 {
font-size: 1.1rem;
}
.dp-play-icon {
width: 36px;
height: 36px;
}
.dp-play-icon::after {
border-width: 5px 0 5px 9px;
}
} .dp-logo a {
font-size: 1.4rem;
font-weight: 900;
letter-spacing: -0.5px;
color: #ffffff;
display: flex;
align-items: center;
gap: 6px;
text-transform: uppercase;
}
.dp-logo .badge-hentai {
background: var(--accent);
color: #ffffff;
padding: 2px 8px;
border-radius: 6px;
font-size: 1.1rem;
box-shadow: 0 0 12px var(--accent-glow);
} .avatar-login-btn {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--accent, #9d4edd);
width: 42px;
height: 42px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
}
.avatar-login-btn:hover {
background: var(--accent, #9d4edd);
color: #ffffff;
box-shadow: 0 0 12px rgba(157, 78, 221, 0.5);
transform: scale(1.05);
} .dp-actions-bar {
display: flex;
align-items: center;
gap: 12px;
margin: 16px 0 24px 0;
flex-wrap: wrap;
} .hq-action-btn, 
.hq-favorite-wrap button, 
.hq-favorite-wrap a {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
background-color: #1a1d24;
color: #e1e1e6;
border: 1px solid #2d313d;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.25s ease;
text-decoration: none;
outline: none;
} .hq-action-btn i, 
.hq-favorite-wrap i {
font-size: 1.1rem;
color: #a8b3cf;
transition: color 0.25s ease;
} .hq-action-btn:hover, 
.hq-favorite-wrap button:hover, 
.hq-favorite-wrap a:hover {
background-color: #252934;
border-color: #3f4454;
color: #ffffff;
transform: translateY(-2px);
}
.hq-action-btn:hover i, 
.hq-favorite-wrap button:hover i, 
.hq-favorite-wrap a:hover i {
color: #ff3e3e; } .hq-favorite-wrap .favorited,
.hq-favorite-wrap .active {
background-color: rgba(255, 62, 62, 0.15);
border-color: #ff3e3e;
color: #ff3e3e;
}
.hq-favorite-wrap .favorited i,
.hq-favorite-wrap .active i {
color: #ff3e3e;
} @media (max-width: 576px) {
.dp-actions-bar {
gap: 8px;
}
.hq-action-btn, 
.hq-favorite-wrap,
.hq-favorite-wrap button, 
.hq-favorite-wrap a {
flex: 1;
text-align: center;
padding: 10px 12px;
font-size: 0.825rem;
}
} .hq-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(5px);
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.hq-modal.active {
opacity: 1;
visibility: visible;
}
.hq-modal-box {
background: #14161d;
border: 1px solid #282c37;
border-radius: 12px;
width: 90%;
max-width: 480px;
padding: 24px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
transform: translateY(-20px);
transition: transform 0.3s ease;
}
.hq-modal.active .hq-modal-box {
transform: translateY(0);
}
.hq-modal-head {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
border-bottom: 1px solid #232733;
padding-bottom: 12px;
}
.hq-modal-head h2 {
font-size: 1.15rem;
font-weight: 700;
color: #fff;
margin: 0;
}
.hq-modal-close {
background: transparent;
border: none;
color: #8c93a6;
font-size: 1.4rem;
cursor: pointer;
transition: color 0.2s;
}
.hq-modal-close:hover {
color: #ff3e3e;
} .hq-share-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
margin-bottom: 20px;
}
.hq-share-link {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 12px;
border-radius: 8px;
background: #1d212c;
color: #fff;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.2s;
}
.hq-share-link:hover {
filter: brightness(1.2);
transform: translateY(-2px);
}
.hq-copy-wrap {
display: flex;
background: #0d0e12;
border: 1px solid #282c37;
border-radius: 8px;
overflow: hidden;
}
.hq-copy-wrap input {
width: 100%;
background: transparent;
border: none;
padding: 10px 14px;
color: #8c93a6;
font-size: 0.85rem;
outline: none;
}
.hq-copy-wrap button {
background: #232733;
border: none;
color: #fff;
padding: 0 16px;
cursor: pointer;
transition: background 0.2s;
}
.hq-copy-wrap button:hover {
background: #2d3343;
} .hq-report-label {
display: block;
color: #a8b3cf;
font-size: 0.85rem;
margin-bottom: 10px;
}
.hq-report-options {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin-bottom: 16px;
}
.hq-report-item {
background: #1d212c;
border: 1px solid #282c37;
padding: 10px 12px;
border-radius: 6px;
color: #c2c9db;
font-size: 0.825rem;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.2s;
}
.hq-report-item:hover, .hq-report-item.active {
border-color: #ff3e3e;
background: rgba(255, 62, 62, 0.1);
color: #ff3e3e;
}
.hq-report-textarea, .hq-report-input {
width: 100%;
background: #0d0e12;
border: 1px solid #282c37;
border-radius: 8px;
padding: 12px;
color: #fff;
font-size: 0.875rem;
margin-bottom: 12px;
outline: none;
box-sizing: border-box;
}
.hq-report-textarea {
min-height: 90px;
resize: vertical;
}
.hq-report-input {
color: #616879;
}
.hq-report-submit {
width: 100%;
background: #ff3e3e;
color: #fff;
border: none;
padding: 12px;
border-radius: 8px;
font-weight: 700;
cursor: pointer;
transition: background 0.2s;
}
.hq-report-submit:hover {
background: #e03232;
}
.breadcrumbs {
background: var(--bg-card);
padding: 20px;
border-radius: 12px;
margin-top: 20px;
} .top-views-header {
margin-bottom: 25px;
}
.top-views-title {
font-size: 1.8rem;
font-weight: 700;
color: #fff;
margin-bottom: 20px;
} .top-views-bar {
display: flex;
justify-content: space-between;
align-items: center;
gap: 15px;
flex-wrap: wrap;
background: #181a20;
padding: 12px 16px;
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.08);
margin-bottom: 25px;
}
.top-views-tabs {
display: flex;
gap: 10px;
}
.top-tab-btn {
background: #232630;
color: #8c93a8;
border: 1px solid rgba(255, 255, 255, 0.08);
padding: 8px 16px;
border-radius: 6px;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.top-tab-btn:hover,
.top-tab-btn.active {
background: #e50914; color: #fff;
border-color: #e50914;
} .top-views-search {
display: flex;
gap: 8px;
}
.top-views-search input {
background: #14151d;
border: 1px solid rgba(255, 255, 255, 0.1);
color: #fff;
padding: 8px 12px;
border-radius: 6px;
font-size: 0.85rem;
outline: none;
}
.top-views-search button {
background: #232630;
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 8px 14px;
border-radius: 6px;
cursor: pointer;
font-size: 0.85rem;
transition: background 0.2s;
}
.top-views-search button:hover {
background: #e50914;
} #top-views-results {
min-height: 300px;
position: relative;
}
.top-views-loading {
text-align: center;
padding: 40px;
color: #8c93a8;
font-size: 1.1rem;
} .top-views-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
gap: 15px;
} .top-views-pagination {
display: flex;
gap: 6px;
margin-top: 35px;
margin-bottom: 20px;
}
.top-views-pagination .page-numbers {
background: #181a20;
color: #8c93a8;
border: 1px solid rgba(255, 255, 255, 0.08);
padding: 8px 14px;
border-radius: 6px;
text-decoration: none;
font-size: 0.9rem;
font-weight: 600;
transition: all 0.2s;
cursor: pointer;
}
.top-views-pagination .page-numbers.current,
.top-views-pagination .page-numbers:hover {
background: #e50914;
color: #fff;
border-color: #e50914;
}