@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Orbitron:wght@400..900&family=Rubik+Spray+Paint&family=Sen:wght@400..800');


    * {
      box-sizing: border-box;
    }
    
    html {
      background-color: #4b0945;
      margin: 0;
      padding: 0;
    }

    body {
    font-family: "Assistant", Helvetica, sans-serif;
    direction: rtl;
    background-color: #4b0945;
    background: linear-gradient(135deg, #153e50 0%, #7c0d73 50%, #0f2d3a 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 16pt;
    color: #ccc;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    /* position: relative; */
    overflow-x: hidden;
    }

    /* אפקט רקע דינמי */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 80%, rgba(89, 191, 201, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240, 93, 142, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(137, 0, 195, 0.05) 0%, transparent 50%);
      z-index: -1;
      animation: backgroundShift 20s ease-in-out infinite;
    }

    @keyframes backgroundShift {
      0%, 100% { transform: scale(1) rotate(0deg); }
      50% { transform: scale(1.1) rotate(1deg); }
    }

    /* חלקיקים נעים */
    .particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
    }

    .particle {
      opacity: 0;
      position: absolute;
      width: 2px;
      height: 2px;
      background: rgba(89, 191, 201, 0.6);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    .particle:nth-child(2n) {
      background: rgba(240, 93, 142, 0.6);
      animation-duration: 8s;
    }

    .particle:nth-child(3n) {
      background: rgba(137, 0, 195, 0.6);
      animation-duration: 10s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0; width: 2px; height: 2px; }
      50% { transform: translateY(-100px) translateX(50px); opacity: 1; width: 7px; height: 7px; }
    }

    h1 {
      text-align: center;
      font-size: 28pt;
      margin-bottom: 20px;
      background: linear-gradient(45deg, #59bfc9, #f05d8e, #8900C3);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 3s ease-in-out infinite;
    }

    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    h2 {color:#59bfc9;}

    .container {
      max-width: 800px;
      margin: auto;
      padding: 20px;
      position: relative;
      z-index: 1;
    }

    .section {
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeInUp 1s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
      animation-delay: 0.5s;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 25px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .section:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }

    .section2 {
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeInUp 1s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
      animation-delay: 1s;
    }

    .advantages {
      list-style-type: none;
      padding: 0;
      display: block;
      justify-content: center;
    }

    .advantages li {
      margin-right: 20px;
      text-align: right;
    }

    .advantages img {
      width: 30px;
      margin-bottom: 5px;
    }

    .cta {
      text-align: center;
      margin-top: 30px;
    }

    .cta a {
      display: inline-block;
      padding: 10px 20px;
      background-color: #8900C3;
      color: #fff;
      text-decoration: none;
    }

    /* עיצוב מתקדם למובייל */
    @media screen and (max-width: 768px) {
      body {
        font-size: 14pt;
      }
      
      h1 {
        font-size: 28pt;
        margin-bottom: 20px;
      }

      .container {
        max-width: 100%;
        padding: 15px;
      }

      .section, .section2 {
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 15px;
      }
      
      .advantages {
        flex-direction: column;
        align-items: right;
      }

      .advantages li {
        margin-bottom: 15px;
        margin-right: 0;
        text-align: right;
      }
    }

    @media screen and (max-width: 480px) {
      body {
        font-size: 12pt;
      }
      
      h1 {
        font-size: 28pt;
      }
      
      .container {
        padding: 10px;
      }
      
      .section {
        padding: 15px;
        border-radius: 12px;
      }
    }

    .btn-pink,.btn-navy{
    background: linear-gradient(45deg, #f05d8e, #e91e63);
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    min-width: 280px;
    font-size: 18px;
    font-weight: bold;
    margin: 12px 6px;
    cursor: pointer;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 15px rgba(240, 93, 142, 0.4));
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-pink::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-pink:hover::before {
    left: 100%;
}

.btn-pink:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 25px rgba(240, 93, 142, 0.6));
    background: linear-gradient(45deg, #e91e63, #f05d8e);
}

.btn-navy{
    background: linear-gradient(45deg, #59bfc9, #00bcd4);
    filter: drop-shadow(0 4px 15px rgba(89, 191, 201, 0.4));
}

.btn-navy:hover {
    filter: drop-shadow(0 8px 25px rgba(89, 191, 201, 0.6));
    background: linear-gradient(45deg, #00bcd4, #59bfc9);
}

.btn-center {text-align: center;}

.h2b {
    color: #ff0000;
    font-size: 20pt;
    font-family: "Sen", Helvetica, sans-serif;
    font-weight: 300;
    text-align: center;
    direction: ltr;
    position: relative;
}

.h2b::before {
    content: url('https://cdn.whatsluv.com/peaceSign-32x32.png');
    padding-right: 5px;
    vertical-align: middle;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.white-sh{
  opacity: 0;
  animation: fadeInDown 0.7s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  border: 1px #555;
  filter: drop-shadow(3px 3px 4px #000);
}
.white-fd{
  opacity: 0;
  animation: fadein 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
  line-height: 1.8;
}
.red-fd{
  color:#ef5350;
  opacity: 0;
  animation: fadein 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
}

/* אפקט זוהר לטקסט */
.glow-text {
  text-shadow: 0 0 10px rgba(89, 191, 201, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px rgba(89, 191, 201, 0.5); }
  to { text-shadow: 0 0 20px rgba(89, 191, 201, 0.8), 0 0 30px rgba(89, 191, 201, 0.6); }
}

/* אפקט רעידה לכפתור */
.shake-on-hover:hover {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* אפקט סיבוב לאייקון */
.rotate-icon {
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes fadeOutDown {
    0% {
        transform: translateY(100%);
        opacity: 1;
    }

    100% {
        transform: translateY(0%);
        opacity: 0;
    }
}
@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@keyframes fadeInDown {
    0% {
        transform: translateY(0%);
        transform: scaleY(1000%);
        opacity: 0;
        transform: translate3d(0px,-50px,0px);
    }

    100% {
        transform: translateY(100%);
        transform: scaleY(100%);
        opacity: 1;
        transform: translate3d(0px,0px,0px);
    }
}
.ani-in{
  opacity: 0;
  animation: fadeInUp 0.7s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 1.2s;
}

/* אפקט לבבות נופלים */
.heart-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.heart {
  position: absolute;
  font-size: 20px;
  color: rgba(240, 93, 142, 0.6);
  animation: heartFall 4s linear infinite;
}

.heart:nth-child(2n) {
  color: rgba(89, 191, 201, 0.6);
  animation-duration: 5s;
}

.heart:nth-child(3n) {
  color: rgba(137, 0, 195, 0.6);
  animation-duration: 6s;
}

.heart:nth-child(4n) {
  color: rgba(255, 105, 180, 0.6);
  animation-duration: 4.5s;
}

@keyframes heartFall {
  0% { 
    transform: translateY(-100vh) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% { 
    transform: translateY(100vh) rotate(360deg) scale(2.2);
    opacity: 0;
  }
}
/* טופס הרשמה */

input[type='radio'],
input[type='checkbox'] {
    transform: scale(1.6);
    margin-bottom: 12px;
    margin-left: 12px;
}

input[type='date'],
input[type='month'],
input[type='datetime-local'] {
    transform: scale(1.6);
    margin-bottom: 12px;
    margin-right: 45px;
}

button {
    width: auto;
    height: 60px;
    font-size: 18pt;
    cursor: pointer;
}

.white-sh {
    color: #fff;
    text-shadow: -1px -1px 0 #666, 1px -1px 0 #666, -1px 1px 0 #666, 1px 1px 0 #666;
    opacity: 0;
    animation: fadeInUp 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

.hq {
    cursor: pointer;
}

.hq-y {
    background-color: #e5e5e5;
    padding: 2px 6px;
    color: #666;
    border-radius: 5px;
}

span.wb {
    font-size: 13pt;
    background-color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
    color: #666;
}

ul {
    list-style: none;
    padding-inline-start: 10px;
    padding-block-end: 10px;
}

li {
    cursor: move;
    user-select: none;
    color: #1C94C4;
    border: 1px solid rgba(8, 101, 163, 0.8);
    background-color: #f6f6f6;
    padding: 7px;
    /* max-width: 420px; */
    margin-bottom: 5px;
    margin-left: 25px;
    font-size: 14pt;
    text-align: right;
    direction: rtl;
    border-radius: 7px;
    box-shadow: -2px 1px 3px rgba(58, 61, 63, 0.3);
}

.sortable-ghost {
    background-color: #ccc !important;
    border: dashed 2px #000;
}

.sortable-drag {
    background-color: #ef5350 !important;
    color: #fff;
}

ul.hq-s > li {color:#333; background-color: #eee; font-weight: bold;}
ul.hq-s > li:nth-child(-n+3) {background-color: #ef5350; color: #fff; font-weight: bold;}

div.q-wrap > label > div:hover {
    cursor: pointer !important;
    /* background-color: #ccc; */
    /* color: #000; */
}

div.q-wrap > label > div:active {
    /* box-shadow: 0 1px #666 !important; */
    transform: translateY(2px) !important;
}
div.q-wrap > label > div {
    font-size: 18px;
    font-weight: bold;
    min-width: 40px;
    /* box-shadow: 0 3px #999; */
    text-align: center;
    border-radius: 20px;
    padding: 6px;
}
div.q-wrap > label.checkbox-chip, div.q-wrap > label.radio-chip {
    position: relative;
    display: inline-block;
    text-align: center;
    color: #eee;
    transition: all 0.2s ease;
    /* background-color: #fff ; */
    border: 1px solid #f44336 !important;
    /* box-shadow: 0 3px #d32f2f !important; */
    min-width: 100px;
    border-radius: 20px;
    margin: 10px 2px 2px 2px;
}

div.q-wrap > label.checkbox-fw > div, div.q-wrap > label.radio-fw > div {
    text-align: right !important;
    border-radius: 0px !important;
    display: block !important;
    border: 1px solid #666 !important;
    margin: 10px 2px 2px 2px !important;
}

div.q-wrap > label > input[type="radio"] {
  position: absolute;
  visibility: hidden;
}
div.q-wrap > label > input[type="radio"] + div {
  position: relative;
}
div.q-wrap > label > input[type="radio"]:checked + div {
  background-color: #ef5350;
}
div.q-wrap > label > input[type="radio"]:checked + div>span {
  color: #fff;
}
div.q-wrap > label > input[type="radio"] + div>span {
position: relative;
top: 25%;}

div.q-wrap > label > input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
}

div.q-wrap > label > input[type="checkbox"] + div {
  position: relative;
}
div.q-wrap > label > input[type="checkbox"]:checked + div {
  background-color: #ef5350;
}
div.q-wrap > label > input[type="checkbox"]:checked + div>span {
  color: #fff;
}
div.q-wrap > label > input[type="checkbox"] + div>span {
position: relative;
top: 25%;}

div.q-wrap > label > input[type="checkbox"]:checked + div::before {
    content:"✦";
    position: absolute;
    top: -12px;
    right: 3px;
    font-size: 21px;
    color: #fff;
    -webkit-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -o-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    transform: rotate(-60deg);
    animation: anstar 0.7s forwards;
}

div.q-wrap > label > input[type="radio"]:checked + div::before {
    content: "✦";
    position: absolute;
    top: -12px;
    font-size: 21px;
    color: #fff;
    right: 3px;
    -webkit-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -o-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    transform: rotate(-60deg);
    animation: anstar 0.7s forwards;
}

div.q-wrap {
  display: block;
  padding: 10px 5px;
  border-bottom: 1px #666 dotted;
}

div.q-wrap > h2 {
color: #eee;
margin: 10px 0px;
padding: 5px 0px;
}

@keyframes anstar {
    100% {
        -webkit-transform: translate(2px,-2px) rotate(10deg);
        -moz-transform: translate(2px,-2px) rotate(10deg);
        -o-transform: translate(2px,-2px) rotate(10deg);
        -ms-transform: translate(2px,-2px) rotate(10deg);
        transform: translate(2px,-2px) rotate(10deg);
    }
}

@-moz-keyframes anstar {
    100% {
        -webkit-transform: translate(2px,-2px) rotate(10deg);
        -moz-transform: translate(2px,-2px) rotate(10deg);
        -o-transform: translate(2px,-2px) rotate(10deg);
        -ms-transform: translate(2px,-2px) rotate(10deg);
        transform: translate(2px,-2px) rotate(10deg);
    }
}

@-webkit-keyframes anstar {
    100% {
        -webkit-transform: translate(2px,-2px) rotate(10deg);
        -moz-transform: translate(2px,-2px) rotate(10deg);
        -o-transform: translate(2px,-2px) rotate(10deg);
        -ms-transform: translate(2px,-2px) rotate(10deg);
        transform: translate(2px,-2px) rotate(10deg);
    }
}
.opno {
  display: none;
}
.grecaptcha-badge {
  z-index: 3;
}