/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Styles for extra small devices */
  .mobile-frame {
    background: linear-gradient(13.29deg, #001D0A -4%, #00270F 80.57%);
    height: 100dvh;
    overflow-y: auto;
    width: 100%;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Styles for small devices */
  .mobile-frame {
    width: 576px;
    background: linear-gradient(13.29deg, #001D0A -4%, #00270F 80.57%);
    height: 100dvh;
    overflow-y: auto;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Styles for medium devices */
  .mobile-frame {
    width: 576px;
    background: linear-gradient(13.29deg, #001D0A -4%, #00270F 80.57%);
    height: 100dvh;
    overflow-y: auto;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Styles for large devices */
  .mobile-frame {
    width: 576px;
    background: linear-gradient(13.29deg, #001D0A -4%, #00270F 80.57%);
    height: 100dvh;
    overflow-y: auto;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* Styles for extra large devices */
  .mobile-frame {
    width: 576px;
    background: linear-gradient(13.29deg, #001D0A -4%, #00270F 80.57%);
    height: 100dvh;
    overflow-y: auto;
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  /* Styles for extra extra large devices */
  .mobile-frame {
    width: 576px;
    background: linear-gradient(13.29deg, #001D0A -4%, #00270F 80.57%);
    height: 100dvh;
    overflow-y: auto;
  }
}

