
/* ===========================
   General / Global Styles
=========================== */
body {
    margin: 0;
    padding: 0;
    background: #505FF5;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  /* We’ll ensure both box and button use border-box sizing */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* Hide mobile content by default, show desktop on wide screens */
  .mobile-content {
    display: none;
  }
  
  @media (max-width: 768px) {
    .desktop-content {
      display: none;
    }
    .mobile-content {
      display: block;
    }
  }
  
  /* ===========================
     Desktop Styles
  =========================== */
  .desktop-content {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  /* Background Circles (Desktop) */
  .circle {
    position: absolute;
    background: linear-gradient(268deg, #8E76F6 1.33%, #505FF5 49.07%);
    border-radius: 50%;
    z-index: 0;
  }
  
  .circle1 {
    width: 305.874px;
    height: 305.874px;
    transform: rotate(-50.824deg);
    top: -75px;
    left: 130px;
  }
  
  .circle2 {
    width: 462px;
    height: 462px;
    transform: rotate(-141.199deg);
    top: -154px;
    right: -154px;
  }
  
  .circle3 {
    width: 661.428px;
    height: 661.428px;
    transform: rotate(-150deg);
    bottom: -300px;
    right: -132px;
  }
  
  .circle4 {
    width: 462px;
    height: 462px;
    bottom: -100px;
    left: -231px;
  }
  
  /* Desktop Container */
  .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  /* Desktop Title */
  .main-title {
    color: #fff;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 35px;
  }
  
  /* Desktop Drop Box */
  .drop-box {
    width: 1147px;
    height: 586px;
    border-radius: 20px;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.3s ease;
  }
  
  .drop-box.dragover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Desktop Upload Button */
  .upload-button {
    width: 417.5px;
    height: 75px;
    border-radius: 60px;
    background: linear-gradient(90deg, #f4c4fb 0%, #d1c1fa 100%);
    border: none;
    color: #505ff5;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .upload-button:hover {
    opacity: 0.9;
  }
  
  /* Desktop Drop Text */
  .drop-text {
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
    margin-top: 20px;
  }
  
  /* Desktop Back Button */
  .back-button {
    position: relative;
    margin-top: 20px;
    width: 52px;
    height: 52px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .back-button svg {
    width: 29px;
    height: 29px;
  }
  
  .back-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .back-button:hover svg path {
    stroke: #fff;
  }
  
  /* ===========================
     Mobile Styles
  =========================== */
  .mobile-content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }
  
  /* Mobile Background Circles */
  .mobile-circle {
    position: absolute;
    background: linear-gradient(268deg, #8e76f6 1.33%, #505ff5 49.07%);
    border-radius: 50%;
    z-index: -2;
  }
  
  .mobile-content .circle1 {
    width: 305.874px;
    height: 305.874px;
    transform: rotate(50deg);
    top: -75px;
    left: -75px;
  }
  
  .mobile-content .circle2 {
    width: 462px;
    height: 462px;
    transform: rotate(-141.199deg);
    top: 150px;
    right: -300px;
  }
  
  .mobile-content .circle3 {
    width: 283.221px;
    height: 283.221px;
    top: 280px;
    left: -120px;
    transform: rotate(-20deg);
  }
  
  /* Mobile Back Button */
  .back-button-mobile {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
  }
  
  .back-button-mobile svg {
    width: 24px;
    height: 24px;
  }
  
  /* Mobile Step Title */
  .step-title {
    position: absolute;
    top: 102px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: 33px;
    text-transform: capitalize;
    width: 320px;
  }
  
  /* Content Box (Mobile)
     - same exact width as the button
     - uses border-box so border & padding fit
  */
  .content-box {
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px); /* 20px margin on each side */
    border-radius: 20px;
    border: 2px solid #f3c4fb;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .points-mobile {
    width: 100%;
    margin: 0 auto;
  }
  
  /* Each bullet */
  .point-mobile {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }
  
  /* Tick icon (no circle border) */
  .tick-icon-mobile {
    width: 24px;
    height: 24px;
    margin-right: 12px;
  }
  
  /* 16px text so it’s readable, aligned well */
  .point-text-mobile {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: normal;
  }
  
  /* Upload Button (Mobile)
     same width: calc(100% - 40px)
     large button with border-box
  */
  .upload-button-mobile {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    height: 90px;
    border-radius: 20px;
    background: linear-gradient(90deg, #f4c4fb 0%, #d1c1fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #505ff5;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .upload-button-mobile:hover {
    opacity: 0.9;
  }
  
  /* Ensure Poppins Font is Used Everywhere */
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a,
  button,
  div,
  span {
    font-family: "Poppins", sans-serif;
  }