:root {
  --bg-primary: #0a0a0b;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --accent-primary: #3b82f6;
  --border-color: #27272a;
}

* {
  box-sizing: border-box;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

body {
  background: var(--bg-primary);
  background-image: radial-gradient(circle at 25% 25%, var(--gradient-1, #1e1b4b) 0%, transparent 50%), radial-gradient(circle at 75% 75%, var(--gradient-2, #164e63) 0%, transparent 50%), radial-gradient(circle at 50% 90%, var(--gradient-3, #0f172a) 0%, transparent 60%);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  transition: background-image 1s ease-in-out;
}

.container-fluid {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  padding: clamp(0rem, 1vh, 4rem);
  overflow: hidden;
}
@media (max-width: 768px) {
  .container-fluid {
    padding: 1rem;
  }
}

.text-center {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  min-height: 0;
}

.app-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
}

.date-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.app-day-name, .app-date {
  font-size: clamp(1rem, 4vh, 2.5rem);
  color: var(--text-secondary);
  margin: 0;
  opacity: 0.8;
}

.app-date {
  opacity: 0.6;
  font-weight: 400;
}

.number-display {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
}

.main-number {
  font-size: clamp(24pt, 30vh, 256pt);
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
  margin: 0;
}

.input-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0px, 3vh, 100px);
  flex-shrink: 0;
}

.custom-salt-input {
  font-size: clamp(1rem, 4vh, 2.5rem);
  color: var(--text-secondary);
  background: transparent;
  border: none;
  font-family: "Courier New", monospace;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease, color 0.3s ease;
  outline: none;
  text-align: center;
  width: 100%;
  max-width: 80vw;
}
.custom-salt-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.2;
}
.custom-salt-input:focus {
  color: var(--text-primary);
  opacity: 1;
}
.custom-salt-input:focus::placeholder {
  opacity: 0.3;
}
.custom-salt-input:not(:empty) {
  color: var(--text-primary);
  opacity: 0.9;
  font-weight: 500;
}

.navigation-arrows {
  display: flex;
  gap: 3rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  flex-shrink: 0;
  margin-bottom: clamp(0px, 1vh, 4rem);
}
.navigation-arrows.show {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .navigation-arrows {
    gap: 2rem;
  }
}

.nav-arrow {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: clamp(0px, 8vh, 8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none;
}
.nav-arrow svg {
  width: clamp(12px, 8vh, 30px);
  height: clamp(12px, 8vh, 30px);
  fill: currentColor;
  transition: transform 0.3s ease;
}
.nav-arrow:hover:not(.hidden) {
  color: var(--text-primary);
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.05);
}
.nav-arrow:active:not(.hidden) {
  transform: scale(0.95);
}
.nav-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-arrow-left {
  animation: pulse-left 5s ease-in-out infinite;
}

.nav-arrow-right {
  animation: pulse-right 5s ease-in-out infinite;
}

@keyframes pulse-left {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}
@keyframes pulse-right {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
.action-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .action-buttons {
    gap: 1.5rem;
  }
}

.nav-faq.nav-arrow, .nav-share.nav-arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-faq.nav-arrow:hover, .nav-share.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.nav-faq.nav-arrow {
  text-decoration: none;
}

.nav-share.nav-arrow[aria-expanded=true] {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.share-container {
  position: relative;
}

.share-dropdown {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1000;
}
.share-dropdown.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.share-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  white-space: nowrap;
}
.share-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.share-option svg {
  width: 16px;
  height: 16px;
  opacity: 0.8;
  fill: currentColor;
}

.faq-page {
  max-height: none !important;
  overflow: auto !important;
}
.faq-page .container-fluid {
  max-height: none;
  overflow: visible;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .faq-content {
    padding: 1rem;
  }
}
.faq-content .container-fluid {
  max-height: none;
  overflow: auto;
}

.faq-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.faq-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.faq-item h2 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.return-home {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.return-home:hover {
  color: var(--text-primary);
}

/*# sourceMappingURL=style.css.map */
