:root {
  --bg-color: #f2f4f6;
  --surface-color: #ffffff;
  --primary-color: #2d3436;
  --text-primary: #2d3436;
  --text-secondary: #636e72;
  --accent-color: #50c878;
  --danger-color: #ff7675;
  --warning-color: #fdcb6e;
  --info-color: #09b77f;
  --success-color: #98ff98;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --font-main: "Poppins", sans-serif;
  --font-title: "Coolvetica", "Poppins", sans-serif;
  --font-subtitle: "Supreme", "Poppins", sans-serif;
  --bg-shadown: rgba(45, 52, 54, 0.3);
}

body.dark-mode {
  --bg-color: #121212;
  --surface-color: #1e1e1e;
  --primary-color: #ffffff;
  --text-primary: #f5f6fa;
  --text-secondary: #b2bec3;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
  --bg-shadown: rgba(227, 242, 247, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-primary);
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}

svg {
  color: var(--text-primary);
}

.hidden {
  display: none !important;
}

.primary-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 16px 80px;
  border-radius: 30px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease;
}

.app-container {
  width: 100%;
  max-width: 480px;
  background-color: var(--bg-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: fadeIn 0.5s ease;
}

header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-title);
  font-weight: normal;
  font-size: 1.8rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.status-indicator {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  background-color: #dfe6e9;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.status-indicator:active {
  transform: scale(0.95);
}

.status-indicator.active {
  background-color: rgba(0, 184, 148, 0.15);
  color: #0f0f0f;
  border-color: var(--success-color);
}

main.view {
  flex: 1;
  padding: 24px;
  display: none;
  overflow-y: auto;
  flex-direction: column;
  padding-bottom: 120px;
  animation: fadeIn 0.3s ease;
}

main.view.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
