 /* Overlay */
  .ironphantom_on_activation_modal_overlay {
    position: fixed;
    inset: 0;
    background: #0b0b0b;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    z-index: 9999999;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
  }

  /* Modal base */
  .ironphantom_on_activation_modal {
    background: #272727ff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    padding: 32px;
    width: 650px;
    min-height: 300px;
    overflow-y: auto;
    position: relative;
    max-height: 90vh;
  }

  /* Headings */
  .ironphantom_on_activation_modal_heading {
    color: #f5f5f5;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .ironphantom_on_activation_modal_heading span {
    background: linear-gradient(90deg, #ff4d5a, #e63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ironphantom_on_activation_modal_sub_heading {
    color: #d1d5db;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0 auto 10px;
  }

  /* Shared view styling */
  .ironphantom_on_activation_modal_view {
    display: none;
    flex-direction: column;
    gap: 8px;
    animation: ironphantom_on_activation_slideIn 0.4s ease;
    position: relative;
  }
  .ironphantom_on_activation_modal_view.active {
    display: flex;
  }

  @keyframes ironphantom_on_activation_slideIn {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Icon styling for views */
  .ironphantom_on_activation_view_icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: ironphantom_on_activation_logoFloat 3s ease-in-out infinite;
    background: rgba(230, 57, 70, 0.15);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
    transition: all 0.3s ease;
  }

  .ironphantom_on_activation_view_icon:hover {
    transform: scale(1.05);
  }

  .ironphantom_on_activation_view_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .ironphantom_on_activation_view_icon svg {
    width: 60px;
    height: 60px;
    color: #e63946;
    transition: all 0.3s ease;
  }

  @keyframes ironphantom_on_activation_logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  /* Checkbox styling */
  .ironphantom_on_activation_fancy_check {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    gap: 10px;
    color: #ffffff;
    border-radius: 12px;
    border: 1px solid #1a1919ff;
    background: #272727ff;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
  }
  .ironphantom_on_activation_fancy_check:hover {
    background: #383737ff;
  }
  .ironphantom_on_activation_fancy_check input {
    display: none;
  }
  .ironphantom_on_activation_box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #d1d5db;
    display: grid;
    place-items: center;
    transition: all 0.25s ease;
    background: white;
  }
  .ironphantom_on_activation_fancy_check svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.25s ease;
  }
  .ironphantom_on_activation_fancy_check input:checked + .ironphantom_on_activation_box {
    border-color: #b1aedaff;
    background: linear-gradient(135deg, #d3d3dbff, #a9a9b1ff);
  }
  .ironphantom_on_activation_fancy_check input:checked + .ironphantom_on_activation_box svg {
    opacity: 1;
    transform: scale(1);
    stroke: #fff;
  }

  /* Floating label input */
  .ironphantom_on_activation_field {
    position: relative;
    margin-top: 10px;
  }
  .ironphantom_on_activation_field input {
    width: 100%;
    padding: 14px;
    border: 1px solid black;
    border-radius: 10px;
    color: #cccccc;
    font-size: 0.95rem;
    background: transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .ironphantom_on_activation_field label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    background: #272727ff;
    padding: 0 6px;
    color: #6b7280;
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .ironphantom_on_activation_input_error {
    font-size: 13px;
    color: #ff4d4d;
    display: none;
  }
  .ironphantom_on_activation_field input:focus {
    outline: none;
    border-color: #da1616ff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
  }
  .ironphantom_on_activation_field input:focus + label,
  .ironphantom_on_activation_field input:not(:placeholder-shown) + label {
    top: 0;
    left: 10px;
    font-size: 0.75rem;
    color: #f01010ff;
    transform: translateY(-50%) scale(1);
  }

  /* Buttons */
  .ironphantom_on_activation_actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
  }
  .ironphantom_on_activation_button {
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .ironphantom_on_activation_button:hover {
    transform: translateY(-1px);
  }
  .ironphantom_on_activation_save_btn {
    background-color: #e63946;
    color: white;
  }
  .ironphantom_on_activation_save_btn:hover {
    background-color: #ff4d5a;
  }
  .ironphantom_on_activation_close_btn {
    background: #e5e7eb;
    color: #111827;
  }
  .ironphantom_on_activation_close_btn:hover {
    background: #d1d5db;
  }

  /* Tips section */
  .ironphantom_on_activation_tips {
    text-align: left;
    background: #1f1f1f;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid #2f2f2f;
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
  }
  .ironphantom_on_activation_tips ul {
    margin: 0;
    padding-left: 20px;
  }
  .ironphantom_on_activation_tips li {
    margin-bottom: 8px;
  }

  /* Close confirmation popup */
  .ironphantom_on_activation_close_popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: opacity 0.3s ease;
  }
  .ironphantom_on_activation_small_modal_content {
    background: #272727ff;
    border-radius: 14px;
    padding: 32px;
    width: 80%;
    margin: 10% auto;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  /* Edit email link */
  #ironphantom_on_activation_change_details {
    color: #da1616ff;
    font-size: 14px;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: color 0.3s ease;
  }
  #ironphantom_on_activation_change_details:hover {
    text-decoration: underline;
    color: #ff4d5a;
  }

  /* Option group for checkboxes */
  .ironphantom_on_activation_option_group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
  }
  .ironphantom_on_activation_check_text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .ironphantom_on_activation_check_title {
    font-weight: 600;
    font-size: 16px;
  }
  .ironphantom_on_activation_check_sub {
    font-size: 14px;
    opacity: 0.8;
  }

  /* Loader Overlay */
  .ironphantom_on_activation_loader_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0aa6;
    display: none;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  /* Spinner */
  .ironphantom_on_activation_spinner {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #0a0a0aa6;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
  }

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

  .ironphantom_on_activation_loader_overlay p {
    margin-top: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .ironphantom_on_activation_modal {
      width: 80%;
      padding: 20px;
      border-radius: 12px;
      max-height: 90vh;
    }
    .ironphantom_on_activation_modal_heading {
      font-size: 24px;
    }
    .ironphantom_on_activation_modal_sub_heading {
      font-size: 14px;
    }
    .ironphantom_on_activation_view_icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
    }
    .ironphantom_on_activation_field input {
      font-size: 0.9rem;
      padding: 12px;
    }
    .ironphantom_on_activation_button {
      width: 100%;
      padding: 12px;
    }
    .ironphantom_on_activation_actions {
      flex-direction: column;
      gap: 10px;
    }
    .ironphantom_on_activation_tips {
      font-size: 13px;
      padding: 14px 16px;
    }
  }

  /* 📱 Small Phone Optimization */
  @media (max-width: 768px) {
    .ironphantom_on_activation_modal {
      padding: 16px;
      border-radius: 10px;
      width: 100%;
    }
    .ironphantom_on_activation_modal_heading {
      font-size: 20px;
      margin-bottom: 10px;
    }
    .ironphantom_on_activation_modal_sub_heading {
      font-size: 13px;
    }
    .ironphantom_on_activation_view_icon {
      width: 65px;
      height: 65px;
    }
    .ironphantom_on_activation_button {
      font-size: 0.9rem;
      padding: 10px;
    }
    .ironphantom_on_activation_tips {
      font-size: 12px;
      line-height: 1.5;
    }
  }
