:root {
  --color-primary: #a3ba32;
  --color-primary-dark: #859c21;
  --color-secondary: #ffce2e;
  --color-secondary-dark: #fdc819;
  --color-dark: #2a2a2a;
  --color-dark-hover: #1a1a1a;
  --color-light: #fdfdf5;
  --color-muted: #f0f0f0;
  --color-border: #e0e0e0;
  --color-text: #2a2a2a;
  --color-gray: #495057;
  --color-light-gray: #f8f9fa;
  --color-badge-bg: #fefefe;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-success: #28a745;
  --color-info: #17a2b8;
  --color-footer-text: #2a2a2a;
  --color-footer-muted: #adb5bd
}

body {
  font-family: "Baloo 2", sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1.063rem
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.newsletter-title {
  color: var(--color-dark)
}

.color-blue {
  color: #1e90ff !important
}

.color-red {
  color: #ff6f61 !important
}

.color-green {
  color: #a3ba32 !important
}

.color-purple {
  color: #8e44ad !important
}

.color-orange {
  color: #f39c12 !important
}

.color-turco {
  color: #00bcd4 !important
}

.color-pink {
  color: #e91e63 !important
}

.color-yellow {
  color: #ffce2e !important
}

.btn-yellow {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-dark);
  text-decoration: none
}

.btn-yellow:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-dark);
  text-decoration: none
}

.btn-search {
  background-color: #fff0;
  margin-right: 10px
}

.btn-search:focus {
  border: none !important;
  outline: 0 !important
}

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

.main-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgb(0 0 0 / .05);
  position: sticky;
  top: 0;
  z-index: 1000
}

.navbar-brand {
  font-size: 1.25rem;
  color: var(--color-dark) !important;
  font-weight: 700
}

.navbar-brand img {
  border-radius: 50%;
  object-fit: cover
}

.nav-link {
  font-weight: 500;
  color: var(--color-dark) !important;
  padding: .5rem 1rem;
  transition: color .3s ease-in-out
}

.nav-link.active,
.nav-link:hover {
  color: #768a1e !important
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  font-weight: 500;
  transition: background-color .3s ease, border-color .3s ease, transform .2s ease
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px)
}

.dropdown-menu {
  border-radius: .75rem;
  box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

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

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.dropdown-item:hover {
  background-color: var(--color-light-gray);
  color: var(--color-primary)
}

.search-item {
  color: var(--color-dark);
  text-decoration: none;
  padding: 20px 0
}

.search-item:hover {
  color: var(--color-primary)
}

.sign {
  color: var(--color-dark);
  text-decoration: none;
  padding: .25rem .75rem
}

.sign:hover {
  color: var(--color-primary);
  text-decoration: dashed
}

.hero-section {
  padding-top: .5rem;
  padding-bottom: 6rem;
  background-color: #fff
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.hero-section .lead {
  max-width: 700px;
  font-size: 1.15rem
}

.hero-carousel {
  background-color: #ecf6ff;
  border-radius: 15px;
  position: relative;
  overflow: hidden
}

.hero-carousel .carousel-slides {
  position: relative
}

.hero-carousel .carousel-slides .row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  animation: fadeIn .5s ease-in-out
}

.hero-carousel .carousel-slides .row.active {
  display: flex;
  position: relative
}

.category-container {
  text-align: center;
  padding: 40px 0
}

.category-title {
  font-size: 1.063rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 20px;
  text-transform: uppercase
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  margin: 8px;
  background: #fff;
  border-radius: 50px;
  font-size: 1.063rem;
  font-weight: 500;
  color: var(--color-dark);
  box-shadow: rgb(149 157 165 / .2) 0 8px 24px;
  cursor: pointer;
  transition: all .3s ease;
  border: 1px solid #fff0;
  text-decoration: none
}

.category-badge:hover {
  border-color: var(--color-muted);
  transform: translateY(-2px)
}

.category-icon {
  font-size: 1.063rem
}

.post-like-btn i {
  transition: transform .2s, color .2s
}

.post-like-btn.pulse {
  animation: pulse-animation .3s ease
}

@keyframes pulse-animation {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.3)
  }

  100% {
    transform: scale(1)
  }
}

.bg-light-subtle {
  background-color: var(--color-light-gray) !important
}

.custom-card {
  border: none;
  box-shadow: 0 8px 25px rgb(0 0 0 / .08);
  border-radius: 1rem;
  transition: transform .3s ease-in-out, box-shadow .3s ease-in-out
}

.custom-card img {
  transition: all .4s ease
}

.custom-card:hover img {
  transform: scale(1.05)
}

.card-title a {
  font-size: 1.35rem;
  text-decoration: none;
  margin-bottom: .5rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-dark)
}

.card-title a:hover {
  color: var(--color-primary)
}

.custom-card small {
  font-size: 12px !important
}

.custom-card b {
  color: var(--color-primary)
}

.custom-card p {
  font-size: 1.063rem !important;
  color: var(--color-gray)
}

.card-footer i {
  font-size: 16px;
  font-weight: 700
}

.card-footer span {
  color: var(--color-gray)
}

.badge-custom {
  z-index: 2
}

.badge-custom span {
  font-size: .75rem;
  border-radius: .25rem;
  color: var(--color-light)
}

.author {
  font-size: 1.063rem;
  color: var(--color-gray);
  font-weight: 500
}

.btn-book {
  background-color: #fff0;
  border: none;
  color: var(--color-dark)
}

.custom-tooltip {
  position: absolute;
  background: #ffcacf;
  color: #5d0000;
  padding: 6px 10px;
  font-size: 1.063rem;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease
}

.custom-tooltip.show {
  opacity: 1;
  transform: translateY(-12px)
}

.pagination .page-item .page-link {
  border: none;
  color: var(--color-gray);
  background-color: #fff0;
  transition: background-color .3s ease, color .3s ease;
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center
}

.pagination .page-item.active .page-link {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-dark)
}

.pagination .page-item .page-link:hover:not(.active) {
  background-color: var(--color-muted);
  color: var(--color-dark)
}

.sidebar {
  top: 101px;
  position: sticky;
  margin-top: 0
}

.author-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border: 1px solid var(--color-secondary)
}

.profile-photo {
  background-color: var(--color-secondary);
  color: var(--color-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  margin-right: 10px
}

.profile-header-photo {
  background-color: var(--color-secondary);
  color: var(--color-dark);
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase
}

.btn-white {
  color: #000;
  background-color: #fff;
  border: 1px solid #fff;
  transition: all .3s ease
}

.btn-white:hover {
  color: #000;
  background-color: #fff;
  border-color: #fff
}

.btn-white.focus,
.btn-white:focus {
  color: #000;
  background-color: #fff;
  border-color: #fff
}

.btn-white.active,
.btn-white:active,
.show>.btn-white.dropdown-toggle {
  color: #000;
  background-color: #fff;
  border-color: #fff
}

.social-link {
  text-decoration: none;
  color: var(--color-dark)
}

.social-link:hover {
  color: var(--color-primary)
}

.popular-post-item {
  transition: background-color .2s ease
}

.popular-post-item:hover {
  background-color: var(--color-light-gray)
}

.popular-post-title {
  font-size: .9rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis
}

.popular-post-item:hover .popular-post-title {
  color: var(--color-primary) !important
}

.insta-hover {
  position: relative;
  display: block;
  overflow: hidden
}

.insta-hover img {
  transition: transform .3s ease
}

.insta-hover:hover img {
  transform: scale(1.1)
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / .4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .3s ease
}

.insta-hover:hover .insta-overlay {
  opacity: 1
}

.insta-overlay i {
  color: #fff;
  font-size: 1.5rem
}

.list-unstyled li.border-bottom {
  border-color: #e9ecef !important
}

.newsletter-section {
  background-color: var(--color-light-gray);
  padding: 6rem 0
}

.newsletter-title {
  font-size: clamp(2rem, 3.5vw, 3rem)
}

.newsletter-section .newsletter-input-group {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center
}

.newsletter-section .form-control {
  padding-right: 9rem;
  border-color: var(--color-border);
  font-size: 1.063rem
}

.newsletter-section .form-control:focus {
  box-shadow: 0 0 0 .25rem rgb(99 102 241 / .25);
  border-color: var(--color-primary)
}

.newsletter-section .input-group .btn {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  height: calc(100% - 10px);
  z-index: 5;
  font-weight: 500
}

.profile-avatar {
  width: 150px !important;
  height: 150px !important;
  border-radius: 50%;
  box-shadow: rgb(106 178 243 / .56) 0 22px 70px 4px
}

.biografi {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  line-clamp: 10;
  overflow: hidden;
  text-overflow: ellipsis
}

.biografi-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis
}

.footer-section {
  background-color: var(--color-dark);
  color: var(--color-text);
  padding-top: 4rem;
  padding-bottom: 2rem
}

.footer-section .navbar-brand {
  color: #fff !important
}

.footer-section p {
  color: var(--color-footer-muted)
}

.footer-section .social-icons a {
  color: var(--color-footer-muted) !important;
  transition: color .3s ease
}

.footer-section .social-icons a:hover {
  color: var(--color-primary) !important
}

.footer-section h6 {
  color: #fff !important
}

.footer-section .list-unstyled a {
  color: var(--color-footer-muted) !important;
  transition: color .3s ease
}

.footer-section .list-unstyled a:hover {
  color: var(--color-primary) !important
}

@media(max-width:991.98px) {
  .top-header-bar {
    display: none !important
  }

  .navbar-collapse {
    text-align: center
  }

  .navbar-nav {
    margin-bottom: 1rem
  }

  .main-header .d-lg-none {
    display: flex !important;
    justify-content: center
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 3rem)
  }

  .newsletter-section .input-group .btn {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: auto
  }

  .newsletter-section .form-control {
    padding-right: 1.25rem;
    text-align: center
  }

  .footer-section .col-6,
  .footer-section .col-md-4 {
    text-align: center
  }

  .footer-section .d-flex.gap-3.social-icons {
    justify-content: center
  }
}

@media(max-width:767.98px) {
  .hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

  .hero-title {
    font-size: 1.8rem
  }

  .card-img-top {
    height: 180px
  }

  .card-body {
    padding: 1rem
  }

  .card-title {
    font-size: 1.1rem
  }

  .newsletter-section {
    padding: 4rem 0
  }
}

.breadcrumb-nav {
  padding: .5rem 0
}

.breadcrumb-nav .breadcrumb {
  background: 0 0;
  padding: 0;
  font-size: .85rem
}

.breadcrumb-nav .breadcrumb-item a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color .2s ease
}

.breadcrumb-nav .breadcrumb-item a:hover {
  color: #a3ba32
}

.breadcrumb-nav .breadcrumb-item.active {
  color: #6c757d
}

.text-calc-icon {
  color: #ffce2e !important
}

.breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  font-size: .65rem;
  vertical-align: middle;
  color: #adb5bd
}

.hero-carousel {
  width: 100%;
  height: 100%
}

.hero-carousel .swiper-slide {
  height: auto
}

.hero-carousel .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 8px !important;
  background: var(--color-light-gray, #ccc);
  opacity: 1;
  transition: all 0.3s ease
}

.hero-carousel .swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
  transform: scale(1.2)
}

#reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
  background: 0 0
}

#reading-progress-bar {
  height: 100%;
  background: var(--color-primary);
  width: 0;
  transition: width .1s ease-out
}

.wp-caption {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 5px;
  max-width: 100%;
  box-shadow: 0 4px 6px rgb(0 0 0 / .02);
  margin-bottom: 20px;
  text-align: center
}

.wp-caption img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 6px
}

.wp-caption-text {
  font-size: .9rem;
  color: var(--color-gray);
  margin: 10px 0 5px;
  font-style: italic;
  line-height: 1.4
}

.alignnone {
  margin: 5px 20px 20px 0
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 20px
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0
}

.aligncenter::after,
.alignleft::after,
.alignright::after {
  content: "";
  display: block;
  clear: both
}

.entry-content img,
.post-content img {
  max-width: 100%;
  height: auto
}

.bg-blue {
  background-color: #1e90ff !important;
  color: #fff
}

.bg-red {
  background-color: #ff6f61 !important;
  color: #fff
}

.bg-green {
  background-color: #a3ba32 !important;
  color: #fff
}

.bg-purple {
  background-color: #8e44ad !important;
  color: #fff
}

.bg-orange {
  background-color: #f39c12 !important;
  color: #fff
}

.bg-turco {
  background-color: #00bcd4 !important;
  color: #fff
}

.bg-pink {
  background-color: #e91e63 !important;
  color: #fff
}

.bg-yellow {
  background-color: #ffce2e !important;
  color: #2a2a2a
}

.category-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: transform .2s
}

.card:hover .category-icon-box {
  transform: rotate(5deg) scale(1.1)
}

.qa-comment-item {
  list-style: none
}

.qa-comment-item ul.children {
  list-style: none;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 2px solid #e9ecef
}

@media(min-width:768px) {
  .qa-comment-item ul.children {
    margin-left: 50px;
    padding-left: 30px
  }
}

.qa-comments-section #respond {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgb(0 0 0 / .05);
  margin-top: 40px
}

.qa-comments-section #reply-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  color: var(--color-dark)
}

.qa-comments-section .comment-form label {
  font-weight: 700;
  color: var(--color-gray);
  margin-bottom: 5px;
  display: block
}

.qa-comments-section .comment-form input[type=email],
.qa-comments-section .comment-form input[type=text],
.qa-comments-section .comment-form input[type=url],
.qa-comments-section .comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #f8f9fa;
  transition: border-color .2s
}

.qa-comments-section .comment-form input:focus,
.qa-comments-section .comment-form textarea:focus {
  border-color: var(--color-primary);
  outline: 0;
  background: #fff
}

.qa-comments-section .comment-form .submit {
  background: var(--color-secondary);
  color: var(--color-dark);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 6px rgb(255 206 46 / .2)
}

.qa-comments-section .comment-form .submit:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgb(255 206 46 / .3)
}

.profile-dashboard .nav-pills .nav-link {
  color: var(--color-gray)
}

.profile-dashboard .nav-pills .nav-link.active {
  background-color: var(--color-primary);
  color: #fff !important;
  box-shadow: 0 4px 6px rgb(163 186 50 / .3)
}

.limonsu-audio-block {
  transition: transform .2s ease, box-shadow .2s ease
}

.limonsu-audio-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 .5rem 1rem rgb(0 0 0 / .08) !important
}

.limonsu-audio-block audio {
  outline: 0;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgb(0 0 0 / .05));
  border-radius: 50px
}

.limonsu-audio-block .audio-icon {
  font-size: 1.5rem;
  transition: transform .3s ease
}

.limonsu-audio-block:hover .audio-icon {
  transform: scale(1.1) rotate(5deg)
}

.bg-blue {
  background-color: #1e90ff !important
}

.bg-blue-subtle {
  background-color: rgb(30 144 255 / .1) !important;
  color: #1e90ff !important
}

.border-blue-subtle {
  border-color: rgb(30 144 255 / .2) !important
}

.bg-red {
  background-color: #ff6f61 !important
}

.bg-red-subtle {
  background-color: rgb(255 111 97 / .1) !important;
  color: #ff6f61 !important
}

.border-red-subtle {
  border-color: rgb(255 111 97 / .2) !important
}

.bg-green {
  background-color: #a3ba32 !important
}

.bg-green-subtle {
  background-color: rgb(163 186 50 / .1) !important;
  color: #a3ba32 !important
}

.border-green-subtle {
  border-color: rgb(163 186 50 / .2) !important
}

.bg-purple {
  background-color: #8e44ad !important
}

.bg-purple-subtle {
  background-color: rgb(142 68 173 / .1) !important;
  color: #8e44ad !important
}

.border-purple-subtle {
  border-color: rgb(142 68 173 / .2) !important
}

.bg-orange {
  background-color: #f39c12 !important
}

.bg-orange-subtle {
  background-color: rgb(243 156 18 / .1) !important;
  color: #f39c12 !important
}

.border-orange-subtle {
  border-color: rgb(243 156 18 / .2) !important
}

.bg-turco {
  background-color: #00bcd4 !important
}

.bg-turco-subtle {
  background-color: rgb(0 188 212 / .1) !important;
  color: #00bcd4 !important
}

.border-turco-subtle {
  border-color: rgb(0 188 212 / .2) !important
}

.bg-pink {
  background-color: #e91e63 !important
}

.bg-pink-subtle {
  background-color: rgb(233 30 99 / .1) !important;
  color: #e91e63 !important
}

.border-pink-subtle {
  border-color: rgb(233 30 99 / .2) !important
}

.bg-yellow-subtle {
  background-color: rgb(255 206 46 / .1) !important;
  color: #ffce2e !important
}

.border-yellow-subtle {
  border-color: rgb(255 206 46 / .2) !important
}

.bg-yellow {
  background-color: #ffce2e !important
}

.limonsu-youtube-block {
  transition: transform .2s ease, box-shadow .2s ease
}

.limonsu-youtube-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 .5rem 1rem rgb(0 0 0 / .08) !important
}

.limonsu-youtube-block iframe {
  width: 100%;
  height: 100%
}

.limonsu-youtube-block .card-title {
  font-size: 1.1rem;
  line-height: 1.4
}

.limonsu-youtube-block .badge {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  background-color: red !important
}

.mobile-sticky-menu {
  z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom);
  background-color: rgb(255 255 255 / .95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgb(0 0 0 / .05) !important
}

.mobile-sticky-menu .nav-link {
  color: #6c757d;
  transition: all .2s ease;
  position: relative
}

.mobile-sticky-menu .nav-link.active {
  color: #fdc800 !important
}

.mobile-sticky-menu .nav-link.active i {
  transform: scale(1.1);
  transition: transform .2s cubic-bezier(.175, .885, .32, 1.275)
}

.mobile-sticky-menu .nav-link:hover {
  background-color: rgb(0 0 0 / .02)
}

.mobile-sticky-menu .nav-item {
  border-radius: 8px
}

@media(min-width:992px) {
  .mobile-sticky-menu {
    display: none !important
  }
}

@media(max-width:991.98px) {
  body {
    padding-bottom: 70px
  }
}

.category-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px
}

/* Accessibility: Improve Tap Targets */
.mobile-sticky-menu .nav-link {
  padding: 12px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .offcanvas-body .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}

/* === UTILITIES === */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.transition-all {
  transition: all 0.3s ease;
}