@media (min-width: 1199px) {
.back-to-group-btn
{
  margin-inline-start: 40px !important;
}
}

.back-to-group-btn:hover img
{
  filter: contrast(300%);
}
.divider {
  border-left: 2px solid #c5bfbf; /* لون الخط */
  height: 75px;                /* طول الخط */
}
.fancy-button {
    position: relative;
    padding: 5px 30px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
  }
  
  .fancy-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.2)
    );
    transform: skewX(-20deg);
    animation: shine 2s infinite;
  }
  
  .fancy-button:hover {
    transform: scale(1.05);
    color: #fff;
  }
  
  @keyframes shine {
    0% {
      left: -75%;
    }
    100% {
      left: 125%;
    }
  }



  .neon-button {
    position: relative;
    padding: 5px 25px;
    font-size: 18px;
    color: #fff;
    background: rgb(232, 5, 5);
    border: 2px solid #0ff;
    border-radius: 30px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease;
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
    animation: pulse-glow 2s infinite;
  }
  
  .neon-button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #0ff;
  }
  
  @keyframes pulse-glow {
    0% {
      box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
    }
    50% {
      box-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #0ff;
    }
    100% {
      box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
    }
  }
  




  .press-button {
    padding: 15px 40px;
    font-size: 18px;
    color: white;
    background: linear-gradient(145deg, #6c63ff, #3f3dff);
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 0 #2b2aba;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  .press-button:active {
    transform: translateY(6px);
    box-shadow: 0 2px 0 #2b2aba;
  }
  


  .glow-border-wrap {
    position: relative;
    display: inline-block;
  }
  
  .glow-button {
    position: relative;
    z-index: 1;
    padding: 15px 40px;
    font-size: 18px;
    color: white;
    background: #111;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .glow-button:hover {
    transform: scale(1.05);
  }
  
  .glow-border-wrap::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #ff00cc, #3333ff, #00ccff, #ff00cc);
    background-size: 300%;
    z-index: 0;
    border-radius: 14px;
    animation: border-glow 3s linear infinite;
  }
  
  .glow-border-wrap::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #111;
    border-radius: 10px;
    z-index: 1;
  }
  
  @keyframes border-glow {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 300% 50%;
    }
  }

  

  .explode-button {
    position: relative;
    padding: 15px 40px;
    font-size: 18px;
    color: #fff;
    background-color: #ff5722;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease;
    z-index: 1;
  }
  
  .explode-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 10%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
    border-radius: 50%;
    z-index: -1;
  }
  
  .explode-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  
  .explode-button:hover {
    transform: scale(1.05);
    
  }

  

  .pulse-button {
    padding: 7px 30px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.7);
    animation: pulse-animation 2s infinite;
    transition: transform 0.3s ease;
  }
  
  .pulse-button:hover {
    transform: scale(1.05);
    color: #fff;

  }
  
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.7);
    }
    70% {
      box-shadow: 0 0 0 20px rgba(255, 75, 43, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
    }
  }

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 200px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  overflow: auto !important;
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
   padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flip-card-front {
  z-index: 2;
}

.flip-card-back {
  transform: rotateY(180deg);
}

  