* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Georgia', serif;
    background: #0f0f0f;
    color: #f5f5f5;
  }
  
  /* HERO */
  #hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1a0a00, #0f0f0f);
  }
  
  #hero h1 {
    font-size: 4rem;
    color: #f4a261;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }
  
  #hero p {
    font-size: 1.3rem;
    color: #aaa;
    max-width: 500px;
  }
  
  .scroll-hint {
    margin-top: 3rem;
    font-size: 1.5rem;
    color: #f4a261;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }
  
  /* SECTIONS */
  .scroll-section {
    min-height: 100vh;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sticky-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
  }
  
  h2 {
    font-size: 2.2rem;
    color: #f4a261;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  
  /* BAR CHART */
  #bar-chart {
    margin-top: 2rem;
  }
  
  .bar {
    fill: #f4a261;
    transition: fill 0.3s;
  }
  
  .bar:hover {
    fill: #e76f51;
  }
  
  .axis text {
    fill: #ccc;
    font-size: 12px;
  }
  
  .axis path,
  .axis line {
    stroke: #444;
  }
  
  /* CUISINE SELECTOR */
  #cuisine-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .cuisine-btn {
    padding: 8px 16px;
    border: 1px solid #f4a261;
    border-radius: 20px;
    background: transparent;
    color: #f4a261;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-transform: capitalize;
  }
  
  .cuisine-btn:hover,
  .cuisine-btn.active {
    background: #f4a261;
    color: #0f0f0f;
  }
  
  /* SHARED CHART */
  #shared-chart {
    margin-top: 2rem;
  }
  
  .shared-bar {
    fill: #2a9d8f;
    transition: fill 0.3s;
  }
  
  .shared-bar:hover {
    fill: #21867a;
  }
  
  /* OUTRO */
  #outro {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #0f0f0f, #1a0a00);
  }
  
  #outro p {
    color: #aaa;
    max-width: 600px;
    margin-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
  }