/* ============================================
   KVS CUSTOM THEME - DARK MODERN OVERRIDE
   Premium dark theme with brand colors
   Loads after all-responsive-white.css
   ============================================ */

/* ============================================
   CSS VARIABLES & ROOT OVERRIDES
   ============================================ */

:root {
  --primary-pink: #ff4f8b;
  --accent-purple: #7b5cff;
  --bg-dark: #0b0f14;
  --bg-card: #141920;
  --bg-hover: #1a1f28;
  --text-primary: #e7eef7;
  --text-muted: #9aa4b2;
  --border-color: #1f2833;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL BASE STYLES
   ============================================ */

html {
  background: var(--bg-dark) !important;
}

body {
  background: var(--bg-dark) !important;
  color: var(--text-primary) !important;
  font-family: "Roboto", Helvetica, sans-serif;
}

a {
  color: var(--text-primary) !important;
  transition: var(--transition) !important;
}

.no-touch a:hover {
  color: var(--primary-pink) !important;
}

p.text {
  color: var(--text-primary) !important;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  background: var(--bg-dark) !important;
  background-image: none !important;
}

.content {
  background: transparent;
}

.main-content {
  background: transparent;
}

/* ============================================
   TOP LINKS BAR
   ============================================ */

.top-links {
  background: var(--bg-card) !important;
  border-bottom: 2px solid var(--primary-pink) !important;
  padding: 8px 20px;
}

.top-links a {
  color: var(--text-muted) !important;
}

.network a {
  color: var(--text-muted) !important;
}

.network a::before {
  background-color: var(--primary-pink) !important;
}

.network a:hover {
  color: var(--primary-pink) !important;
}

.member-links a {
  color: var(--text-primary) !important;
  background-color: transparent !important;
}

.no-touch .member-links a:hover {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.member-links .languages {
  background: var(--bg-hover) !important;
  color: var(--text-primary) !important;
}

.member-links .languages:hover {
  background-color: var(--primary-pink) !important;
}

.member-links .languages a {
  background-color: var(--bg-card) !important;
  color: var(--text-primary) !important;
}

.member-links .languages a:hover {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.logo img {
  filter: brightness(1.1);
}

/* ============================================
   SEARCH BAR
   ============================================ */

.search form {
  box-shadow: var(--shadow-sm) !important;
  border-radius: var(--radius-lg) !important;
}

.search .search-text input {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.search-text input::-webkit-input-placeholder,
.search-text input:-ms-input-placeholder,
.search-text input::-ms-input-placeholder,
.search-text input::placeholder {
  color: var(--text-muted) !important;
}

.search .search-button {
  background: var(--primary-pink) url("../images/search.svg") center no-repeat !important;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.no-touch .search .search-button:hover {
  background-color: var(--accent-purple) !important;
}

/* ============================================
   NAVIGATION MENU
   ============================================ */

.header + nav {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  border-left: 0 !important;
  border-right: 0 !important;
  box-shadow: var(--shadow-sm);
}

.navigation .primary a {
  color: var(--text-primary) !important;
}

.navigation .primary a:before {
  background-color: var(--primary-pink) !important;
}

.no-touch .navigation .primary a:hover {
  color: var(--primary-pink) !important;
}

.navigation .primary .selected a {
  color: var(--primary-pink) !important;
}

.navigation .primary .drop > a {
  background-color: var(--bg-hover) !important;
  border-radius: var(--radius-lg);
}

.navigation .primary .drop:hover > a {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.navigation .primary ul {
  background-color: var(--bg-card) !important;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.navigation .primary ul li a {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
}

.no-touch .navigation .primary ul li a:hover {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.navigation .secondary a {
  color: var(--text-primary) !important;
}

.navigation .secondary a:before {
  background-color: var(--primary-pink) !important;
}

.no-touch .navigation .secondary a:hover {
  color: var(--primary-pink) !important;
}

.navigation .button .ico-bar {
  background: var(--text-primary) !important;
}

.navigation.open .button .ico-bar {
  background: var(--primary-pink) !important;
}

/* ============================================
   FORMS
   ============================================ */

form .section-title {
  color: var(--text-primary) !important;
}

form .section-title.expand:hover,
form .section-title.collapse:hover {
  color: var(--primary-pink) !important;
}

form label {
  color: var(--text-primary) !important;
}

form .bottom label {
  color: var(--text-muted) !important;
}

form .bottom label.field-label {
  color: var(--text-primary) !important;
}

form .textfield,
form .textarea,
form .selectbox {
  background: var(--bg-hover) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-md);
}

form .textfield:focus,
form .textarea:focus,
form .selectbox:focus {
  border-color: var(--primary-pink) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 79, 139, 0.1);
}

form .textfield.error,
form .textarea.error,
form .selectbox.error {
  border: 2px solid #f30702 !important;
}

form .selectbox {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0,0,51,32' width='10' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23e7eef7' d='M0 4.544c-0 0.005-0 0.011-0 0.017 0 1.277 0.486 2.44 1.284 3.315l-0.004-0.004 21.248 22.784c0.767 0.827 1.859 1.343 3.072 1.343s2.305-0.516 3.070-1.34l0.002-0.003 21.248-22.784c0.803-0.873 1.296-2.043 1.296-3.328s-0.492-2.455-1.299-3.332l0.003 0.004c-0.773-0.861-1.89-1.401-3.133-1.401-1.212 0-2.305 0.513-3.073 1.334l-0.002 0.002-18.112 19.456-18.112-19.456c-0.77-0.823-1.862-1.337-3.075-1.337-1.243 0-2.36 0.539-3.13 1.397l-0.003 0.004c-0.794 0.871-1.28 2.034-1.28 3.311 0 0.006 0 0.012 0 0.018v-0.001z'%3E%3C/path%3E%3C/svg%3E"), linear-gradient(to bottom, var(--bg-hover) 0%, var(--bg-hover) 100%) !important;
}

form .checkbox + label::before,
form .checkbox + span::before {
  border: 1px solid var(--border-color) !important;
  background-color: var(--bg-hover) !important;
}

form .checkbox:checked + label::before,
form .checkbox:checked + span::before {
  background-color: var(--primary-pink) !important;
  border: 1px solid var(--primary-pink) !important;
}

form .radio + span::before,
form .radio + label::before {
  border: 2px solid var(--border-color) !important;
  background-color: var(--bg-hover) !important;
}

form .radio:checked + span::before,
form .radio:checked + label::before {
  background-color: var(--primary-pink) !important;
  border: 5px solid var(--bg-hover) !important;
}

form .submit {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.no-touch form .submit:hover {
  background-color: var(--accent-purple) !important;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

form .submit.active {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

form .submit:disabled {
  background-color: var(--bg-hover) !important;
  color: var(--text-muted) !important;
  opacity: 0.5;
}

form .file-control .button {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-md);
}

form .file-control .button.disabled {
  background: var(--bg-card) !important;
  color: var(--text-muted) !important;
}

form .list-selector-popup {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid var(--border-color);
}

form .list-selector-popup:after {
  background-color: var(--bg-card) !important;
}

form .list-selector-popup .button-group .group-title {
  background: var(--bg-hover) !important;
  color: var(--text-primary);
}

form .list-selector-popup .button-group .item label {
  color: var(--text-primary) !important;
}

form .list-selector-popup .filter {
  background: var(--bg-hover) !important;
}

form .list-selector-popup .filter input {
  background-color: var(--bg-card) !important;
  color: var(--text-primary) !important;
}

form .bottom a {
  color: var(--text-primary) !important;
}

.no-touch form .bottom a:hover {
  color: var(--primary-pink) !important;
}

form .success {
  background: var(--primary-pink) !important;
  color: #fff !important;
  border-radius: var(--radius-md);
}

form .generic-error {
  color: #f30702 !important;
  border: 2px solid #f30702 !important;
  background: rgba(243, 7, 2, 0.1);
  border-radius: var(--radius-sm);
}

form .info-message {
  background: var(--bg-hover) !important;
  color: var(--text-primary);
  border-radius: var(--radius-md);
}

form .info-message:before {
  background-color: var(--bg-hover) !important;
}

form .field-error {
  color: #f30702 !important;
}

form .smileys-support .smileys-bar {
  background: var(--bg-hover) !important;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

form .progressbar {
  border: 0.2rem solid var(--primary-pink) !important;
  background: var(--bg-card) !important;
}

form .progressbar .progress {
  background: var(--primary-pink) !important;
}

/* ============================================
   TOGGLE BUTTONS
   ============================================ */

.toggle-button {
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color) !important;
  background-color: var(--bg-hover) !important;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.toggle-button.active {
  color: #fff !important;
  background-color: var(--primary-pink) !important;
  border-color: var(--primary-pink) !important;
}

.toggle-button.inversed {
  border: 1px solid var(--border-color) !important;
  background: var(--bg-card) !important;
}

.toggle-button.inversed.active {
  color: #fff !important;
  border: 1px solid var(--primary-pink) !important;
  background-color: var(--primary-pink) !important;
}

.toggle-button.inversed.active input::before {
  border: 5px solid #fff !important;
  background-color: var(--primary-pink) !important;
}

/* ============================================
   HEADLINES & SORTING
   ============================================ */

.headline {
  color: var(--text-primary);
}

h1, h2 {
  color: var(--text-primary) !important;
}

h1 a, h2 a {
  color: var(--text-primary) !important;
}

.sort {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.sort:focus,
.sort:hover {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.sort ul {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.sort ul a {
  color: var(--text-primary) !important;
}

.no-touch .sort ul a:hover {
  color: #fff !important;
  background: var(--primary-pink) !important;
}

.headline .button,
.headline .more {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.no-touch .headline .more:hover,
.no-touch .headline .button:hover {
  background-color: var(--accent-purple) !important;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.headline .button-info {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

/* ============================================
   LISTS & ITEMS (VIDEOS, ALBUMS, ETC.)
   ============================================ */

.list-videos .item,
.list-albums .item,
.list-playlists .item,
.list-members .item,
.list-models .item,
.list-sponsors .item,
.list-channels .item,
.list-categories .item {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-sm) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.no-touch .list-videos .item:hover,
.no-touch .list-albums .item:hover,
.no-touch .list-playlists .item:hover {
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-2px);
  border-color: var(--primary-pink);
}

.item .img {
  background-color: var(--bg-hover) !important;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.item .title {
  color: var(--text-primary) !important;
}

.no-touch .item:hover .title {
  color: var(--primary-pink) !important;
}

.item .wrap {
  color: var(--text-muted) !important;
}

.item .wrap div {
  color: var(--text-muted) !important;
}

.item .positive {
  color: var(--primary-pink) !important;
}

.item .negative {
  color: #f30702 !important;
}

.item .is_hd {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.item .ico-fav-0,
.item .ico-fav-1 {
  background-color: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.no-touch .item .ico-fav-0:hover,
.no-touch .item .ico-fav-1:hover {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.item .touch-preview {
  background-color: var(--bg-card) !important;
  color: var(--text-primary) !important;
}

.item.disabled .img {
  background-color: var(--bg-hover) !important;
}

.item.disabled .title,
.item.processing .title {
  color: var(--primary-pink) !important;
}

.item.error .title {
  color: #f30702 !important;
}

.item-control {
  border-top: 1px solid var(--border-color) !important;
  background: var(--bg-hover);
}

.item-control .toggle-button {
  background-color: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.item-control .toggle-button.active,
.no-touch .item-control .toggle-button:hover {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.no-touch .item-control .toggle-button[data-action="delete"]:hover {
  background-color: #f30702 !important;
  color: #fff !important;
}

.item-control .toggle-button[data-action="select"]:after {
  border: 1px solid var(--border-color) !important;
  background-color: var(--bg-hover) !important;
}

.item-control .toggle-button[data-action="select"].active::after {
  background-color: var(--primary-pink) !important;
  border: 1px solid var(--primary-pink) !important;
}

.line-disabled,
.line-processing {
  background: var(--primary-pink) !important;
  color: #fff !important;
}

.line-error {
  background: #f30702 !important;
  color: #fff !important;
}

.line-premium,
.line-private {
  background-color: rgba(0, 0, 0, 0.7) !important;
  color: #fff !important;
}

/* ============================================
   COMMENTS
   ============================================ */

.list-comments .item {
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border-color);
}

.list-comments .image {
  background-color: var(--bg-hover) !important;
}

.list-comments .comment-options a {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary);
}

.no-touch .list-comments .comment-options .comment-edit:hover {
  color: #fff !important;
  background-color: var(--primary-pink) !important;
}

.list-comments .comment-options span {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.list-comments .comment-info {
  color: var(--text-muted) !important;
}

.list-comments p {
  color: var(--text-primary) !important;
}

.list-comments .username {
  color: var(--text-primary) !important;
}

/* ============================================
   MESSAGES
   ============================================ */

.list-messages .item {
  border-top: 1px solid var(--border-color) !important;
}

.list-messages .image {
  background-color: var(--bg-hover) !important;
}

.list-messages .message-text {
  color: var(--text-primary) !important;
}

.list-messages .added {
  color: var(--text-muted) !important;
}

.no-touch .list-messages .added.editable:hover {
  color: var(--primary-pink) !important;
}

.list-messages .item.new .added:after {
  background-color: var(--primary-pink) !important;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination a,
.pagination span {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.no-touch .pagination a:hover {
  color: #fff !important;
  background-color: var(--primary-pink) !important;
  border-color: var(--primary-pink);
  transform: translateY(-1px);
}

.pagination .page-current a,
.pagination .page-current span {
  color: #fff !important;
  background-color: var(--primary-pink) !important;
  border-color: var(--primary-pink);
}

/* ============================================
   LOAD MORE
   ============================================ */

.load-more a {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.load-more a:hover {
  color: #fff !important;
  background: var(--primary-pink) !important;
  border-color: var(--primary-pink);
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.sidebar h2 {
  color: var(--text-primary) !important;
}

.sidebar .list a {
  color: var(--text-primary) !important;
}

.sidebar .list a::before {
  background-color: var(--primary-pink) !important;
}

.no-touch .sidebar .list a:hover {
  color: var(--primary-pink) !important;
}

.sidebar .list .rating {
  color: var(--text-muted) !important;
}

.sidebar .comments .comment-text {
  color: var(--text-primary) !important;
}

.sidebar .comments .comment-text a {
  color: var(--text-primary) !important;
}

.no-touch .sidebar .comments .comment-text a:hover {
  color: var(--primary-pink) !important;
}

.sidebar .comments .image {
  background-color: var(--bg-hover) !important;
}

.sidebar .comments .username a {
  color: var(--text-primary) !important;
}

.sidebar .comments .username a:hover {
  color: var(--primary-pink) !important;
}

.sidebar .comments .added {
  color: var(--text-muted) !important;
}

.sidebar .filter li label::before {
  border: 1px solid var(--border-color) !important;
  background-color: var(--bg-hover) !important;
}

.sidebar .filter li input:checked + label::before {
  background-color: var(--primary-pink) !important;
  border: 1px solid var(--primary-pink) !important;
}

.sidebar .alphabet span,
.sidebar .alphabet a {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.sidebar .alphabet span {
  color: var(--text-muted) !important;
}

.no-touch .sidebar .alphabet a:hover {
  color: #fff !important;
  background-color: var(--primary-pink) !important;
  border-color: var(--primary-pink);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.footer .footer-wrap {
  color: var(--text-muted) !important;
}

.footer a {
  color: var(--text-primary) !important;
}

.footer a:hover {
  color: var(--primary-pink) !important;
}

.footer .nav a {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.no-touch .footer .nav a:hover {
  color: #fff !important;
  background-color: var(--primary-pink) !important;
  border-color: var(--primary-pink);
}

.footer .copyright a {
  color: var(--text-muted) !important;
}

/* ============================================
   TAGS CLOUD
   ============================================ */

.tags-cloud a {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.no-touch .tags-cloud a:hover {
  color: #fff !important;
  background-color: var(--primary-pink) !important;
  border-color: var(--primary-pink);
}

.tags-cloud .all {
  color: var(--text-primary) !important;
  background-color: var(--bg-hover) !important;
  border: 1px solid var(--border-color);
}

/* ============================================
   BLOCK CHANNEL / MODEL
   ============================================ */

.block-channel {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.block-channel .img .no-thumb {
  background-color: var(--bg-hover) !important;
}

.block-channel .channel-list .name {
  color: var(--text-muted) !important;
}

.block-channel .channel-list .rating span {
  background-color: var(--bg-hover) !important;
}

.block-channel .channel-list .rating .full {
  background-color: var(--primary-pink) !important;
}

.block-channel .channel-rating strong {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
}

.block-channel .channel-rating a {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.block-channel .channel-rating a.disabled {
  background-color: var(--bg-hover) !important;
  color: var(--text-muted) !important;
}

.no-touch .block-channel .channel-rating a:hover {
  background-color: var(--accent-purple) !important;
}

.block-model {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.block-model .img .no-thumb {
  background-color: var(--bg-hover) !important;
}

.block-model .model-list li {
  color: var(--text-muted) !important;
}

.block-model .model-list li span {
  color: var(--text-primary) !important;
}

.block-model .website {
  color: var(--text-muted) !important;
}

.block-model .website a {
  color: var(--primary-pink) !important;
}

.no-touch .block-model .website a:hover {
  color: var(--accent-purple) !important;
}

/* ============================================
   VIDEO / ALBUM PAGES
   ============================================ */

.block-video {
  background: transparent;
}

.block-video .video-holder {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.block-video .playlist {
  border-bottom: 1px solid var(--border-color) !important;
  background: var(--bg-hover);
}

.block-video .playlist .item {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color);
}

.no-touch .block-video .playlist .item.selected img {
  border: 4px solid var(--primary-pink) !important;
}

.block-video .playlist .item:hover .title {
  color: var(--primary-pink) !important;
}

.block-album .album-holder {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.block-album .images {
  border-bottom: 1px solid var(--border-color) !important;
  background: var(--bg-hover);
}

.block-album .images .message {
  background-color: rgba(0, 0, 0, 0.9) !important;
  color: #fff !important;
}

.block-album .images .message a {
  color: var(--primary-pink) !important;
}

.no-touch .block-album .images .message a:hover {
  color: #fff !important;
}

.info-buttons {
  border-bottom: 1px solid var(--border-color) !important;
  background: var(--bg-hover);
}

.rating-container .rate-dislike:before,
.rating-container .rate-like:before {
  color: var(--text-muted) !important;
}

.rate-like.voted::before {
  color: var(--primary-pink) !important;
}

.rate-dislike.voted:before {
  color: #f30702 !important;
}

.no-touch .rate-dislike:hover::before {
  color: #f30702 !important;
}

.no-touch .rate-like:hover::before {
  color: var(--primary-pink) !important;
}

.rating-container .voters {
  color: var(--text-primary) !important;
}

.rating-container .scale-holder {
  background-color: var(--bg-hover) !important;
}

.rating-container .scale-holder .scale {
  background-color: var(--primary-pink) !important;
}

.rating-container .scale-holder.negative .scale {
  background-color: #f30702 !important;
}

.btn-favourites {
  background-color: var(--bg-hover) !important;
  border: 1px solid var(--border-color);
}

.btn-favourites:hover {
  background-color: var(--primary-pink) !important;
  border-color: var(--primary-pink);
}

.btn-favourites .drop {
  color: var(--text-primary) !important;
}

.btn-favourites:hover .drop {
  color: #fff !important;
}

.btn-favourites ul {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.btn-favourites ul li > a,
.btn-favourites ul li > span {
  color: var(--text-primary) !important;
}

.btn-favourites ul li > a:hover,
.btn-favourites ul li > span:hover {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.btn-favourites ul li span .delete {
  background-color: var(--bg-hover) !important;
}

.btn-favourites ul li .delete:hover {
  background-color: var(--primary-pink) !important;
}

.tabs-menu .toggle-button {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.tabs-menu .toggle-button.active {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.no-touch .tabs-menu .toggle-button:hover {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.tab-content {
  background: transparent;
}

.block-details .item {
  color: var(--text-primary) !important;
}

.block-details .item a {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.no-touch .block-details .item a:hover {
  color: #fff !important;
  background-color: var(--primary-pink) !important;
  border-color: var(--primary-pink);
}

.block-details .item span {
  color: var(--text-muted) !important;
}

.block-details .block-user .username a {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.no-touch .block-details .block-user .username a:hover {
  background-color: var(--accent-purple) !important;
}

.block-details .block-user .avatar {
  background-color: var(--bg-hover) !important;
}

.block-screenshots span.item:before {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.block-screenshots a.item:before {
  border: 4px solid var(--primary-pink) !important;
}

.block-share .block-size a {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.no-touch .block-share .block-size a:hover {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
  border-color: var(--primary-pink);
}

.block-comments .toggle-button {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.block-comments .toggle-button.active {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.no-touch .block-comments .toggle-button:hover {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.block-comments .list-comments {
  border-top: 1px solid var(--border-color) !important;
}

.related-videos .list-sort a,
.related-albums .list-sort a {
  color: var(--text-primary) !important;
}

.related-videos .list-sort a:before,
.related-albums .list-sort a:before {
  background-color: var(--primary-pink) !important;
}

.related-videos .list-sort span,
.related-albums .list-sort span,
.related-videos .list-sort a:hover,
.related-albums .list-sort a:hover {
  color: var(--primary-pink) !important;
}

.btn-subscribe .toggle-button {
  background-color: var(--primary-pink) !important;
  color: #fff !important;
}

.no-touch .btn-subscribe .toggle-button:hover {
  background-color: var(--accent-purple) !important;
}

.btn-subscribe .button-info {
  background-color: var(--bg-hover) !important;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

/* ============================================
   MEMBER MENU / PROFILE
   ============================================ */

.member-menu {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.member-menu .block-main .avatar {
  background-color: var(--bg-hover) !important;
}

.member-menu .block-additional {
  border-top: 1px solid var(--border-color) !important;
}

.user-menu span {
  color: var(--primary-pink) !important;
}

.user-menu a {
  color: var(--text-primary) !important;
}

.user-menu span:before,
.user-menu a:before {
  background-color: var(--primary-pink) !important;
}

.no-touch .user-menu a:hover {
  color: var(--primary-pink) !important;
}

.member-menu .user-menu em {
  color: var(--text-muted) !important;
}

.block-profile {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.profile-list {
  color: var(--text-muted) !important;
}

.profile-list .item em {
  color: var(--text-primary) !important;
}

/* ============================================
   POPUPS / FANCYBOX
   ============================================ */

.fancybox-opened .fancybox-skin {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-lg) !important;
}

.popup-title {
  color: var(--text-primary) !important;
  background: var(--bg-hover);
  border-bottom: 1px solid var(--border-color);
}

.popup-holder {
  background-color: var(--bg-card) !important;
  background-image: none !important;
}

/* ============================================
   ADVERTISEMENT PLACES
   ============================================ */

.place {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-sm) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.footer-margin {
  background-color: var(--bg-card) !important;
  background-image: none !important;
  border-top: 1px solid var(--border-color);
}

.bottom-adv {
  background: transparent;
}

/* ============================================
   SUBSCRIPTIONS
   ============================================ */

.list-subscriptions .item {
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-sm) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.list-subscriptions .item .title {
  color: var(--text-primary) !important;
}

.no-touch .list-subscriptions .item .title:hover {
  color: var(--primary-pink) !important;
}

/* ============================================
   ERROR & EMPTY STATES
   ============================================ */

.page-error {
  background: rgba(243, 7, 2, 0.1) !important;
  color: #f30702 !important;
  border: 1px solid #f30702 !important;
  border-radius: var(--radius-sm);
}

.empty-content {
  color: var(--text-primary) !important;
}

.empty-content h2 {
  color: var(--text-primary) !important;
}

.empty-content a {
  color: var(--primary-pink) !important;
}

.empty-content p {
  color: var(--text-muted) !important;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media screen and (max-width: 1152px) {
  .navigation .primary {
    background-color: var(--bg-card) !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid var(--border-color);
  }
}

/* ============================================
   UTILITY OVERRIDES
   ============================================ */

.hidden {
  display: none !important;
}

.no-thumb {
  background-color: var(--bg-hover) !important;
}

/* ============================================
   END OF CUSTOM THEME
   ============================================ */

