.settings-screen {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  height: 100%;
  background: var(--bg);
  z-index: 5000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 6rem 1.5rem 120px;
}

.settings-screen.visible {
  display: flex;
}

.settings-content-box {
  width: 100%;
  max-width: 800px; /* Keep it focused but flexible */
  padding: 4rem 1.5rem; /* Reduced from 2rem to give more room */
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.settings-section {
  margin-bottom: 3.5rem;
  width: 100%;
}

.settings-section:last-child {
  margin-bottom: 0;
}

.settings-section .category-title {
  font-size: 1.25rem;
  margin-left: 0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sub);
  opacity: 0.8;
  font-weight: 500;
}

.install-container-box {
  margin-bottom: 3.5rem;
  padding: 0; /* Removed padding */
  background: transparent; /* Removed white background */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.install-btn {
  width: 100%;
  max-width: 400px; /* Limit width for better look */
  height: 52px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.how-to-btn {
  background: none;
  border: none;
  color: var(--text);
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
}

.install-overlay-box {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.03);
}

.install-overlay-box.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .settings-screen {
    padding: 5rem 1rem 100px;
  }
  .settings-content-box {
    padding: 3rem 1.5rem;
  }
}
