    :root {
      --clr-bg:#0f1113;
      --clr-bg-alt:#1c1e22;
      --clr-txt:#f1f1f1;
      --clr-accent:#ff4444;
      --clr-muted:#888888;
      --spacing-lg:64px;
      --spacing-md:32px;
      --spacing-sm:16px;
      --radius-lg:4.8px;
    }
    * {
      margin:0;
      padding:0;
      box-sizing:border-box;
      direction:rtl;
      text-decoration:none;
    }
    html {
      scroll-behavior:smooth;
    }
    body {
      background:var(--clr-bg);
      color:var(--clr-txt);
      font-family:"Heebo",sans-serif;
      font-weight:900;
      line-height:1.9;
      overflow-x:hidden;
      display:flex;
      flex-direction:column;
      min-height:100vh;
    }
    main {
      flex:1 1 auto;
      padding:160px var(--spacing-md) var(--spacing-lg);
      max-width:1000px;
      margin:auto;
    }
    h1 {
      font-family: "Karantina", cursive;
      font-weight: 400;
      text-align: center;
      font-size: 120px;
      letter-spacing: 0px;
      color: #ff4444;
      margin: 0;
    }
    p {
      font-size:0.99rem;
      margin-bottom:var(--spacing-sm);
      line-height:2.1;
    }
    footer {
      background:var(--clr-bg-alt);
      text-align:right;
      padding:32px;
      font-size:14px;
      color:var(--clr-muted);
      border-top:2px solid #3a3a3a;
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      align-items:center;
    }
    .footer-sections {
      margin-top:24px;
      display:flex;
      gap:64px;
      flex-wrap:wrap;
      justify-content:flex-start;
      flex:1 1 600px;
    }
    .footer-section h3 {
      color:var(--clr-txt);
      font-size:20px;
      margin:0 0 8px;
      border-bottom:2px solid var(--clr-accent);
      display:inline-block;
      font-weight:900;
    }
    .footer-section a {
      color:var(--clr-txt);
      font-weight:700;
      display:block;
      margin-bottom:6px;
      transition:color .25s ease;
    }
    .footer-section a:hover {
      color:var(--clr-accent);
    }
    .footer-copy {
      order:3;
      flex:0 0 100%;
      width:100%;
      text-align:center;
      margin:32px 0 0;
      color:var(--clr-muted);
    }
    .footer-quote {
      order:2;
      position:relative;
      max-width:340px;
      padding:0 59px;
      font-family:"Gveret Levin",sans-serif;
      font-size:22px;
      line-height:1.5;
      color:#f1f1f1;
      text-align:right;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .footer-quote::before,
    .footer-quote::after {
      content:"״";
      font-size:80px;
      color:var(--clr-accent);
      position:absolute;
    }
    .footer-quote::before { 
        top:-52px;
        right:10px;
    }
    .footer-quote::after { 
        top:20px;
        left:30px;
    }
    .footer-quote span {
      display:block;
      margin-top:6px;
      font-size:16px;
      color:var(--clr-accent);
      font-weight:900;
      text-align:center;
      letter-spacing:.5px;
    }

    .span {
      color: #ff4444;
      font-size: 1.05rem;
    }

@media (max-width: 768px) {

  h1 {
    font-family: "Karantina", cursive;
    font-weight: 400;
    text-align: center;
    font-size: 80px;
    letter-spacing: 0px;
    color: #ff4444;
    margin: 0;
    line-height: 1;
    margin-top: -70px;
    margin-bottom: 50px;
  }
      
  .footer-sections {
    direction: rtl;
    justify-content: flex-start;
    gap: 32px;
  }
  .footer-section {
    text-align: right;
  }

  .footer-section > a {
    display: block;
    margin: 6px 0;
  }

  .footer-quote {
    display: none;
  }
}

a {
  text-decoration: none;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  gap: 24px;
  padding: 24px 32px;
  background: transparent;
  transition: background 0.3s ease;
}

.nav-menu.scrolled {
  background: rgba(28, 30, 34, 0.55);
  backdrop-filter: blur(7px);
}

.nav-menu a {
  font-family: "Heebo", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--clr-txt);
  border-bottom: 2px solid var(--clr-accent);
  transition: color 0.25s ease;
}

.nav-menu a:hover {
  color: var(--clr-accent);
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 24px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1600;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.35s, opacity 0.35s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

#navOverlay {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  z-index: 1500;
  transition: opacity 0.35s;
}

#navOverlay.show {
  display: block;
}

@media (min-width: 769px) {
  .nav-logo {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    height: 110px;
  }

  .mobile-logo {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 32px;
    background: rgba(28, 30, 34, 0.7);
    backdrop-filter: blur(9px);
    border-bottom: 2px solid var(--clr-accent);
    z-index: 1000;
  }

  .nav-menu a {
    display: inline-flex;
    align-items: start;
    gap: 10px;
    padding: 12px 28px;
    font: 800 20px/1 "Heebo", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-txt);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
    border-bottom: none;
  }

  .nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 68, 68, 0.2);
    transform: translateY(-3px);
  }
}

@media (max-width: 768px) {
  .top-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: transparent;
    backdrop-filter: blur(0);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    z-index: 999;
  }

  .top-blur.scrolled {
    background: rgba(28, 30, 34, 0.55);
    backdrop-filter: blur(7px);
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-logo {
    display: block;
    position: fixed;
    top: -5px;
    left: 16px;
    height: 72px;
    z-index: 1600;
  }

  .nav-logo {
    display: none;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    padding: 96px 0 0;
    width: 72%;
    max-width: 320px;
    height: 100vh;
    background: rgba(28, 30, 34, 0.9);
    backdrop-filter: blur(16px);
    transition: right 0.35s;
    z-index: 1550;
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    height: 56px;
    padding: 0 24px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1px solid #838383;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  }

  .nav-menu a i {
    font-size: 20px;
    width: 22px;
  }

  .nav-menu a:hover {
    background: rgba(28, 30, 34, 0.55);
    color: #ffffff;
    border-bottom: none;
    border-radius: 10px;
    transform: translateY( -3px );
  }
}
