/**
 * Tailwind-style Utility Classes
 * Custom implementation for TeenSerie theme
 * 
 * @package TeenSerie
 */

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.max-w-7xl {
  max-width: 80rem; /* 1280px */
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   SPACING - PADDING
   ======================================== */

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.pl-2 { padding-left: 0.5rem; }
.pl-4 { padding-left: 1rem; }
.pl-8 { padding-left: 2rem; }
.pl-12 { padding-left: 3rem; }

.pr-2 { padding-right: 0.5rem; }
.pr-4 { padding-right: 1rem; }
.pr-8 { padding-right: 2rem; }

.pt-24 { padding-top: 6rem; }
.pb-12 { padding-bottom: 3rem; }

@media (min-width: 768px) {
  .md\:p-6 { padding: 1.5rem; }
  .md\:p-8 { padding: 2rem; }
}

@media (min-width: 1024px) {
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:pb-12 { padding-bottom: 3rem; }
  .lg\:pt-24 { padding-top: 6rem; }
}

/* ========================================
   SPACING - MARGIN
   ======================================== */

.m-0 { margin: 0; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }

.-my-4 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}

/* ========================================
   SPACING - GAP
   ======================================== */

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.gap-x-8 { column-gap: 2rem; }
.gap-y-4 { row-gap: 1rem; }

.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-20 > * + * { margin-top: 5rem; }

/* ========================================
   DISPLAY
   ======================================== */

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* ========================================
   FLEXBOX
   ======================================== */

.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:justify-start { justify-content: flex-start; }
  .lg\:text-left { text-align: left; }
}

/* ========================================
   GRID
   ======================================== */

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ========================================
   WIDTH & HEIGHT
   ======================================== */

.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-12 { width: 3rem; }
.w-40 { width: 10rem; }
.w-64 { width: 16rem; }
.w-full { width: 100%; }

.max-w-\[200px\] {
  max-width: 200px;
}

.max-w-none {
  max-width: none;
}

@media (min-width: 768px) {
  .md\:w-48 { width: 12rem; }
}

@media (min-width: 1024px) {
  .lg\:w-64 { width: 16rem; }
  .lg\:max-w-none { max-width: none; }
}

.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-12 { height: 3rem; }
.h-24 { height: 6rem; }
.h-40 { height: 10rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }

/* ========================================
   POSITIONING
   ======================================== */

.relative { position: relative; }
.absolute { position: absolute; }

.inset-0 { 
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-1\/2 { top: 50%; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

.z-10 { z-index: 10; }

/* ========================================
   TRANSFORMS
   ======================================== */

.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-x-4 { transform: translateX(-1rem); }
.translate-x-4 { transform: translateX(1rem); }

/* ========================================
   BORDERS
   ======================================== */

.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.5rem; }
.rounded-3xl { border-radius: 2rem; }

.border { border-width: 1px; }

.border-slate-300\/50 {
  border-color: rgba(203, 213, 225, 0.5);
}

body.dark-mode .dark\:border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   BACKGROUNDS
   ======================================== */

.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: var(--color-slate-50); }
.bg-slate-100 { background-color: var(--color-slate-100); }
.bg-slate-200 { background-color: var(--color-slate-200); }
.bg-slate-800 { background-color: var(--color-slate-800); }
.bg-primary-lime { background-color: var(--color-primary-lime); }
.bg-accent-pink { background-color: #EC4899; }
.bg-accent-pink\/90 { background-color: rgba(236, 72, 153, 0.9); }
.bg-secondary-purple { background-color: #8B5CF6; }

/* Genre highlight colors */
.bg-red-500 { background-color: #ef4444; }
.bg-pink-500 { background-color: #ec4899; }
.bg-yellow-500 { background-color: #eab308; }
.bg-purple-500 { background-color: #a855f7; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-green-500 { background-color: #22c55e; }
.bg-indigo-500 { background-color: #6366f1; }

/* Hover background colors */
.hover\:bg-accent-pink\/90:hover { background-color: rgba(236, 72, 153, 0.9); }
.hover\:bg-primary-lime\/90:hover { background-color: rgba(163, 230, 53, 0.9); }

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-primary-lime\/20 {
  --tw-gradient-from: rgba(163, 230, 53, 0.2);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 230, 53, 0));
}

.to-secondary-purple\/20 {
  --tw-gradient-to: rgba(139, 92, 246, 0.2);
}

.from-primary-lime {
  --tw-gradient-from: var(--color-primary-lime);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(163, 230, 53, 0));
}

.from-accent-pink {
  --tw-gradient-from: #EC4899;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
}

.from-accent-teal {
  --tw-gradient-from: var(--color-accent-teal);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 184, 166, 0));
}

.to-secondary-purple {
  --tw-gradient-to: #8B5CF6;
}

.from-slate-50 {
  --tw-gradient-from: var(--color-slate-50);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 250, 252, 0));
}

.to-accent-teal {
  --tw-gradient-to: var(--color-accent-teal);
}

.to-lime-500 {
  --tw-gradient-to: #84cc16;
}

.to-teal-600 {
  --tw-gradient-to: #0d9488;
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.bg-white\/80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg-slate-100\/70 {
  background-color: rgba(241, 245, 249, 0.7);
}

.bg-slate-200\/80 {
  background-color: rgba(226, 232, 240, 0.8);
}

/* Dark mode backgrounds */
body.dark-mode .dark\:bg-slate-900 {
  background-color: var(--color-slate-900);
}

body.dark-mode .dark\:bg-slate-800 {
  background-color: var(--color-slate-800);
}

body.dark-mode .dark\:bg-slate-700 {
  background-color: var(--color-slate-700);
}

body.dark-mode .dark\:bg-slate-800\/80 {
  background-color: rgba(30, 41, 59, 0.8);
}

body.dark-mode .dark\:bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}

body.dark-mode .dark\:bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .dark\:from-slate-900 {
  --tw-gradient-from: var(--color-slate-900);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0));
}

/* Responsive backgrounds */
@media (min-width: 768px) {
  .md\:bg-slate-100\/70 {
    background-color: rgba(241, 245, 249, 0.7);
  }

  body.dark-mode .md\:dark\:bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
  }

  body.dark-mode .md\:dark\:bg-black\/40 {
    background-color: rgba(0, 0, 0, 0.4);
  }

  .md\:border {
    border-width: 1px;
  }

  .md\:backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .md\:border-slate-300\/50 {
    border-color: rgba(203, 213, 225, 0.5);
  }

  body.dark-mode .md\:dark\:border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
  }
}

/* ========================================
   TEXT COLORS
   ======================================== */

.text-white { color: #ffffff; }
.text-slate-900 { color: var(--color-slate-900); }
.text-slate-800 { color: var(--color-slate-800); }
.text-slate-700 { color: var(--color-slate-700); }
.text-slate-600 { color: var(--color-slate-600); }
.text-slate-500 { color: var(--color-slate-500); }
.text-slate-400 { color: var(--color-slate-400); }
.text-slate-300 { color: var(--color-slate-300); }
.text-slate-200 { color: var(--color-slate-200); }
.text-primary-lime { color: var(--color-primary-lime); }

/* Font sizes */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

body.dark-mode .dark\:text-white {
  color: #ffffff;
}

body.dark-mode .dark\:text-slate-200 {
  color: var(--color-slate-200);
}

body.dark-mode .dark\:text-slate-300 {
  color: var(--color-slate-300);
}

body.dark-mode .dark\:text-slate-400 {
  color: var(--color-slate-400);
}

/* Responsive text */
@media (min-width: 768px) {
  .md\:text-white { color: #ffffff; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-slate-300 { color: var(--color-slate-300); }
}

/* ========================================
   FONT WEIGHTS
   ======================================== */

.font-normal { font-weight: 400; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* ========================================
   TEXT ALIGNMENT
   ======================================== */

.text-left { text-align: left; }
.text-center { text-align: center; }

/* ========================================
   ASPECT RATIO
   ======================================== */

.aspect-video {
  aspect-ratio: 16 / 9;
}

/* ========================================
   OVERFLOW
   ======================================== */

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* ========================================
   SHADOWS
   ======================================== */

.shadow-sm { 
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.shadow-\[0_15px_30px_rgba\(163\2c 230\2c 53\2c 0\.1\)\] {
  box-shadow: 0 15px 30px rgba(163, 230, 53, 0.1);
}

body.dark-mode .dark\:shadow-\[0_15px_30px_rgba\(163\2c 230\2c 53\2c 0\.15\)\] {
  box-shadow: 0 15px 30px rgba(163, 230, 53, 0.15);
}

/* Hover shadow effects */
.hover\:shadow-accent-pink\/30:hover {
  box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3), 0 4px 6px -4px rgba(236, 72, 153, 0.3);
}

.hover\:shadow-primary-lime\/30:hover {
  box-shadow: 0 10px 15px -3px rgba(163, 230, 53, 0.3), 0 4px 6px -4px rgba(163, 230, 53, 0.3);
}

/* ========================================
   TRANSITIONS
   ======================================== */

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* ========================================
   CURSOR
   ======================================== */

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

/* ========================================
   TEXT COLORS
   ======================================== */

.text-slate-900 {
  color: #0f172a;
}

.dark .text-white,
body.dark-mode .text-white {
  color: #ffffff;
}

.dark .dark\:text-white,
body.dark-mode .dark\:text-white {
  color: #ffffff !important;
}

.dark .dark\:text-slate-300,
body.dark-mode .dark\:text-slate-300 {
  color: #cbd5e1 !important;
}

.dark .dark\:text-slate-700,
body.dark-mode .dark\:text-slate-700 {
  color: #334155 !important;
}

.dark .dark\:bg-slate-800,
body.dark-mode .dark\:bg-slate-800 {
  background-color: #1e293b !important;
}

/* ========================================
   GRADIENT BACKGROUNDS
   ======================================== */

.from-accent-pink {
  --tw-gradient-from: #EC4899;
}

.to-secondary-purple {
  --tw-gradient-to: #8B5CF6;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to));
}

/* ========================================
   BACKDROP BLUR
   ======================================== */

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ========================================
   TRANSFORM
   ======================================== */

.translate-y-full {
  transform: translateY(100%);
}

.translate-y-0 {
  transform: translateY(0);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

/* ========================================
   POSITION & LAYOUT
   ======================================== */

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-20 {
  top: 5rem;
}

.left-1\/2 {
  left: 50%;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-\\[100\\] {
  z-index: 100;
}

/* ========================================
   MODAL SPECIFIC
   ======================================== */

.max-h-\\[85vh\\] {
  max-height: 85vh;
}

.overflow-y-auto {
  overflow-y: auto;
}

.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-400 {
  transition-duration: 400ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-black\\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-red-500\\/20 {
  background-color: rgba(239, 68, 68, 0.2);
}

.hover\\:bg-red-500\\/30:hover {
  background-color: rgba(239, 68, 68, 0.3);
}

.text-red-500 {
  color: #ef4444;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.w-14 {
  width: 3.5rem;
}

.h-14 {
  height: 3.5rem;
}

.w-7 {
  width: 1.75rem;
}

.h-7 {
  height: 1.75rem;
}

.w-1\\.5 {
  width: 0.375rem;
}

.h-1\\.5 {
  height: 0.375rem;
}

.bg-slate-300 {
  background-color: #cbd5e1;
}

.dark .bg-slate-600,
body.dark-mode .bg-slate-600 {
  background-color: #475569;
}

.border-b {
  border-bottom-width: 1px;
}

.border-slate-200 {
  border-color: #e2e8f0;
}

.dark .border-slate-700,
body.dark-mode .border-slate-700 {
  border-color: #334155;
}

.text-slate-700 {
  color: #334155;
}

.dark .text-slate-300,
body.dark-mode .text-slate-300 {
  color: #cbd5e1;
}

.text-slate-600 {
  color: #475569;
}

.dark .text-slate-400,
body.dark-mode .text-slate-400 {
  color: #94a3b8;
}

.bg-slate-100 {
  background-color: #f1f5f9;
}

.dark .bg-slate-700\\/50,
body.dark-mode .bg-slate-700\\/50 {
  background-color: rgba(51, 65, 85, 0.5);
}

.pl-6 {
  padding-left: 1.5rem;
}

/* ========================================
   REPORT MODAL
   ======================================== */

.z-\\[60\\] {
  z-index: 60;
}

.z-\\[70\\] {
  z-index: 70;
}

.bg-black\\/60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.scale-95 {
  transform: scale(0.95);
}

.scale-100 {
  transform: scale(1);
}

.justify-center {
  justify-content: center;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.bg-slate-200 {
  background-color: #e2e8f0;
}

.dark .bg-slate-600,
body.dark-mode .bg-slate-600 {
  background-color: #475569;
}

.hover\\:bg-slate-200:hover {
  background-color: #e2e8f0;
}

.dark .hover\\:bg-slate-600:hover,
body.dark-mode .hover\\:bg-slate-600:hover {
  background-color: #475569;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.flex-1 {
  flex: 1 1 0%;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.z-\\[60\\] {
  z-index: 60;
}

.z-\\[70\\] {
  z-index: 70;
}

.z-\\[100\\] {
  z-index: 100;
}

.z-\\[110\\] {
  z-index: 110;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}

/* ========================================
   OPACITY
   ======================================== */

.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* ========================================
   CURSOR
   ======================================== */

.cursor-pointer { cursor: pointer; }

/* ========================================
   LINE CLAMP
   ======================================== */

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (min-width: 768px) {
  .md\:block { display: block; }
}

/* ========================================
   OBJECT FIT
   ======================================== */

.object-cover {
  object-fit: cover;
}

/* ========================================
   HOVER STATES
   ======================================== */

.hover\:bg-white:hover {
  background-color: #ffffff;
}

.hover\:bg-primary-lime:hover {
  background-color: var(--color-primary-lime);
}

.hover\:bg-primary-lime\/20:hover {
  background-color: rgba(163, 230, 53, 0.2);
}

.hover\:bg-primary-lime\/90:hover {
  background-color: rgba(163, 230, 53, 0.9);
}

.hover\:bg-accent-pink\/90:hover {
  background-color: rgba(236, 72, 153, 0.9);
}

.hover\:shadow-accent-pink\/30:hover {
  box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
}

.hover\:text-slate-900:hover {
  color: var(--color-slate-900);
}

.hover\:text-primary-lime:hover {
  color: var(--color-primary-lime);
}

.hover\:text-black:hover {
  color: #000;
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

body.dark-mode .dark\:hover\:bg-slate-800:hover {
  background-color: var(--color-slate-800);
}

/* ========================================
   GROUP HOVER
   ======================================== */

.group {
  position: relative;
}

.group\/section:hover .group-hover\/section\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* ========================================
   RING (FOCUS STATES)
   ======================================== */

.ring-2 {
  box-shadow: 0 0 0 2px currentColor;
}

.ring-primary-lime {
  --tw-ring-color: var(--color-primary-lime);
  box-shadow: 0 0 0 2px var(--tw-ring-color);
}

/* ========================================
   FILL
   ======================================== */

.fill-current {
  fill: currentColor;
}

/* ========================================
   BACKDROP FILTER
   ======================================== */

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ========================================
   BORDER-RADIUS FIX FOR OVERFLOW-HIDDEN
   Fix globale per preservare bordi arrotondati
   ======================================== */

.overflow-hidden {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Forza preservazione border-radius su transform */
.overflow-hidden[class*="rounded"] {
  transform: translateZ(0);
  isolation: isolate;
}
