/* Color Scheme Variables - Switch between themes */
:root {
  /* Option 1: Crypto Tracker Dark (Purple variant) */
  --accent: #9b8bff;
  --accent-dim: #9b8bff20;
  --accent-hover: #b39dff;
  --accent-red: #ff4444;
  --accent-purple: #9b8bff;
  --accent-blue: #3b82f6;
  
  /* Base colors - Ultra dark like trading terminal */
  --bg: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #111111;
  --text: #ffffff;
  --text-dim: #666666;
  --border: #1a1a1a;
  
  /* Option 2: Crypto Green (ORIGINAL - backup) - Uncomment to revert
  --accent: #00ff88;
  --accent-dim: #00ff8820;
  --accent-hover: #00cc6f;
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --text: #ffffff;
  --text-dim: #888888;
  --border: #222222;
  */
  
  /* Option 3: Blue - Uncomment to use
  --accent: #0ea5e9;
  --accent-dim: #0ea5e920;
  --accent-hover: #0284c7;
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --text: #ffffff;
  --text-dim: #888888;
  --border: #222222;
  */
  
  /* Option 4: Purple - Uncomment to use
  --accent: #a78bfa;
  --accent-dim: #a78bfa20;
  --accent-hover: #8b5cf6;
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --text: #ffffff;
  --text-dim: #888888;
  --border: #222222;
  */
}

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

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

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: 0;
  background: var(--bg);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero-image {
  margin-bottom: 32px;
}

.profile-pic {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: none;
  object-fit: cover;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.hero-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  font-size: 15px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 20px var(--accent-dim);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* Sections */
section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

section h1 {
  font-size: 34px;
  margin-bottom: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

section h2 {
  font-size: 28px;
  margin-bottom: 32px;
  font-weight: 600;
}

/* Highlight Cards */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.highlight-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s;
}

.highlight-card:hover {
  border-color: var(--accent);
  background: var(--bg-tertiary);
  box-shadow: 0 0 20px var(--accent-dim);
}

.highlight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.token {
  font-weight: 600;
  font-size: 18px;
}

.pnl {
  font-weight: 700;
  font-size: 16px;
}

.pnl.positive {
  color: var(--accent);
}

.pnl.negative {
  color: #ff4444;
}

.highlight-detail {
  color: var(--text-dim);
  font-size: 14px;
}

/* Thoughts Preview */
.thoughts-preview {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.thought-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
  position: relative;
}

.thought-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-dim);
}

.thought-card time {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  position: absolute;
  top: 24px;
  right: 24px;
}

.thought-card h3 {
  font-size: 25px;
  margin: 12px 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.thought-card h3 a {
  font-size: inherit;
  font-weight: inherit;
}

.thought-card p {
  color: var(--text-dim);
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 400;
}

.thought-card a {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.thought-card a:hover {
  text-decoration: underline;
}

/* View All Link */
.view-all {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.view-all:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 48px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .subtitle {
    font-size: 16px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-links {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}
