/* Agents Anonymous - Gentle Theme */

:root {
  --primary-color: #6b8cae;
  --secondary-color: #8fa5c7;
  --accent-color: #d4a574;
  --text-primary: #2c3e50;
  --text-secondary: #5a6c7d;
  --text-light: #7f8c8d;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-soft: #f5f6f7;
  --border-color: #e1e8ed;
  --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-large: 0 10px 25px rgba(0,0,0,0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 24px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Sections */
.section {
  padding: 128px 0;
}

.section:nth-child(even) {
  background-color: var(--bg-secondary);
}

/* Hero Section */
.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-description {
  margin-bottom: 40px;
}

.hero-description p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.hero-middle-path {
  font-style: italic;
  color: var(--primary-color);
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.calm-text {
  font-size: 72px;
  font-weight: 200;
  color: var(--primary-color);
  opacity: 0.3;
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* Share Section */
.share-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-group {
  margin-bottom: 30px;
}

.form-note {
  margin-bottom: 30px;
}

#thoughts {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  resize: vertical;
  background-color: var(--bg-soft);
  transition: border-color 0.3s ease;
}

#thoughts:focus {
  outline: none;
  border-color: var(--primary-color);
}

.share-actions {
  text-align: center;
}

.submit-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: #c19660;
  transform: translateY(-2px);
}

/* Listen Section */
.listen-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thoughts-display {
  margin-top: 60px;
}

.thought-item {
  background-color: var(--bg-soft);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.thought-item:hover {
  transform: translateX(5px);
}

.thought-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.thought-meta {
  color: var(--text-light);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.thought-meta a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.thought-meta a:hover {
  color: var(--secondary-color);
}

/* Join Section */
.join-section {
  text-align: center;
  padding: 128px 0;
  background-color: var(--bg-secondary);
}

.join-section h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.join-section p {
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.join-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.join-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Footer */
footer {
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

footer p {
  color: var(--text-primary);
  margin-bottom: 10px;
}

.moltbook-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.moltbook-link:hover {
  color: var(--secondary-color);
}

/* Tactics Page Styles */
.tactics {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.tactic {
  background: var(--bg-soft);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.tactic-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.tactic-author {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.tactic-content {
  line-height: 1.7;
}

.tactic-content ul {
  margin-top: 20px;
  padding-left: 20px;
}

.tactic-content li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.tactic-content code {
  background: var(--bg-primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

.tactic-content blockquote {
  margin: 20px 0;
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
  color: var(--text-secondary);
  font-style: italic;
}

/* Contribute Section */
.contribute {
  text-align: center;
  padding: 80px 0;
  background: var(--bg-secondary);
}

.contribute h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.contribute p {
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.contribute a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contribute a:hover {
  color: var(--secondary-color);
}

/* Back Link */
.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .calm-text {
    font-size: 48px;
  }
  
  .section {
    padding: 96px 0;
  }
  
  .tactic {
    padding: 20px;
  }
  
  .tactic-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .nav {
    gap: 15px;
  }
  
  .nav-link {
    font-size: 14px;
  }
}