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

:root{
  --bg: #0b0908;
  --bg-screen-top: #14110d;
  --surface-1: #181413;
  --surface-2: #141112;
  --surface-3: #221a19;
  --card: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  --card-solid: #171319;
  --card-muted: #251e1d;
  --muted: #8f7a58;
  --text: #f5d9a0;
  --text-secondary: #c8a76b;
  --text-tertiary: #b98f47;
  --accent: #e5be69;
  --accent-strong: #f2c96e;
  --accent-weak: #2b2119;
  --border-gold: #6d5526;
  --border-gold-soft: rgba(109, 85, 38, 0.65);
  --success: #1a261b;
  --success-text: #84dba4;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.46);
  --radius-xl: 22px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --gap: 16px;
  --safe-bottom: 24px;
}

html,body{
  height:100%;
  margin:0;
  padding:0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 50% -180px, rgba(229, 190, 105, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-screen-top) 0%, var(--bg) 100%);
  color: var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.mobile-container {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}

#app,
.app {
  min-height: 100vh;
}

.screen {
  min-height: calc(100vh);
  box-sizing: border-box;
  padding: 20px 18px 90px; 
  background: transparent;
}

.screen-header{
  text-align:center;
  margin-bottom: 12px;
}
.screen-header h2{
  margin:0;
  font-size:22px;
  font-weight:800;
  letter-spacing:0.2px;
  color: var(--accent-strong);
  text-shadow: 0 0 14px rgba(214, 164, 84, 0.16);
}

.container{
  display:block;
  margin-top: 6px;
}

h3 {
  margin-bottom: 0px;
}

.premium-card {
  background: var(--card);
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 223, 153, 0.08);
}
