/* Bitcoin.X Investor Memo Styles */
:root {
  --bg-color: #232323;
  --card-bg: #2a2a2a;
  --text-color: #EBE0D7;
  --accent-color: #FF7900;
  --secondary-bg: #2d2d2d;
  --dark-grey: #99948A;
  --highlight: #FF9D4D;
}

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

@font-face {
  font-family: 'Pixam Pixel';
  src: url('https://fonts.cdnfonts.com/css/pixam-pixel') format('woff2');
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: monospace;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.pixel-heading {
  font-family: 'Pixam Pixel', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.orange-text {
  color: var(--accent-color);
}

/* Neumorphic Card Styling */
.card {
  background-color: var(--bg-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.4),
    -12px -12px 24px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 
    15px 15px 30px rgba(0, 0, 0, 0.5),
    -15px -15px 30px rgba(255, 255, 255, 0.07);
}

.hero {
  text-align: center;
  padding: 4rem 0;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-card {
  flex: 1;
  min-width: 250px;
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(255, 255, 255, 0.05);
}

.stat-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.stat-card .number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-item {
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(255, 255, 255, 0.05);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 
    10px 10px 20px rgba(0, 0, 0, 0.4),
    -10px -10px 20px rgba(255, 255, 255, 0.07);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.revenue-chart {
  width: 100%;
  height: 400px;
  margin: 2rem 0;
  position: relative;
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 
    inset 6px 6px 12px rgba(0, 0, 0, 0.3),
    inset -6px -6px 12px rgba(255, 255, 255, 0.05);
}

.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 
    inset 6px 6px 12px rgba(0, 0, 0, 0.3),
    inset -6px -6px 12px rgba(255, 255, 255, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #333;
}

th {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--accent-color);
  font-weight: bold;
}

tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.cta-section {
  text-align: center;
  padding: 4rem 0;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: #000;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 2rem;
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.3),
    -6px -6px 12px rgba(255, 255, 255, 0.05);
}

.cta-button:hover {
  background-color: var(--highlight);
  transform: translateY(-3px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.07);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  box-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.3),
    -3px -3px 6px rgba(255, 255, 255, 0.05);
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: var(--bg-color);
  border: 4px solid var(--accent-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 
    3px 3px 6px rgba(0, 0, 0, 0.3),
    -3px -3px 6px rgba(255, 255, 255, 0.05);
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--bg-color);
  position: relative;
  border-radius: 6px;
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.3),
    -6px -6px 12px rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 18px;
  }
  
  .right {
    left: 0%;
  }
}

/* Investment value sections */
.value-proposition {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.value-card {
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    10px 10px 20px rgba(0, 0, 0, 0.4),
    -10px -10px 20px rgba(255, 255, 255, 0.07);
}

.value-card h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.value-card p {
  margin-bottom: 1rem;
}

.value-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
  margin: 1rem 0;
}

.investment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.option-card {
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    10px 10px 20px rgba(0, 0, 0, 0.4),
    -10px -10px 20px rgba(255, 255, 255, 0.07);
}

.roi-section {
  margin: 3rem 0;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.roi-card {
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(255, 255, 255, 0.05);
}

.roi-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
  margin: 1rem 0;
}

.market-opportunity {
  margin: 3rem 0;
}

.market-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2rem 0;
}

.market-stat {
  flex: 1;
  min-width: 200px;
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.3),
    -8px -8px 16px rgba(255, 255, 255, 0.05);
}

.market-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
  margin: 0.5rem 0;
}
