body:not(.admin-body) {
  margin: 0;
  font-family: "PT Sans", "Oranienbaum", sans-serif;
  background: linear-gradient(135deg, #1a1517 0%, #060630 50%, #1a1517 100%) !important;
  color: #f4f3ff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.background-animation {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #1a1517 0%, #060630 50%, #1a1517 100%);
  overflow: hidden;
  z-index: -1;
}

.background-animation::before,
.background-animation::after {
  content: '';
  position: absolute;
  width: 120vw;
  height: 30vh;
  left: -10%;
  background: #d62ac6;
  filter: blur(60px);
  opacity: 0.15;
  transform: rotate(-72deg);
}

.background-animation::before {
  top: 20%;
}

.background-animation::after {
  top: 60%;
}

/* Admin layout - override dark background */
body.admin-body {
  background-color: #f8f9fa !important;
  color: #212529;
}

/* Admin sidebar - override dark background */
body.admin-body .admin-sidebar {
  background: #e9ecef;
  border-right: 1px solid #dee2e6;
}

/* Admin sidebar links - fix text color for white background */
body.admin-body .admin-sidebar a {
  color: #212529;
}
body.admin-body .admin-sidebar a:hover,
body.admin-body .admin-sidebar a.active {
  background: #f8f9fa;
  color: #807154;
}

/* Dropdown menu links */
.dropdown-menu a {
  transition: color 0.2s ease, opacity 0.2s ease;
}
.dropdown-menu a:hover {
  color: #807154 !important;
}

/* Admin sidebar menu groups */
body.admin-body .menu-group {
  margin-bottom: 4px;
}

/* Admin sidebar menu toggle button */
body.admin-body .menu-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: #212529;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius);
  text-align: left;
}

body.admin-body .menu-toggle:hover {
  background: #f8f9fa;
}

body.admin-body .menu-toggle .arrow {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

body.admin-body .menu-toggle.expanded .arrow {
  transform: rotate(180deg);
}

/* Admin sidebar submenu */
body.admin-body .menu-submenu {
  display: none;
  padding-left: 12px;
  margin-top: 4px;
}

body.admin-body .menu-submenu.open {
  display: block;
}

body.admin-body .menu-submenu a {
  padding: 8px 12px;
  font-size: 0.85rem;
}

h1, h2, h3 {
  font-weight: 400;
  font-family: Oranienbaum;
}

textarea::placeholder {
    color: white !important;
}

.custom-width {
  max-width: 1280px;
}

.search-field {
  background-color: #383838;
  color: #888;
}

.search-field::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.no-under-18 {
  position: fixed;
  top: 180px;
  right: 16px;
  z-index: 50;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.top5-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.top5-divider::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0.1px !important;
  background-color: #807154;
  transform: translateY(-50%);
  z-index: 0;
}

.top5-divider i {
  font-size: 1.5rem;
  color: #807154;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
}

.glow {
    font-size: 60px;
    color: gold;
    text-align: center;
    animation: glow 1s ease-in-out infinite alternate;
}

.glow-text {
    animation: glow 1s ease-in-out infinite alternate;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #e60073, 0 0 20px #e60073, 0 0 25px #e60073, 0 0 30px #e60073, 0 0 35px #e60073 !important;
    color: gold;
    font-size: 1.3rem;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #e60073, 0 0 20px #e60073, 0 0 25px #e60073, 0 0 30px #e60073, 0 0 35px #e60073;
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6;
  }
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(3, 2, 16, 0.95);
  margin-top: auto;
}

.main-content {
  flex: 1;
}

.section-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.02);
}

.badge-pill-custom {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

a:hover {
  color: #807154 !important;
}

.no-under-18-banner {
  top: 200px;
  transform: none;
  right: 0;
  z-index: 99;
  margin-right: 5px;
}

.no-under-18-banner-image {
  width: 60px;
  height: 60px;
}

.navbar-shell {
  background-color: #000002;
  opacity: 0.7;
}

.navbar-layout {
  /* max-width: 73.15rem; */
  /* padding-top: 1.5rem; */
  /* padding-bottom: 1.5rem; */
  padding-left: 2rem;
  padding-right: 2rem;
}

.navbar-logo {
  height: 186px;
  width: 233px;
}

.bootstrap-nav-link {
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

.bootstrap-nav-link:hover {
  color: #807154;
}

.nav-link:hover { background: transparent !important;}

.nav-menu-gap {
  gap: 1.5rem;
}

.nav-button-gap {
  gap: 0.25rem;
}

.nav-caret {
  color: #9ca3af;
}

.dropdown-toggle::after {
  display: none;
}

.desktop-popover {
  width: 28rem;
}

.desktop-popover a {
  font-size: 13px;
}

.dropdown-panel {
  min-width: auto;
  width: max-content;
  margin-top: 0;
}

.dropdown-menu.desktop-popover {
  inset: 100% 0 auto auto;
  position: absolute;
  margin-top: 0.25rem;
  left: auto;
  right: 0;
}

.dropdown-menu.show {
  display: block;
}

.popover-item-gap {
  gap: 1.5rem;
}

.popover-item-padding {
  padding: 1rem;
}

.popover-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.hover-bg-light:hover {
  background-color: #000;
}

.popover-icon-box {
  width: 2.75rem;
  height: 2.75rem;
}

.navbar-search-desktop {
  margin-top: 1.5rem;
}

.search-input-group {
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.search-input-group:focus-within {
  border-color: #807154;
}

.search-input-group:focus-within .search-input,
.search-input-group:focus-within .search-icon-wrapper {
  background-color: #383838;
  color: white;
}

.search-icon-wrapper {
  background-color: #383838;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  border-radius: 0;
}

.search-icon {
  width: 1rem;
  height: 1rem;
}

.bootstrap-search {
  padding: 0.5rem;
  font-size: 1rem;
  border: 0;
  border-radius: 0;
}

.search-input {
  box-shadow: none;
}

.search-input:focus {
  border: 0;
  box-shadow: none;
}

.mobile-menu-toggle,
.mobile-menu-toggle-close {
  margin: -0.625rem;
  padding: 0.625rem;
  color: #fff;
  border: 0;
  background: transparent;
}

/* Mobile Menu - Dark Theme */
#mobile-menu .modal-content,
#mobile-menu .modal-header,
#mobile-menu .modal-body,
.mobile-menu-content {
  background-color: #060630 !important;
  color: #f4f3ff;
}

.mobile-menu-header {
  background-color: #060630 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.mobile-menu-header .modal-title {
  font-family: Oranienbaum, serif;
  color: #807154;
  letter-spacing: 1px;
}

.mobile-menu-content .list-group-item {
  background-color: transparent !important;
  color: #f4f3ff;
  border-color: rgba(255, 255, 255, 0.08) !important;
  padding: 0.875rem 1.25rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu-content .list-group-item:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: #807154;
}

.mobile-menu-content .list-group-item.active {
  background-color: rgba(128, 113, 84, 0.15) !important;
  border-color: rgba(128, 113, 84, 0.3) !important;
  color: #807154 !important;
}

.mobile-menu-content .list-group-item svg {
  fill: #807154;
  transition: fill 0.2s ease;
}

.mobile-menu-content .list-group-item:hover svg {
  fill: #a08b6a;
}

/* Collapsible submenus */
.mobile-menu-content .mobile-submenu .list-group-item {
  background-color: rgba(0, 0, 0, 0.15) !important;
}

.mobile-menu-content .mobile-submenu .list-group-item:hover {
  background-color: rgba(0, 0, 0, 0.25) !important;
}

/* Caret rotation on expanded collapse buttons */
.mobile-menu-content button[aria-expanded="true"] .mobile-menu-caret {
  transform: rotate(180deg);
}

/* Nested submenu items */
.mobile-menu-content .ps-5 {
  padding-left: 2.5rem !important;
}

.mobile-menu-content .ps-5 span {
  color: rgba(244, 243, 255, 0.75);
  font-weight: 400;
}

.mobile-menu-content .ps-5:hover span {
  color: #807154;
}

/* Close button white */
.mobile-menu-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
}

.mobile-menu-header .btn-close:hover {
  opacity: 1;
}

.mobile-dialog::backdrop {
  background: transparent;
}

.focus-reset:focus {
  outline: none;
}

.mobile-dialog-panel {
  inset-block: 0;
  max-width: 24rem;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.1);
}

.mobile-menu-logo {
  height: 2rem;
  width: auto;
}

.mobile-menu-divider {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
  border-top: 1px solid rgba(107, 114, 128, 0.1);
  border-bottom: 1px solid rgba(107, 114, 128, 0.1);
}

.mobile-menu-list-gap > * + * {
  margin-top: 0.5rem;
}

.mobile-menu-action {
  padding: 0.5rem 0.875rem 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  color: #212529;
  border: 0;
  background: transparent;
}

.mobile-menu-action:hover,
.mobile-menu-link:hover,
.mobile-submenu-link:hover {
  background-color: #f8f9fa;
}

.mobile-menu-link {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  color: #212529;
  text-decoration: none;
}

.mobile-submenu-link {
  padding: 0.5rem 0.75rem 0.5rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 600;
  color: #212529;
  text-decoration: none;
}

.icon-24 {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-20 {
  width: 1.25rem;
  height: 1.25rem;
}

.video-section {
  position: relative;
  overflow: hidden;
  min-width: 100%;
  min-height: 100%;
}

.video-bg {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.video-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f4f3ff;
  z-index: 5;
  padding: 2rem;
}

.video-overlay span {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1em;
  color: #d62ac6;
  margin-bottom: 1rem;
}

.video-overlay h1 {
  font-size: 160px;
  text-transform: uppercase;
  line-height: 1em;
  color: #d62ac6;
  margin: 0;
  font-weight: 400;
  font-family: Oranienbaum;
}

.video-overlay h3 {
  font-size: 31px;
  margin-bottom: 1rem;
  line-height: 1em;
  font-weight: 400;
  font-family: Oranienbaum;
}

.video-overlay a {
  letter-spacing: 10px;
  margin: 30px 10px 0;
  padding: 10px 20px 10px 30px;
}

.tilt-card {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  transform-origin: center;
  z-index: 0;
  position: relative;
}

.tilt-card:hover,
.tilt-card:focus-visible,
.tilt-card.touch-active {
  transform: rotate(5deg) scale(1.05);
  z-index: 10;
}

.tilt-card:active {
  transform: rotate(5deg) scale(1.05);
  z-index: 10;
}

.tilt-card img {
  /* max-width: 186px; */
  max-height: 206px;
}

.card-shell .card-img-top {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.equal-height-row > .col {
  display: flex;
}

.card-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background-color: #ebebeb;
  padding: 3px;
  text-decoration: none;
}

.card-shell .card {
  margin-bottom: 0.125rem;
}

.card-meta {
  margin-top: auto;
}

.card-shell, .card-shell * {
  text-decoration: none !important;
}

.advert-card-shell {
  background: transparent;
  padding: 0;
  gap: 0;
  display: flex;
}

.advert-card-shell .blog-card {
  width: 100%;
  height: 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #8B5CF6 0%, #D62AC6 100%);
}

.advert-card {
  position: relative;
}

.advert-card-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 1.25rem; */
}

.advert-card-inner .rounded-circle {
    width: 40px;
    height: 40px;
}

.advert-card-inner h5 {
    font-size: 1rem; letter-spacing: 1px;
}


.advert-card-inner p {
    font-size: 0.75rem; opacity: 0.9;
}

.advert-card .blog-card-overlay {
  background: linear-gradient(to top, rgba(10,15,30,0.22) 0%, rgba(10,15,30,0.06) 55%, transparent 100%);
}

.section-heading-border {
  border-color: #807154 !important;
}

.model-nav-row {
  gap: 1rem;
  padding: 0 1rem;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

.model-nav-row h2 {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.model-nav-row a {
  flex: 0 0 auto;
}

.profile-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-grid li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  /* font-size: 0.95rem; */
}

.profile-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-value {
  color: #d62ac6;
}

.model-carousel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.carousel-main {
  position: relative;
  overflow: hidden;
}

.carousel-main-frame {
  overflow: hidden;
}

.carousel-main-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav.carousel-prev {
  left: 0.6rem;
}

.carousel-nav.carousel-next {
  right: 0.6rem;
}

.carousel-thumbs {
  display: flex;
}

.carousel-thumb {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  border: 2px solid #fff;
}

.carousel-thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.carousel-thumb.active {
  border-color: #d62ac6;
}

.call-now-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.model-details-layout {
  width: 100%;
}

#age-verification-overlay button,
#age-verification-overlay a {
    font-size: 1.25rem;
}

@media (max-width: 421px) {
    .advert-card-inner h5 {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }


    .advert-card-inner p {
        font-size: 0.45rem;
        opacity: 0.9;
    }

    .advert-card-inner button {
        font-size: 0.45rem;
    }

    #age-verification-overlay button,
    #age-verification-overlay a {
        font-size: 0.85rem;
    }
    
}

@media (min-width: 992px) {
  .model-details-layout {
    display: flex;
    gap: 3rem;
  }

  .advert-card-inner .rounded-circle {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
  .carousel-main-img {
    height: 250px;
  }
}

@media (min-width: 1280px) {
  .text-lg-16 {
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {
  .navbar-layout {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .navbar-logo {
    height: 140px;
    width: auto;
  }
  .nav-menu-gap {
    gap: 0.5rem;
  }
  .bootstrap-nav-link {
    font-size: 0.82rem;
  }
  .navbar-layout {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1025px) and (max-width: 1281px) {
  .navbar-logo {
    height: 150px;
    width: auto;
  }
  .nav-menu-gap {
    gap: 0.8rem;
  }
  .bootstrap-nav-link {
    font-size: 1rem;
  }
  .navbar-layout {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 768px) {
  .video-overlay span {
    font-size: 20px;
  }

  .video-overlay h1 {
    font-size: 80px;
  }

  .video-overlay h3 {
    font-size: 20px;
  }
}

@media (max-width: 353px) {
  .video-overlay h1 {
    font-size: 70px;
  }
}

@media (min-width: 768px) {
    .advert-card-shell .blog-card {
        height: 420px;
    }
}

/* ==========================================================================
   Admin Profile Edit Page Layout
   ========================================================================== */
.profile-edit-container,
.user-edit-container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.user-edit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.user-edit-left-column,
.user-edit-right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tier-config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.tier-config-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tier-config-item span {
  color: #666;
  font-size: 0.9em;
}

.user-edit-form {
  width: 100%;
  margin: 0;
  padding: 0;
}

.profile-edit-form {
  width: 100%;
  margin: 0;
  padding: 0 24px;
  box-sizing: border-box;
}

.admin-form {
  width: 100%;
  margin: 0;
  padding: 0;
}

.admin-form .form-group {
  padding-left: 0;
}

.admin-form .form-control {
  width: 100%;
}

.profile-edit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.profile-edit-grid > div {
  min-width: 0;
}

.profile-edit-form .admin-card {
  margin-bottom: 20px;
}

/* Ensure table has full width and can scroll */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  margin: 0;
}

.table-responsive table {
  min-width: 100%;
  width: 100%;
  table-layout: auto;
}

/* Ensure admin cards have proper spacing */
body.admin-body .admin-card {
  margin-bottom: 24px;
}

body.admin-body .admin-card .card-body {
  padding: 24px !important;
}

.profile-edit-right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-assignment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.profile-assignment-grid > div {
  min-width: 0;
}

.attributes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.attributes-grid > div {
  min-width: 0;
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.comments-section,
.venues-section {
  margin-top: 30px;
}

/* Responsive adjustments for profile edit page */
@media (max-width: 991px) {
  .profile-edit-grid {
    grid-template-columns: 1fr;
  }

  .user-edit-grid {
    grid-template-columns: 1fr;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .profile-assignment-grid {
    grid-template-columns: 1fr;
  }

  .attributes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .images-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .attributes-grid {
    grid-template-columns: 1fr;
  }

  .images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Admin dashboard positioned badges */
.btn-position-relative {
  position: relative !important;
}

.badge-positioned {
  position: absolute;
  top: -6px;
  right: -6px;
  border-radius: 9999px;
  background-color: #dc3545;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  min-width: 1.5rem;
  text-align: center;
  line-height: 1;
  border: 2px solid #f8f9fa;
}

/* ==========================================================================
   Pagination Styles
   ========================================================================== */
.pagination {
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 4px !important;
}

.page-item {
  display: inline-block !important;
}

.page-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 36px !important;
  height: 36px !important;
  padding: 0 12px !important;
  background: #fff !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 8px !important;
  color: #212529 !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.page-link:hover {
  background: #e94560 !important;
  color: #fff !important;
  border-color: #e94560 !important;
}

.page-item.active .page-link {
  background: #e94560 !important;
  color: #fff !important;
  border-color: #e94560 !important;
}

.page-item.disabled .page-link {
  background: #f8f9fa !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  border-color: #dee2e6 !important;
}

/*
   ==========================================================================
   Profile Cards Styling
   ==========================================================================
*/

.blog-card {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  height: 280px;
  max-width: 360px;
  width: 100%;
  cursor: pointer;
  border: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover,
.blog-card:active,
.blog-card.touch-active { box-shadow: 0 12px 36px rgba(0,0,0,0.18); }

.blog-card-bg {
  position: absolute;
  inset: 0;
  background: #1a1a2e;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.blog-card:hover .blog-card-bg,
.blog-card:active .blog-card-bg,
.blog-card.touch-active .blog-card-bg { transform: scale(1.08); }

.blog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.blog-card:hover img,
.blog-card:active img,
.blog-card.touch-active img { transform: scale(1.04); }

.blog-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.88) 0%, rgba(10,15,30,0.1) 55%, transparent 100%);
}

.blog-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
}

.blog-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.72);
  margin-bottom: 0.5rem;
}

.blog-meta .dot { width: 3px; height: 3px; background: rgba(255,255,255,0.45); border-radius: 50%; }

.blog-meta img { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.55); object-fit: cover; }

.blog-title { font-size: 1rem; font-weight: 700; line-height: 1.35; margin: 0; color: #fff; letter-spacing: -0.01em; overflow-wrap: break-word; word-break: break-word; }

.blog-card-body .small { overflow-wrap: break-word; word-break: break-word; }

@media (max-width: 421px) {
    .blog-card-body {
        position: absolute; bottom: 0; left: 0; right: 0;
        padding: 0.75rem;
        color: #fff;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    }

    .blog-title { font-size: 0.8rem; font-weight: 700; line-height: 1.35; margin: 0; color: #fff; letter-spacing: -0.01em; overflow-wrap: break-word; word-break: break-word; }
}

@media (min-width: 768px) {
    .blog-card {
        height: 420px;
    }
}
