/* Layout & Structure */

.view-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Landing View Specifics */
.landing-hero {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 4rem;
}

.info-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--card-radius);
  text-align: center;
}

.info-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.explanation-content {
  width: 100%;
  max-width: 800px;
  margin-bottom: 3rem;
  text-align: center;
}

.text-block h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.text-block p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Tool View Layout */
.tool-view-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-left h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Ads */
.ad-container {
  width: 100%;
  max-width: 800px;
  margin-top: auto;
  padding: 2rem 0;
}

.ad-placeholder {
  width: 100%;
  height: 100px;
  background-color: var(--bg-secondary);
  border: 1px dashed var(--border-color);
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-tertiary);
  font-size: 0.875rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}
