/* Screen 2 - End Scene */
.screen-2__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  background-color: var(--background);
  border-image: linear-gradient(90deg, #0fb85d 0%, #03314b 100%) 1;
  overflow: hidden;
}

.screen-2__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Background decorative elements */
.screen-2__ellipse-1 {
  position: absolute;
  width: 374.87px;
  height: 374.87px;
  background-color: #0fb85d;
  border-radius: 50%;
  top: 57.39px;
  right: 0;
  z-index: 1;
}

.screen-2__ellipse-2 {
  position: absolute;
  width: 356.82px;
  height: 220.12px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #000000 0%,
    rgba(0, 0, 0, 0) 100%
  );

  top: 120.62px;
  right: 0;
  z-index: 2;
  border-radius: 100%;
}

/* Images */
.screen-2__phone-image {
  position: absolute;
  width: 153.88px;
  height: 316.43px;
  background-image: url("https://cdn.xuno.co/marketing/banner/phone-2.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  top: 20px;
  right: 355.79px;
  z-index: 3;
}

.screen-2__woman-image {
  position: absolute;
  width: 394.59px;
  height: 591.88px;
  background-image: url("https://cdn.xuno.co/marketing/banner/women-1.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  top: 0px;
  right: 0;
  z-index: 4;
}

/* Logo and website section */
.screen-2__logo-section {
  position: absolute;
  top: 110.69px;
  right: 123.15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.screen-2__xuno-logo img {
  width: 148.28px;
  height: 37.07px;
}

.screen-2__website {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7.54px;
}

.screen-2__website-icon {
  width: 18.86px;
  height: 18.86px;
}

.screen-2__website span {
  color: #ffffff;
  font-family: "OverusedGrotesk", sans-serif;
  font-weight: 500;
  font-size: 19.61px;
  line-height: 1.203;
}

/* Exchange rate display */
.screen-2__exchange-rate {
  width: 565px;
  height: 48px;
  background-color: #0fb85d;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 0px;
  max-width: 565px;
  width: 100%;
  z-index: 5;
}

.screen-2__exchange-rate span {
  color: #ffffff;
  font-family: "OverusedGrotesk", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.31;
}

/* Features section */
.screen-2__features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.screen-2__feature-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.03px;
}

.screen-2__feature-main span {
  color: #444444;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.21;
}

.screen-2__feature-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  width: 100%;
}

.screen-2__feature-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.screen-2__feature-item span {
  color: #444444;
  font-family: "OverusedGrotesk", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.31;
}

/* Checkmark styling */
.screen-2__checkmark {
  width: 28px;
  height: 28px;
  background-image: url("https://cdn.xuno.co/marketing/banner/check-mark.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Disclaimer */
.screen-2__disclaimer {
  height: 24px;
  color: #444444;
  font-family: "OverusedGrotesk", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.31;
  z-index: 5;
}

/* Decorative line */
.screen-2__line {
  position: absolute;
  top: 52px;
  left: 397.42px;
  width: 45.58px;
  height: 2px;
  background-color: #444444;
  z-index: 5;
}

