/**
 * Global Glassmorphism Enhancement for DiaperGuys V2.2
 * Beautiful glass effects throughout the entire site
 * Inspired by v2.diaperguys.com landing pages
 */

/* ============================================
   CSS VARIABLES - Glassmorphism Theme
   ============================================ */
:root {
  /* Glass Colors */
  --glass-bg-light: rgba(255, 255, 255, 0.1);
  --glass-bg-medium: rgba(255, 255, 255, 0.15);
  --glass-bg-strong: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-border-strong: rgba(255, 255, 255, 0.3);
  
  /* Brand Colors */
  --brand-primary: #5d72e3;
  --brand-secondary: #764ba2;
  --brand-accent: #08e3ec;
  --brand-accent-soft: #6ff1ff;
  
  /* Dark Theme Glass */
  --glass-dark-bg: rgba(15, 20, 30, 0.6);
  --glass-dark-bg-light: rgba(20, 25, 35, 0.4);
  --glass-dark-border: rgba(255, 255, 255, 0.1);
  
  /* Blur Amounts */
  --blur-sm: 10px;
  --blur-md: 20px;
  --blur-lg: 30px;
  --blur-xl: 40px;
  
  /* Shadows */
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1),
                   0 2px 8px rgba(0, 0, 0, 0.05),
                   inset 0 1px 0 rgba(255, 255, 255, 0.2);
  --shadow-glass-hover: 0 12px 48px rgba(93, 114, 227, 0.2),
                         0 4px 16px rgba(0, 0, 0, 0.1),
                         inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* ============================================
   BODY & BACKGROUND
   ============================================ */
body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #5d72e3 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(93, 114, 227, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(8, 227, 236, 0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Night Mode Background */
body.night-mode {
  background: linear-gradient(135deg, #0b0f14 0%, #1a1f2e 50%, #262d34 100%);
  background-attachment: fixed;
}

body.night-mode::before {
  background: 
    radial-gradient(circle at 20% 30%, rgba(8, 227, 236, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(93, 114, 227, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(118, 75, 162, 0.06) 0%, transparent 50%);
  z-index: -1;
}

/* ============================================
   CARDS - Premium Glassmorphism
   ============================================ */
.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(var(--blur-md)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-glass);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glass-hover);
  border-color: var(--glass-border-strong);
}

/* Night Mode Cards */
body.night-mode .card {
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.6) 0%, rgba(15, 20, 30, 0.4) 100%);
  backdrop-filter: blur(var(--blur-md)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(180%);
  border-color: rgba(255, 255, 255, 0.1);
}

body.night-mode .card:hover {
  background: linear-gradient(135deg, rgba(25, 30, 40, 0.7) 0%, rgba(20, 25, 35, 0.5) 100%);
  border-color: rgba(93, 114, 227, 0.3);
}

/* Card Header */
.card-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
  border-bottom: 1px solid var(--glass-border);
  border-radius: 20px 20px 0 0;
  padding: 20px;
}

body.night-mode .card-header {
  background: rgba(20, 25, 35, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.card-header.bg-transparent {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
}

body.night-mode .card-header.bg-transparent {
  background: rgba(20, 25, 35, 0.3) !important;
}

/* Card Body */
.card-body {
  background: transparent;
  padding: 20px;
}

/* ============================================
   HEADER - Glass Navigation
   ============================================ */
.sg-header,
.header-wrapper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(var(--blur-lg)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.night-mode .sg-header,
body.night-mode .header-wrapper {
  background: linear-gradient(180deg, rgba(20, 25, 35, 0.8) 0%, rgba(15, 20, 30, 0.6) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   SIDEBAR - Glass Navigation
   ============================================ */
.main-side-nav-card,
.sg-offcanvas-sidebar .card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(var(--blur-md)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-glass);
}

body.night-mode .main-side-nav-card,
body.night-mode .sg-offcanvas-sidebar .card {
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.6) 0%, rgba(15, 20, 30, 0.4) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.main-side-nav li a {
  border-radius: 12px;
  transition: all 0.3s;
  padding: 12px 15px;
  margin: 2px 0;
}

.main-side-nav li a:hover {
  background: rgba(93, 114, 227, 0.15);
  backdrop-filter: blur(10px);
  transform: translateX(4px);
}

.main-side-nav li.active > a {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(93, 114, 227, 0.4);
}

/* ============================================
   BUTTONS - Glass Style
   ============================================ */
.btn {
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  border: none;
  color: #fff;
  box-shadow: 0 4px 16px rgba(93, 114, 227, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(93, 114, 227, 0.5);
  background: linear-gradient(135deg, #4a5fd0 0%, #6a3d92 100%);
}

.btn-outline-primary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
}

.btn-outline-primary:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: inherit;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ============================================
   INPUTS & FORMS - Glass Style
   ============================================ */
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: inherit;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(93, 114, 227, 0.2);
  outline: none;
}

body.night-mode .form-control,
body.night-mode .form-select {
  background: rgba(20, 25, 35, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--body-color-dark);
}

body.night-mode .form-control:focus,
body.night-mode .form-select:focus {
  background: rgba(25, 30, 40, 0.6);
  border-color: var(--brand-primary);
}

/* ============================================
   MODALS - Glass Style
   ============================================ */
.modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(var(--blur-xl)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-xl)) saturate(180%);
  border: 1px solid var(--glass-border-strong);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body.night-mode .modal-content {
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.95) 0%, rgba(15, 20, 30, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.15);
}

.modal-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  border-radius: 24px 24px 0 0;
}

body.night-mode .modal-header {
  background: rgba(20, 25, 35, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   POSTS & FEEDS - Glass Cards
   ============================================ */
.alert-post,
.post {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(var(--blur-md)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-glass);
  transition: all 0.3s;
}

.alert-post:hover,
.post:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glass-hover);
}

body.night-mode .alert-post,
body.night-mode .post {
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.6) 0%, rgba(15, 20, 30, 0.4) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   PUBLISHER - Glass Style
   ============================================ */
.publisher {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(var(--blur-md)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-glass);
}

body.night-mode .publisher {
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.7) 0%, rgba(15, 20, 30, 0.5) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   BADGES & TAGS - Glass Style
   ============================================ */
.badge {
  background: linear-gradient(135deg, rgba(93, 114, 227, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(93, 114, 227, 0.3);
}

.badge.bg-info {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}

.badge.bg-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* ============================================
   DROPDOWN MENUS - Glass Style
   ============================================ */
.dropdown-menu {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(var(--blur-lg)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 8px;
}

body.night-mode .dropdown-menu {
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.95) 0%, rgba(15, 20, 30, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.15);
}

.dropdown-item {
  border-radius: 10px;
  padding: 10px 15px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: rgba(93, 114, 227, 0.15);
  backdrop-filter: blur(10px);
}

/* ============================================
   NAVIGATION TABS - Glass Style
   ============================================ */
.nav-tabs,
.nav-pills {
  border-bottom: 1px solid var(--glass-border);
}

.nav-tabs .nav-link,
.nav-pills .nav-link {
  border-radius: 12px;
  transition: all 0.3s;
  margin-right: 8px;
  padding: 10px 20px;
}

.nav-tabs .nav-link:hover,
.nav-pills .nav-link:hover {
  background: rgba(93, 114, 227, 0.1);
  backdrop-filter: blur(10px);
}

.nav-tabs .nav-link.active,
.nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(93, 114, 227, 0.4);
}

/* ============================================
   TOOLTIPS - Glass Style
   ============================================ */
.tooltip-inner {
  background: rgba(20, 25, 35, 0.95);
  backdrop-filter: blur(var(--blur-sm));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SCROLLBAR - Glass Style
   ============================================ */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #4a5fd0 0%, #6a3d92 100%);
  background-clip: padding-box;
}

/* ============================================
   CHAT WIDGET - Glass Style
   ============================================ */
.chat-widget,
.panel-messages {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(var(--blur-md)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-glass);
}

body.night-mode .chat-widget,
body.night-mode .panel-messages {
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.7) 0%, rgba(15, 20, 30, 0.5) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   PROFILE COVER - Glass Overlay
   ============================================ */
.profile-cover {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

/* ============================================
   SEARCH BAR - Glass Style
   ============================================ */
.search-wrapper,
.form-control[type="search"] {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

body.night-mode .search-wrapper,
body.night-mode .form-control[type="search"] {
  background: rgba(20, 25, 35, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   ALERTS & NOTIFICATIONS - Glass Style
   ============================================ */
.alert {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-glass);
}

body.night-mode .alert {
  background: rgba(20, 25, 35, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

.alert-success {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(32, 201, 151, 0.2) 100%);
  border-color: rgba(40, 167, 69, 0.3);
}

.alert-danger {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(203, 32, 39, 0.2) 100%);
  border-color: rgba(220, 53, 69, 0.3);
}

.alert-warning {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(246, 173, 85, 0.2) 100%);
  border-color: rgba(255, 193, 7, 0.3);
}

.alert-info {
  background: linear-gradient(135deg, rgba(93, 114, 227, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  border-color: rgba(93, 114, 227, 0.3);
}

/* ============================================
   TABLE - Glass Style
   ============================================ */
.table {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
}

body.night-mode .table {
  background: rgba(20, 25, 35, 0.4);
}

.table thead {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

body.night-mode .table thead {
  background: rgba(20, 25, 35, 0.6);
}

/* ============================================
   LOADERS - Glass Style
   ============================================ */
.loader {
  border-color: rgba(93, 114, 227, 0.2);
  border-top-color: var(--brand-primary);
}

/* ============================================
   SWITCHES & TOGGLES - Glass Style
   ============================================ */
.switch {
  position: relative;
}

.switch .slider {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.switch input:checked + .slider {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  box-shadow: 0 2px 8px rgba(93, 114, 227, 0.4);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .card {
    border-radius: 16px;
  }
  
  .card-header {
    padding: 15px;
  }
  
  .card-body {
    padding: 15px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes glass-shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.card,
.btn,
.alert-post {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.glass-effect-strong {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

body.night-mode .glass-effect {
  background: rgba(20, 25, 35, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

body.night-mode .glass-effect-strong {
  background: rgba(20, 25, 35, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   ADULT CONTENT BLUR - Non-Verified Users
   ============================================ */
/* Blur images in posts marked as adult for non-verified users */
.post[data-for-adult="1"] .post-image img,
.post[data-for-adult="1"] .post-attachments img,
.post[data-for-adult="1"] .post-attachments-item img,
.post[data-for-adult="1"] .post-photo img,
.post[data-for-adult="1"] .post-video img,
.post[data-for-adult="1"] .post-attachment img,
.post[data-for-adult="1"] .post-media img,
.post[data-for-adult="1"] .post-media-image img,
.post[data-for-adult="1"] .youtube-player img,
.post[data-for-adult="1"] .post-attachments .item img {
  filter: blur(20px);
  -webkit-filter: blur(20px);
  transition: filter 0.3s ease;
  pointer-events: none;
}

/* Show unblurred for verified users, admins, and moderators */
body[data-user-verified="1"] .post[data-for-adult="1"] .post-image img,
body[data-user-verified="1"] .post[data-for-adult="1"] .post-attachments img,
body[data-user-verified="1"] .post[data-for-adult="1"] .post-attachments-item img,
body[data-user-verified="1"] .post[data-for-adult="1"] .post-photo img,
body[data-user-verified="1"] .post[data-for-adult="1"] .post-video img,
body[data-user-verified="1"] .post[data-for-adult="1"] .post-attachment img,
body[data-user-verified="1"] .post[data-for-adult="1"] .post-media img,
body[data-user-verified="1"] .post[data-for-adult="1"] .post-media-image img,
body[data-user-verified="1"] .post[data-for-adult="1"] .youtube-player img,
body[data-user-verified="1"] .post[data-for-adult="1"] .post-attachments .item img,
body[data-user-admin="1"] .post[data-for-adult="1"] .post-image img,
body[data-user-admin="1"] .post[data-for-adult="1"] .post-attachments img,
body[data-user-admin="1"] .post[data-for-adult="1"] .post-attachments-item img,
body[data-user-admin="1"] .post[data-for-adult="1"] .post-photo img,
body[data-user-admin="1"] .post[data-for-adult="1"] .post-video img,
body[data-user-admin="1"] .post[data-for-adult="1"] .post-attachment img,
body[data-user-admin="1"] .post[data-for-adult="1"] .post-media img,
body[data-user-admin="1"] .post[data-for-adult="1"] .post-media-image img,
body[data-user-admin="1"] .post[data-for-adult="1"] .youtube-player img,
body[data-user-admin="1"] .post[data-for-adult="1"] .post-attachments .item img,
body[data-user-moderator="1"] .post[data-for-adult="1"] .post-image img,
body[data-user-moderator="1"] .post[data-for-adult="1"] .post-attachments img,
body[data-user-moderator="1"] .post[data-for-adult="1"] .post-attachments-item img,
body[data-user-moderator="1"] .post[data-for-adult="1"] .post-photo img,
body[data-user-moderator="1"] .post[data-for-adult="1"] .post-video img,
body[data-user-moderator="1"] .post[data-for-adult="1"] .post-attachment img,
body[data-user-moderator="1"] .post[data-for-adult="1"] .post-media img,
body[data-user-moderator="1"] .post[data-for-adult="1"] .post-media-image img,
body[data-user-moderator="1"] .post[data-for-adult="1"] .youtube-player img,
body[data-user-moderator="1"] .post[data-for-adult="1"] .post-attachments .item img {
  filter: none;
  -webkit-filter: none;
  pointer-events: auto;
}
