@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

:root {
  --primary-purple-color: #541fc4;
  --secondary-purple-color: #6629dc;
  --text-color: #000;
  --text-secondary-color: #878787;
  --background-white-color: #f8f8f8;
  --hover-button-color: #dd1367;
  --span-orange-color: #ee7435;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--background-white-color);
  text-align: center;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.back-button {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, color 0.3s ease;
}

.back-button:hover {
  transform: scale(1.1);
  color: #333;
}

.back-button .arrow {
  transform: scaleX(-1);
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.menu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-line {
  width: 30px;
  height: 4px;
  background-color: #000;
  border-radius: 5px;
}

.menu-items {
  display: none;
  position: absolute;
  top: 80px;
  right: 20px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  list-style: none;
  min-width: 150px;
}

.menu-items.show {
  display: block;
}

.menu-items li {
  padding: 12px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.menu-items li:hover {
  background: #e0e0e0;
}

.menu-icon {
  width: 27.78px;
  height: 22.22px;
}

.quick-out {
  width: 100%;
  height: 20px;
  position: fixed;
  top: 90px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: var(--primary-purple-color);
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
  z-index: 1001;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.quick-out .vector {
  width: 12px;
  height: 12px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-top: 1px;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

.container {
  color: #2d2d30;
  padding: 15px 25px 0;
  margin: 100px auto 0;
  max-width: 800px;
  text-align: left;
}

.ultima-section {
  margin-bottom: 30px;
}
