body {
    background: #1c1c1c;
    color: white;
    font-family: Arial, sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
  }

  .container {
    text-align: center;
    padding: 20px;
  }

  h1 {
    color: #1ed760;
    text-shadow: 0 5px 10px rgba(0, 255, 100, 0.7);
  }

  .section {
    margin-top: 30px;
  }

  .title {
    font-size: 30px;
    font-weight: bold;
    color: #1ed760;
    text-shadow: 0 5px 10px rgba(0, 255, 100, 0.7);
    transition: all 0.3s ease;
  }

  .title.animated {
    transform: scale(1.1) rotate(-2deg);
  }

  .button {
    margin: 10px 0;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #444;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .button:hover {
    background: #1ed760;
    box-shadow: 0 8px 20px rgba(0, 255, 100, 0.6);
  }

  .button:active {
    transform: scale(0.95);
  }

  .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #333;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  .popup input {
    margin-top: 20px;
    padding: 10px;
    font-size: 18px;
    width: 80%;
    border: 2px solid #1ed760;
    border-radius: 8px;
    text-align: center;
  }

  .popup button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    background: #1ed760;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .popup button:hover {
    background: #22c55e;
  }

  .image-container {
    margin: 20px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }