    html,body {
      margin: 0;
      padding: 0;
      height: 100vh;
      /*overflow: hidden;*/
      /* background: #0d6efd; */ /* שחור רקע */
      color: #000000; /* צהוב טקסט - תיקון כאן */
      font-family: 'Rubik', sans-serif;
      direction: rtl;
    }


    #scroll-container {
      height: 100vh;
      overflow-y: auto;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE and Edge */
    }
    #scroll-container::-webkit-scrollbar {
      display: none;
    }

    nav.navbar {
      position: sticky;
      top: 0;
      z-index: 9999;
      background: #1f1f1f; /* שחור שקוף */
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #ffde59; /* גבול צהוב */
    }

    .nav-link {
      /* color: #ffde59 !important; */ /* צהוב */
      font-weight: 600;
      cursor: pointer;
      transition: color 0.3s ease;
    }
    .nav-link:hover {
      /* color: #ffffff !important; */ /* לבן בהיר בהובר */
    }

    .section {
        height: 100vh;
        width: 100%;
        margin: 0 auto 4rem auto;
        padding: 4rem 2rem;
        border-radius: 0;
        border: 0;
        background: #ffde59; /* גרדיאנט כהה צהבהב-ירקרק */
        position: relative;
        overflow: hidden;
        opacity: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    @media(min-width: 768px){
      .section {
          transform: translateY(100px);
      }
    }

    .section h2 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }


    .parallax {
      position: absolute;
      top: 10px; right: 10px;
      width: 120px; height: 120px;
      background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=120&q=80') no-repeat center/cover;
      border-radius: 50%;
      box-shadow: 0 0 20px #ffde59;
      pointer-events: none;
      z-index: 2;
    }


    .about-advanced {
      padding: 6rem 2rem;
      user-select: none;
    }

    .about-advanced .container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 4rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .image-container {
      position: relative;
      flex: 1 1 350px;
      max-width: 400px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow:
        0 10px 15px rgba(0,0,0,0.15),
        0 0 20px rgba(255, 222, 89, 0.6);
      cursor: pointer;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .image-container:hover {
      transform: scale(1.05) rotate(1deg);
      box-shadow:
        0 20px 30px rgba(0,0,0,0.3),
        0 0 30px rgba(255, 222, 89, 0.8);
    }

    .image-container img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 24px;
      filter: brightness(0.95);
      transition: filter 0.4s ease;
    }

    .image-container:hover img {
      filter: brightness(1);
    }

    .image-overlay {
      content: "";
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      background: linear-gradient(135deg, transparent 0%, rgba(255, 222, 89, 0.3) 100%);
      border-radius: 24px;
      pointer-events: none;
    }

    .text-container {
      flex: 1 1 450px;
      max-width: 600px;
      text-align: right;
    }

    .text-container h2 {
      /* font-size: 3.6rem; */
      font-weight: 900;
      margin-bottom: 1rem;
      letter-spacing: 0.15em;
      color: #1f1f1f;
      text-transform: uppercase;
      user-select: text;
    }

    .text-container p {
      font-size: 1.5rem;
      line-height: 1.8;
      color: #333333;
      margin-bottom: 2rem;
      font-weight: 500;
      user-select: text;
    }

    .btn-learn-more {
      background: #ffde59;
      color: #1f1f1f;
      font-weight: 700;
      padding: 0.9rem 2rem;
      font-size: 1.3rem;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 15px rgba(255, 222, 89, 0.4);
      transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    }

    .btn-learn-more:hover {
      background: #e6c852;
      box-shadow: 0 10px 20px rgba(230, 200, 82, 0.6);
      transform: translateY(-2px);
    }


    .courses-advanced {
      /* background: #1f1f1f; */
      padding: 6rem 2rem;
      direction: rtl;
      color: #2c2c2c;
      user-select: none;
    }

    .courses-advanced .container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: right;
    }

    .courses-advanced h2 {
      /* font-size: 3.6rem; */
      font-weight: 900;
      margin-bottom: 3rem;
      letter-spacing: 0.15em;
      /* color: #ffde59; */
      text-transform: uppercase;
      user-select: text;
    }

    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 3rem 2rem;
    }

    .course-card {
      background: linear-gradient(145deg, #fffef7, #fff9d6);
      border-radius: 20px;
      box-shadow: 0 10px 20px #0d6efd, 0 6px 12px rgba(0, 0, 0, 0.05);
      padding: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .course-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 30px #0d6efd, 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .course-card img {
      width: 100%;
      margin: 0 auto;
      border-radius: 15px;
      margin-bottom: 1.5rem;
      object-fit: cover;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
      user-select: none;
      /* min-height: 385px; */
      height: 200px;
    }

    .course-card h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #333333;
      user-select: text;
    }

    .course-card p {
      flex-grow: 1;
      font-size: 1.25rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      color: #555555;
      user-select: text;
    }

    .btn-enroll {
      background: #ffde59;
      color: #1f1f1f;
      font-weight: 700;
      padding: 0.9rem 2rem;
      font-size: 1.3rem;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 15px rgba(255, 222, 89, 0.4);
      transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
      align-self: stretch;
      text-align: center;
    }

    .btn-enroll:hover {
      background: #e6c852;
      box-shadow: 0 10px 20px rgba(230, 200, 82, 0.6);
      transform: translateY(-2px);
    }


    .contact-advanced {
      position: relative;
      padding: 6rem 2rem 8rem;
      direction: rtl;
      color: #2c2c2c;
      user-select: none;
      overflow: hidden;
    }

    .contact-advanced .parallax {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.1;
      pointer-events: none;
      filter: brightness(1.2);
      z-index: 0;
    }

    .contact-advanced .container {
      position: relative;
      /* max-width: 480px; */
      margin: 0 auto;
      z-index: 1;
    }

    .contact-advanced h2 {
      /* font-size: 3.6rem; */
      font-weight: 900;
      margin-bottom: 3rem;
      letter-spacing: 0.15em;
      color: #1f1f1f;
      user-select: text;
      text-align: center;
      text-transform: uppercase;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.8rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 0.7rem;
      color: #333333;
      user-select: text;
    }

    .form-group input,
    .form-group textarea {
      padding: 1rem 1.2rem;
      border: 2px solid #ffde59;
      border-radius: 15px;
      font-size: 1.1rem;
      font-family: inherit;
      resize: vertical;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      outline-offset: 2px;
      background: #fff;
      color: #1f1f1f;
      direction: rtl !important;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #e6c852;
      box-shadow: 0 0 12px rgba(230, 200, 82, 0.7);
    }

    .btn-submit {
      /* background: #ffde59; */
      border: none;
      border-radius: 30px;
      padding: 1.2rem 0;
      font-size: 1.5rem;
      font-weight: 700;
      /* color: #1f1f1f; */
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(255, 222, 89, 0.5);
      transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
      user-select: none;
    }

    .btn-submit:hover,
    .btn-submit:focus {
      /* background: #e6c852; */
      box-shadow: 0 14px 30px rgba(230, 200, 82, 0.8);
      transform: translateY(-3px);
      outline: none;
    }


    .footer-advanced {
      background-color: #0d6efd;
      color: #e6e6e6;
      /* padding: 3rem 1.5rem 2rem; */
      direction: rtl;
      user-select: none;
      /* border-top: 3px solid #ffde59; */
      position: relative;
      height: auto;
      height: auto;
      display: flex;
      flex-flow: column;
      align-items: ;
    }

    .footer-content {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 5.3rem;
      position: relative;
      padding-top: 30px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      user-select: text;
      right: 0;
      /* position: absolute; */
      /* top: 0; */
    }

    .footer-logo img {
    }
    @media(max-width: 768px){
      
      .footer-logo img{
        position: relative;
        top: 0;
      }

      .brand img{
          width: 80px;
          height: 80px;
      }

    }

    .footer-brand {
      font-weight: 900;
      font-size: 1.6rem;
      letter-spacing: 0.15em;
      color: #ffde59;
    }

    .footer-nav {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      background: none;
    }

    .footer-nav a {
      color: #fff;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      transition: color 0.3s ease;
      user-select: text;
    }

    .footer-nav a:hover,
    .footer-nav a:focus {
      color: #ffde59;
      outline: none;
    }

    .footer-socials {
      display: flex;
      gap: 1.2rem;
    }

    .footer-socials a svg {
      width: 26px;
      height: 26px;
      fill: #e6e6e6;
      transition: fill 0.3s ease;
      user-select: none;
    }

    .footer-socials a:hover svg,
    .footer-socials a:focus svg {
      fill: #ffde59;
      outline: none;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 10px;
      font-size: 0.9rem;
      color: #fff;
      user-select: text;
    }

    /* רספונסיביות למובייל */
    @media (max-width: 600px) {
      .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }

      .footer-nav {
        justify-content: center;
      }

      .footer-socials {
        justify-content: center;
      }
    }



    .podcast-card {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: none;
      border-radius: 16px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .podcast-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .podcast-audio {
      border-radius: 8px;
      outline: none;
    }

    #podcast-juniors {
      scroll-margin-top: 80px; /* אם יש תפריט עוגנים */
    }

    @media (max-width: 768px) {
      .btn {
        width: 100%;
        margin-bottom: 10px;
      }
    }


    .junior-action-section {
      /* background-color: #fffef7; */
      border-top: 4px solid #ffde59;
      border-bottom: 4px solid #ffde59;
      direction: rtl;
    }

    .junior-action-section h2 {
      color: #1f1f1f;
      letter-spacing: 0.05em;
    }

    .junior-action-section p {
      color: #333333;
    }

    .junior-action-section ul {
      /* padding-right: 1rem; */
    }

    .junior-action-section li {
      margin-bottom: 0.5rem;
    }

    .junior-action-section .btn-warning {
      background-color: #ffde59;
      color: #1f1f1f;
      font-weight: 700;
      border: none;
      box-shadow: 0 8px 15px rgba(255, 222, 89, 0.4);
      transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    }

    .junior-action-section .btn-warning:hover {
      background-color: #e6c852;
      box-shadow: 0 10px 20px rgba(230, 200, 82, 0.6);
      transform: translateY(-2px);
    }



    .article-page {
      margin: 0 auto;
      padding: 2rem 1rem;
      line-height: 1.7;
      color: #333;
    }

    .article-page .hero-image {
      max-height: 400px;
      object-fit: cover;
      width: 100%;
      border-radius: 12px;
      margin-bottom: 2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .article-page blockquote {
      border-right: 4px solid #007bff;
      padding: 1rem 1.5rem;
      margin: 2rem 0;
      background-color: #f1f1f1;
      border-radius: 8px;
      font-style: italic;
      color: #444;
    }

    .article-page pre,
    .article-page code {
      background: #1e1e1e;
      color: #f1f1f1;
      padding: 1rem;
      border-radius: 6px;
      overflow-x: auto;
      font-family: "Courier New", monospace;
      direction: ltr;
      text-align: left;
    }

    .article-page ul {
      padding-right: 1.5rem;
      margin-top: 1rem;
    }

    .article-page ul li {
      margin-bottom: 0.5rem;
    }

    .article-page hr {
      margin: 3rem 0;
      border-top: 1px solid #ccc;
    }

    .article-page .btn-back {
      display: inline-block;
      margin-top: 2rem;
      padding: 0.6rem 1.2rem;
      border: 1px solid #007bff;
      background: transparent;
      color: #007bff;
      border-radius: 6px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .article-page .btn-back:hover {
      background-color: #007bff;
      color: white;
    }



    nav {
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
      z-index: 1000;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      position: relative;
      max-width: 1320px;
      margin: 0 auto;
      margin-bottom: 30px;
    }

    .brand {
      color: #ffde59;
      font-size: 1.6rem;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .menu-toggle {
      background: none;
      border: none;
      color: #fff;
      font-size: 2rem;
      display: none;
      cursor: pointer;
      transition: transform var(--transition-fast);
    }

    .menu-toggle:hover {
      transform: scale(1.1);
    }

    .nav-menu {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 0.5rem;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      color: var(--text);
      padding: 0.8rem 1.2rem;
      text-decoration: none;
      border-radius: 6px;
      display: flex;
      align-items: center;
      transition: background-color var(--transition-fast);
    }

    .nav-link:hover,
    .nav-link:focus {
      background-color: var(--hover-bg);
    }

    .arrow {
      margin-right: 6px;
      font-size: 0.75rem;
      color: var(--accent);
      transition: transform var(--transition-fast);
    }


    .dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background-color: #0d6efd;
      display: none;
      flex-direction: column;
      min-width: 200px;
      padding: 0.5rem 0;
      border-radius: 0 0 8px 8px;
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
      transition: opacity var(--transition-slow), transform var(--transition-slow);
    }

    @media(min-width: 678px){
      .nav-item:hover .arrow {
        transform: rotate(180deg);
      }
      .nav-item:hover .dropdown-menu {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
    }

    .dropdown-menu a {
      color: #fff;
      padding: 0.75rem 1rem;
      text-decoration: none;
      transition: background-color var(--transition-fast);
      white-space: nowrap;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--bg);
        padding: 1rem 0;
        border-top: 1px solid var(--hover-bg);
      }

      .nav-menu.active {
        display: flex;
      }

      .nav-item {
        width: 100%;
      }

      .nav-link {
        justify-content: space-between;
        padding: 1rem 0rem;
      }

      .dropdown-menu {
        position: static;
        opacity: 1 !important;
        transform: none !important;
        display: none;
        background-color: var(--bg-light);
        border-radius: 0;
        padding: 0;
      }

      .nav-item.open .dropdown-menu {
        display: flex;
        border: oldlace;
      }

      .nav-item.open .dropdown-menu li{
        line-height: 2.5;
      }

      .nav-item.open .arrow {
        transform: rotate(180deg);
      }
    }


    .floating-about-section {
      position: relative;
      padding: 100px 0;
      /* background: linear-gradient(to bottom right, #f9fafb, #e9ecef); */
      overflow: hidden;
      height: 100vh;
    }

    .about-content {
      position: relative;
      z-index: 2;
    }

    .profile-image {
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .floating-elements {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 1;
      pointer-events: none;
    }


    .floating-elements {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
      /* רקע שקוף כדי לא להסתיר תוכן אחר */
      background: transparent;
    }

    .float-circle,
    .float-square,
    .float-star,
    .float-diamond {
      position: absolute;
      opacity: 0.1;
      background-color: #1f1f1f;
      filter: drop-shadow(0 0 2px rgba(0,0,0,0.1));
      will-change: transform, opacity;
      transition: opacity 0.3s ease;
    }

    /* עיגול */
    .float-circle {
      border-radius: 50%;
    }

    /* ריבוע עם פינות מעוגלות */
    .float-square {
      border-radius: 8px;
    }

    /* כוכב ויהלום עם צורת קליפ */
    .float-star,
    .float-diamond {
      background-color: #1f1f1f;
      clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%,
        79% 91%, 50% 70%, 21% 91%, 32% 57%,
        2% 35%, 39% 35%
      );
      filter: drop-shadow(0 0 2px rgba(0,0,0,0.15));
    }

    /* יהלומים מסובבים */
    .float-diamond {
      transform: rotate(45deg);
    }

    /* עיגולים - גדלים ומיקומים עבור 12 עיגולים */
    .circle1  { width: 80px;  height: 80px;  top: 10%;  left: 15%;  opacity: 0.15;  background-color: #292929; }
    .circle2  { width: 60px;  height: 60px;  top: 20%;  left: 70%;  opacity: 0.12;  background-color: #3a3a3a; }
    .circle3  { width: 40px;  height: 40px;  top: 60%;  left: 25%;  opacity: 0.1;   background-color: #232323; }
    .circle4  { width: 50px;  height: 50px;  top: 5%;   left: 80%;  opacity: 0.08;  background-color: #1f1f1f; }
    .circle5  { width: 70px;  height: 70px;  top: 45%;  left: 5%;   opacity: 0.14;  background-color: #383838; }
    .circle6  { width: 90px;  height: 90px;  top: 75%;  left: 15%;  opacity: 0.11;  background-color: #2f2f2f; }
    .circle7  { width: 55px;  height: 55px;  top: 30%;  left: 55%;  opacity: 0.13;  background-color: #2b2b2b; }
    .circle8  { width: 35px;  height: 35px;  top: 80%;  left: 70%;  opacity: 0.1;   background-color: #222222; }
    .circle9  { width: 65px;  height: 65px;  top: 40%;  left: 40%;  opacity: 0.09;  background-color: #262626; }
    .circle10 { width: 45px;  height: 45px;  top: 15%;  left: 30%;  opacity: 0.12;  background-color: #2d2d2d; }
    .circle11 { width: 50px;  height: 50px;  top: 65%;  left: 85%;  opacity: 0.1;   background-color: #292929; }
    .circle12 { width: 60px;  height: 60px;  top: 55%;  left: 10%;  opacity: 0.13;  background-color: #1f1f1f; }

    /* ריבועים - גדלים ומיקומים ל-8 ריבועים */
    .square1 { width: 50px;  height: 50px;  top: 35%;  left: 10%;  opacity: 0.14;  background-color: #2a2a2a; }
    .square2 { width: 70px;  height: 70px;  top: 50%;  left: 80%;  opacity: 0.12;  background-color: #383838; }
    .square3 { width: 30px;  height: 30px;  top: 75%;  left: 60%;  opacity: 0.1;   background-color: #1f1f1f; }
    .square4 { width: 40px;  height: 40px;  top: 20%;  left: 45%;  opacity: 0.09;  background-color: #2f2f2f; }
    .square5 { width: 60px;  height: 60px;  top: 60%;  left: 30%;  opacity: 0.11;  background-color: #292929; }
    .square6 { width: 55px;  height: 55px;  top: 15%;  left: 75%;  opacity: 0.13;  background-color: #262626; }
    .square7 { width: 35px;  height: 35px;  top: 85%;  left: 40%;  opacity: 0.1;   background-color: #383838; }
    .square8 { width: 45px;  height: 45px;  top: 5%;   left: 55%;  opacity: 0.14;  background-color: #222222; }

    /* כוכבים - גדלים ומיקומים ל-5 כוכבים */
    .star1 { width: 60px; height: 60px; top: 15%; left: 50%; opacity: 0.13; background-color: #2c2c2c; }
    .star2 { width: 40px; height: 40px; top: 65%; left: 35%; opacity: 0.12; background-color: #232323; }
    .star3 { width: 55px; height: 55px; top: 40%; left: 70%; opacity: 0.1;  background-color: #292929; }
    .star4 { width: 45px; height: 45px; top: 80%; left: 50%; opacity: 0.09;  background-color: #1f1f1f; }
    .star5 { width: 35px; height: 35px; top: 25%; left: 20%; opacity: 0.14; background-color: #383838; }

    /* יהלומים - גדלים ומיקומים ל-5 יהלומים */
    .diamond1 { width: 50px; height: 50px; top: 40%; left: 45%; opacity: 0.12;  }
    .diamond2 { width: 30px; height: 30px; top: 80%; left: 20%; opacity: 0.1;   }
    .diamond3 { width: 45px; height: 45px; top: 25%; left: 65%; opacity: 0.14;  }
    .diamond4 { width: 60px; height: 60px; top: 55%; left: 75%; opacity: 0.1;   }
    .diamond5 { width: 35px; height: 35px; top: 10%; left: 40%; opacity: 0.13;  }



  @media(max-width: 1680px){
    .section {
        opacity: 1 !important;
        margin: 0 !important;
        height: auto !important;
    }
    body.overflow-hidden {
        overflow: inherit !important;
        height: auto !important;
    }
    #scroll-container {
        height: auto;
    }
    .courses-advanced {
        padding: 0rem 0px 2rem;
    }
  }


  .breadcrumb {
    background-color: transparent;
    font-size: 0.95rem;
  }
  .breadcrumb a{
    color: inherit;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #999;
  }

  .pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
  }

  .pagination .page-link {
    color: #000;
  }


  .news-ticker {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    user-select: none;
  }

  .ticker-label {
    white-space: nowrap;
    /*color: #ff4757;  אדום דומיננטי */
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .ticker-wrapper {
    position: relative;
    overflow: hidden;
  }

  .ticker-list {
    animation: ticker-scroll 30s linear infinite;
  }

  .ticker-item {
    white-space: nowrap;
  }

  .ticker-item a {
    transition: color 0.3s ease;
  }

  .ticker-item a:hover {
    color: #ff6b81; /* אדום בהיר יותר בהובר */
  }

  /* אנימציה של גלילה אופקית */
  @keyframes ticker-scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* לרספונסיביות */
  @media (max-width: 576px) {
    .news-ticker {
      font-size: 0.8rem;
    }
  }

  .hot-grid {
    background-color: #121212; /* כהה יותר, אבל לא שחור מוחלט */
  }

  .hot-grid h2 {
    color: #ffc107; /* צבע צהוב בוהק (btn-warning) */
    letter-spacing: 0.05em;
  }

  .hot-article {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hot-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 193, 7, 0.5);
  }

  .hover-underline:hover {
    text-decoration: underline !important;
  }

  .card-title a {
    color: inherit;
    transition: color 0.3s ease;
  }

  .card-title a:hover {
    color: #ffca28;
  }

  .card-text {
    color: #d1d1d1;
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .card-img-top {
    object-fit: cover;
    height: 160px;
    width: 100%;
  }

  .btn-warning {
    background-color: #ffde59;
    border-color: #ffde59;
  }

  .btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
  }
  .text-warning {
      color: #ffde59 !important;
  }

  .category-block {
    background-color: #1a1a1a;
  }

  .category-block h2 {
    color: #ffc107; /* צהוב חזותי */
    letter-spacing: 0.05em;
  }

  .category-article {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .category-article:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.45);
  }

  .hover-underline:hover {
    text-decoration: underline !important;
  }

  .card-title a {
    color: inherit;
    transition: color 0.3s ease;
  }

  .card-title a:hover {
    color: #ffca28;
  }

  .card-text {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .card-img-top {
    object-fit: cover;
    height: 140px;
    width: 100%;
  }

  .btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
    max-width: 100px;
  }

  .btn-outline-warning:hover {
    background-color: #ffc107;
    color: #212529;
    border-color: #ffc107;
  }

  .object-fit-cover {
    object-fit: cover;
  }

  .category-article a.overflow-hidden {
    display: block;
  }

  .object-fit-cover {
    object-fit: cover;
  }

  .podcast-hero-section a.text-decoration-none:hover {
    text-decoration: underline;
  }