
    /* ===== CSS Variables ===== */
    :root {
      --color-primary: #f5d261;
      --color-primary-dark: #f0cf78;
      --color-secondary: #7ed9d9;
      --color-bg-dark: #050814;
      --color-bg-card: rgba(8, 15, 27, 0.97);
      --color-text: #f5f5f5;
      --color-text-muted: #94a6c0;
      --color-border: rgba(245, 210, 97, 0.18);
      --sidebar-width: 280px;
      --header-height: auto;
      --container-padding: 2rem;
      --spacing-unit: 0.5rem;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #1b2330 0%, var(--color-bg-dark) 55%, #020308 100%);
      color: var(--color-text);
      line-height: 1.8;
      overflow-x: hidden;
    }

    a {
      color: var(--color-primary);
      text-decoration: none;
    }

    a:focus-visible {
      outline: 2px solid var(--color-primary);
      outline-offset: 4px;
    }

    .skip-link {
      position: absolute;
      top: -40px;
      left: 1rem;
      background: #000;
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      z-index: 1000;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 1rem;
    }

    .container {
      width: min(1400px, 100% - var(--container-padding));
      margin-inline: auto;
      padding-inline: calc(var(--container-padding) / 2);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        radial-gradient(circle at 10% 20%, rgba(245, 210, 97, 0.08) 0, transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(126, 217, 217, 0.08) 0, transparent 55%);
      opacity: 0.9;
      z-index: -1;
    }

    /* ===== Header ===== */
    header.site-header {
      border-bottom: 1px solid var(--color-border);
      background: linear-gradient(135deg, rgba(11, 20, 30, 0.96), rgba(4, 7, 15, 0.96));
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .site-header-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-areas:
        "brand datetime"
        "controls controls";
      align-items: center;
      gap: 1rem;
      padding-block: 0.75rem;
    }

    .brand {
      grid-area: brand;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      min-width: 0;
    }

    .brand-text {
      flex: 1;
      min-width: 0;
    }

    .brand-text h1 {
      font-size: clamp(0.85rem, 2.5vw + 0.5rem, 1.2rem);
      margin: 0;
      letter-spacing: 0.03em;
      color: #fdf7e6;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-text p {
      margin: 0;
      font-size: clamp(0.65rem, 1.8vw + 0.3rem, 0.85rem);
      color: #d3e0ea;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .moon-logo {
      width: clamp(32px, 5vw, 44px);
      height: clamp(32px, 5vw, 44px);
      flex-shrink: 0;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 30%, var(--color-primary) 0, var(--color-primary) 35%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 1) 60%);
      position: relative;
      box-shadow: 0 0 18px rgba(245, 210, 97, 0.7);
      animation: glow 4s ease-in-out infinite alternate;
    }

    .moon-logo::after {
      content: "";
      position: absolute;
      inset: 6px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.35);
    }

    @keyframes glow {
      0% {
        box-shadow: 0 0 12px rgba(245, 210, 97, 0.4);
        transform: translateY(0);
      }

      100% {
        box-shadow: 0 0 24px rgba(245, 210, 97, 0.9);
        transform: translateY(-1px);
      }
    }

    .date-time-display {
      grid-area: datetime;
      padding: 0.5rem 0.75rem;
      background: rgba(245, 210, 97, 0.08);
      border-radius: 0.5rem;
      border: 1px solid rgba(245, 210, 97, 0.2);
      min-width: fit-content;
    }

    .date-line {
      font-size: clamp(0.65rem, 1.5vw + 0.3rem, 0.85rem);
      color: var(--color-primary);
      margin: 0.15rem 0;
      font-weight: 500;
      text-align: center;
      direction: rtl;
      white-space: nowrap;
    }

    .controls {
      grid-area: controls;
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      gap: var(--spacing-unit);
    }

    .field-group {
      position: relative;
      flex: 1 1 280px;
      min-width: 0;
    }

    .field-group label {
      position: absolute;
      inset-inline-start: 0.8rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: clamp(0.65rem, 1.3vw + 0.3rem, 0.8rem);
      color: #8ea5c1;
      pointer-events: none;
      white-space: nowrap;
      transition: all 0.2s ease;
    }

    #searchInput {
      width: 100%;
      padding: 0.7rem 0.9rem;
      padding-inline-start: 5.5rem;
      border-radius: 999px;
      border: 1px solid #28374b;
      background-color: rgba(4, 10, 20, 0.9);
      color: var(--color-text);
      font-size: clamp(0.75rem, 1.8vw + 0.3rem, 0.95rem);
      transition: all 0.2s ease;
    }

    #searchInput::placeholder {
      color: #6b7c93;
    }

    #searchInput:focus-visible {
      outline: 2px solid var(--color-primary);
      outline-offset: 2px;
      border-color: var(--color-primary);
      background-color: rgba(4, 10, 20, 1);
    }

    #searchInput:focus-visible+label {
      color: var(--color-primary);
    }

    button {
      font-family: inherit;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      padding: 0.7rem 1.2rem;
      font-size: clamp(0.7rem, 1.6vw + 0.3rem, 0.9rem);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.15s ease;
      white-space: nowrap;
    }

    button:focus-visible {
      outline: 2px solid var(--color-primary);
      outline-offset: 2px;
    }

    button:active {
      transform: scale(0.97);
    }

    #stopAllBtn {
      background: linear-gradient(135deg, #f34b4b, #bd2626);
      color: #fff;
      box-shadow: 0 0 10px rgba(243, 75, 75, 0.55);
      flex: 0 1 auto;
    }

    #stopAllBtn:hover {
      background: linear-gradient(135deg, #ff6666, #d52f2f);
      box-shadow: 0 0 15px rgba(243, 75, 75, 0.75);
    }

    /* ===== Hero ===== */
    .hero {
      padding-block: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
      text-align: center;
    }

    .hero-title {
      font-size: clamp(1.4rem, 4vw + 0.5rem, 2.3rem);
      margin: 0 0 0.6rem;
      color: #fdf7e6;
      line-height: 1.3;
    }

    .hero-subtitle {
      margin: 0;
      color: #d3e0ea;
      font-size: clamp(0.8rem, 2vw + 0.3rem, 1rem);
      max-width: 45rem;
      margin-inline: auto;
      line-height: 1.6;
      padding-inline: 1rem;
    }

    .islamic-arch {
      position: relative;
      margin: clamp(1rem, 3vw, 1.8rem) auto clamp(1rem, 2.5vw, 1.5rem);
      width: min(450px, 95%);
      height: clamp(120px, 20vw, 170px);
      background: radial-gradient(circle at top, rgba(245, 210, 97, 0.25) 0, transparent 60%);
      border-radius: 50% 50% 45% 45% / 100% 100% 35% 35%;
      border: 1px solid rgba(245, 210, 97, 0.4);
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
      overflow: hidden;
    }

    .mosque-line {
      position: absolute;
      inset-inline: 14%;
      bottom: 14%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(245, 210, 97, 0.8), transparent);
    }

    .minaret {
      position: absolute;
      bottom: 14%;
      width: clamp(8px, 1.5vw, 12px);
      height: clamp(45px, 8vw, 65px);
      background: linear-gradient(180deg, rgba(245, 210, 97, 0.3), rgba(240, 207, 120, 0.9));
      border-radius: 999px;
    }

    .minaret::before {
      content: "";
      position: absolute;
      top: -16px;
      left: -4px;
      right: -4px;
      height: 16px;
      background: radial-gradient(circle at 50% 0, rgba(245, 210, 97, 1) 0, rgba(245, 210, 97, 0) 75%);
    }

    .minaret.left {
      left: 18%;
    }

    .minaret.right {
      right: 18%;
    }

    .dome {
      position: absolute;
      bottom: 14%;
      left: 50%;
      transform: translateX(-50%);
      width: clamp(90px, 18vw, 130px);
      height: clamp(50px, 10vw, 75px);
      background: radial-gradient(circle at 50% 0, rgba(245, 210, 97, 0.95) 0, rgba(245, 210, 97, 0.1) 65%);
      border-radius: 50% 50% 0 0;
      box-shadow: 0 0 18px rgba(245, 210, 97, 0.6);
    }

    .stars-layer span {
      position: absolute;
      width: 2px;
      height: 2px;
      background: var(--color-text);
      border-radius: 50%;
      opacity: 0.6;
      animation: twinkle 4s ease-in-out infinite alternate;
    }

    .stars-layer span:nth-child(1) {
      top: 14%;
      left: 18%;
      animation-delay: 0s;
    }

    .stars-layer span:nth-child(2) {
      top: 8%;
      left: 60%;
      animation-delay: 1s;
    }

    .stars-layer span:nth-child(3) {
      top: 32%;
      left: 80%;
      animation-delay: 1.7s;
    }

    .stars-layer span:nth-child(4) {
      top: 30%;
      left: 6%;
      animation-delay: 2.2s;
    }

    .stars-layer span:nth-child(5) {
      top: 18%;
      left: 40%;
      animation-delay: 2.9s;
    }

    @keyframes twinkle {
      0% {
        opacity: 0.3;
        transform: scale(1);
      }

      100% {
        opacity: 1;
        transform: scale(1.5);
      }
    }

    /* ===== Main Layout with Sidebar ===== */
    .main-wrapper {
      display: grid;
      grid-template-columns: var(--sidebar-width) 1fr;
      gap: clamp(1rem, 2vw, 1.5rem);
      padding-block: 1rem 2.5rem;
      align-items: flex-start;
    }

    /* ===== Sidebar ===== */
    .sidebar {
      background: linear-gradient(145deg, var(--color-bg-card), rgba(10, 18, 32, 0.97));
      border-radius: 1rem;
      padding: 1.2rem;
      border: 1px solid var(--color-border);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
      position: sticky;
      top: 150px;
      max-height: calc(100vh - 10rem);
      overflow-y: auto;
      overflow-x: hidden;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      scrollbar-width: thin;
      scrollbar-color: rgba(245, 210, 97, 0.3) transparent;
    }

    .sidebar::-webkit-scrollbar {
      width: 6px;
    }

    .sidebar::-webkit-scrollbar-track {
      background: transparent;
    }

    .sidebar::-webkit-scrollbar-thumb {
      background: rgba(245, 210, 97, 0.3);
      border-radius: 999px;
    }

    .sidebar::-webkit-scrollbar-thumb:hover {
      background: rgba(245, 210, 97, 0.5);
    }

    .sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(245, 210, 97, 0.2);
    }

    .sidebar-title {
      font-size: clamp(0.95rem, 2vw, 1.15rem);
      color: var(--color-primary);
      margin: 0;
    }

    .sidebar-toggle {
      display: none;
      background: var(--color-primary);
      color: #000;
      padding: 0.6rem 0.9rem;
      border-radius: 0.6rem;
      font-size: 1.3rem;
      line-height: 1;
      box-shadow: 0 4px 12px rgba(245, 210, 97, 0.4);
      z-index: 101;
    }

    .sidebar-toggle:hover {
      background: var(--color-primary-dark);
      transform: scale(1.05);
    }

    .category-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .category-item {
      margin-bottom: 0.5rem;
    }

    .category-btn {
      width: 100%;
      padding: 0.75rem 1rem;
      background: rgba(245, 210, 97, 0.05);
      border: 1px solid rgba(245, 210, 97, 0.15);
      border-radius: 0.6rem;
      color: var(--color-text);
      text-align: right;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: clamp(0.8rem, 1.5vw, 0.95rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .category-btn:hover {
      background: rgba(245, 210, 97, 0.12);
      border-color: rgba(245, 210, 97, 0.3);
      transform: translateX(-3px);
    }

    .category-btn.active {
      background: linear-gradient(135deg, rgba(245, 210, 97, 0.25), rgba(245, 210, 97, 0.15));
      border-color: var(--color-primary);
      color: var(--color-primary);
      font-weight: 600;
    }

    .category-count {
      background: rgba(245, 210, 97, 0.2);
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      font-size: clamp(0.7rem, 1.3vw, 0.8rem);
      color: var(--color-primary);
      font-weight: 600;
    }

    /* Main Content Area */
    .content-area {
      min-width: 0;
    }

    #radiosContainer {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
      gap: clamp(0.8rem, 2vw, 1.2rem);
    }

    .radio-card {
      background: linear-gradient(145deg, var(--color-bg-card), rgba(10, 18, 32, 0.97));
      border-radius: 1rem;
      padding: 1rem;
      border: 1px solid var(--color-border);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
      position: relative;
      overflow: hidden;
    }

    .radio-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top center, rgba(245, 210, 97, 0.12) 0, transparent 55%);
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
    }

    .radio-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
      border-color: rgba(245, 210, 97, 0.4);
    }

    .radio-card:hover::before {
      opacity: 1;
    }

    .radio-card.active {
      border-color: var(--color-primary);
      box-shadow: 0 0 20px rgba(245, 210, 97, 0.55);
      background: radial-gradient(circle at top, rgba(245, 210, 97, 0.15), var(--color-bg-card) 55%);
    }

    .radio-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      margin-bottom: 0.6rem;
    }

    .radio-title {
      font-size: clamp(0.85rem, 1.8vw, 1rem);
      font-weight: 600;
      color: #fdf7e6;
      flex: 1;
      min-width: 0;
      line-height: 1.4;
    }

    .radio-badge {
      font-size: clamp(0.65rem, 1.2vw, 0.75rem);
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(126, 217, 217, 0.8);
      color: #bff4f4;
      background-color: rgba(6, 39, 44, 0.7);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .radio-meta {
      font-size: clamp(0.72rem, 1.4vw, 0.82rem);
      color: var(--color-text-muted);
      margin-bottom: 0.5rem;
      line-height: 1.5;
    }

    audio {
      width: 100%;
      height: clamp(32px, 5vw, 40px);
    }

    audio:focus-visible {
      outline: 2px solid var(--color-primary);
      outline-offset: 4px;
      border-radius: 4px;
    }

    /* ===== Footer ===== */
    footer {
      border-top: 1px solid var(--color-border);
      padding-block: 1.5rem 1.8rem;
      background: linear-gradient(135deg, rgba(4, 7, 15, 0.98), rgba(6, 9, 18, 0.98));
      font-size: clamp(0.7rem, 1.5vw, 0.85rem);
      color: #9fb0c7;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
    }

    .accessibility-note {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
    }

    .pill {
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(159, 176, 199, 0.6);
      font-size: clamp(0.65rem, 1.3vw, 0.75rem);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ===== Responsive Media Queries ===== */

    /* Large Tablets and Small Desktops */
    @media (max-width: 1200px) {
      :root {
        --sidebar-width: 240px;
        --container-padding: 1.5rem;
      }

      .main-wrapper {
        gap: 1.2rem;
      }

      #radiosContainer {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
      }
    }

    /* Tablets */
    @media (max-width: 1024px) {
      :root {
        --container-padding: 1rem;
      }

      .main-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .sidebar {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: min(320px, 85vw);
        max-height: 100vh;
        z-index: 100;
        transform: translateX(100%);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
        border-radius: 0;
      }

      .sidebar.open {
        transform: translateX(0);
      }

      .sidebar-toggle {
        display: flex;
        position: fixed;
        bottom: 2rem;
        right: 1.5rem;
      }

      #radiosContainer {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
      }
    }

    /* Mobile Landscape and Small Tablets */
    @media (max-width: 768px) {
      .site-header-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
          "brand"
          "datetime"
          "controls";
        gap: 0.8rem;
      }

      .date-time-display {
        width: 100%;
        text-align: center;
      }

      .controls {
        gap: 0.6rem;
      }

      .field-group {
        flex: 1 1 100%;
      }

      #stopAllBtn {
        flex: 1 1 100%;
      }

      .hero {
        padding-inline: 0.5rem;
      }

      #radiosContainer {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
        gap: 1rem;
      }
    }

    /* Mobile Portrait */
    @media (max-width: 600px) {
      :root {
        --container-padding: 0.5rem;
      }

      .container {
        width: 100%;
        padding-inline: 0.75rem;
      }

      .site-header-inner {
        padding-block: 0.6rem;
        gap: 0.6rem;
      }

      .brand {
        gap: 0.6rem;
      }

      .field-group label {
        font-size: 0.7rem;
      }

      #searchInput {
        padding: 0.6rem 0.7rem;
        padding-inline-start: 4.8rem;
      }

      .hero {
        padding-block: 1.2rem 0.8rem;
      }

      .islamic-arch {
        height: clamp(100px, 18vw, 140px);
      }

      .sidebar {
        width: min(280px, 90vw);
        padding: 1rem;
      }

      .sidebar-toggle {
        bottom: 1.5rem;
        right: 1rem;
        padding: 0.55rem 0.8rem;
      }

      #radiosContainer {
        grid-template-columns: 1fr;
        gap: 0.9rem;
      }

      .radio-card {
        padding: 0.85rem;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
      }
    }

    /* Small Mobile */
    @media (max-width: 400px) {
      .brand-text p {
        display: none;
      }

      .field-group label {
        position: static;
        transform: none;
        display: block;
        margin-bottom: 0.3rem;
        font-size: 0.68rem;
        text-align: right;
      }

      #searchInput {
        padding-inline-start: 0.7rem;
      }

      .date-time-display {
        padding: 0.4rem 0.5rem;
      }

      .category-btn {
        padding: 0.65rem 0.85rem;
      }
    }

    /* Extra Small Mobile */
    @media (max-width: 360px) {
      .hero-title {
        line-height: 1.4;
      }

      .sidebar {
        width: 100vw;
      }

      .radio-header {
        flex-wrap: wrap;
      }

      .radio-badge {
        order: 1;
        width: 100%;
        text-align: center;
        margin-top: 0.3rem;
      }
    }

    /* Landscape Orientation */
    @media (max-height: 600px) and (orientation: landscape) {
      .hero {
        padding-block: 1rem 0.5rem;
      }

      .islamic-arch {
        height: 100px;
        margin-block: 0.8rem;
      }

      .sidebar {
        max-height: 90vh;
      }
    }

    /* Dark Mode Support */
    @media (prefers-color-scheme: dark) {
      body {
        background: radial-gradient(circle at top, #0f1419 0%, #020408 55%, #000000 100%);
      }
    }

    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* High Contrast Mode */
    @media (prefers-contrast: high) {
      :root {
        --color-primary: #ffd700;
        --color-text: #ffffff;
        --color-border: rgba(255, 215, 0, 0.4);
      }

      .radio-card,
      .sidebar {
        border-width: 2px;
      }
    }

    /* Print Styles */
    @media print {

      .sidebar,
      .sidebar-toggle,
      .controls,
      audio,
      .skip-link {
        display: none !important;
      }

      .main-wrapper {
        grid-template-columns: 1fr;
      }

      body {
        background: white;
        color: black;
      }

      .radio-card {
        break-inside: avoid;
        page-break-inside: avoid;
      }
    }

.background-play-notice {
    position: fixed;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(245, 210, 97, 0.95), rgba(240, 207, 120, 0.95));
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(245, 210, 97, 0.5);
    z-index: 1000;
    animation: slideUp 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
}

@keyframes slideUp {
    from {
        bottom: 4rem;
        opacity: 0;
    }
    to {
        bottom: 6rem;
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        bottom: 4rem;
    }
}


/* ===== Favorites Feature ===== */
.favorite-btn {
  position: absolute;
  top: 75px;
  left: 0.5rem;
  background: #38382a;
  border: 1px solid rgba(245, 210, 97, 0.3);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.2s ease;
  z-index: 10;
}

.favorite-btn:hover {
  background: rgba(245, 210, 97, 0.15);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.favorite-btn.active {
  background: linear-gradient(135deg, rgba(245, 210, 97, 0.3), rgba(245, 210, 97, 0.2));
  border-color: var(--color-primary);
}

