/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .navbar {
    background-color: #1d1d1d;
    padding: 20px 0;
    color: #fff;
    position: sticky;  /* Makes the navbar sticky */
    top: 0;  /* Ensures the navbar sticks at the top */
    z-index: 1000;  /* Keeps the navbar above other content when scrolling */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    flex-wrap: wrap; /* just in case */
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .brand-link {
    font-size: 2rem;
    font-weight: 600;
    color: #f1c40f; /* Yellow color for the title */
    transition: text-decoration 0.3s ease;
  }
  
  .brand-link:hover {
    text-decoration: underline; /* Underline on hover */
  }
  
  .nav-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 350px; /* Fixed width for the right section */
    margin-left: 20px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-links a {
    color: #fff;
    font-weight: 600;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  .stats-inline {
    color: #fff;
    font-size: 1.2rem;
    white-space: nowrap; /* Prevent text from wrapping */
    margin-right: 20px; /* Space between stats and links */
  }
  
  /* Hero Section */
.hero {
  background-color: #111;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  flex-direction: column;
  box-sizing: border-box;
}
  
  .hero-container {
    max-width: 900px;
  }
  
.hero h1 {
  font-size: 4rem;
  color: #f1c40f;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
    padding: 0 20px;
  }
}
  
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .down-arrow {
    font-size: 2rem;
    margin-top: 0; /* Set margin to 0 to vertically center */
    color: #fff;
    text-decoration: none;
  }
  
  .down-arrow:hover {
    transform: translateY(2px);
  }
  
  /* Betting Section */
  .betting-section {
    padding: 10px 10px;
  }
  
  .betting-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .bet-box {
    background: #222;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 0px 30px 0px 30px;
    width: 100%;
    max-width: 450px;
    flex: 1 1 300px;
  }
  
  .bet-box h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .bet-stats p {
    margin: 5px 0;
    font-size: 1rem;
  }
  
  .bet-buttons {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .buy-btn, .sell-btn {
    padding: 10px 20px;
    margin-right: 10px;
    margin-bottom: 0;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .buy-btn {
    background-color: #2ecc71;
    color: white;
  }
  
  .buy-btn:hover {
    background-color: #27ae60;
  }
  
  .sell-btn {
    background-color: #e74c3c;
    color: white;
  }
  
  .sell-btn:hover {
    background-color: #c0392b;
  }
  
  /* Footer */
  footer {
    background-color: #1d1d1d;
    padding: 20px 0;
    text-align: center;
    color: #fff;
  }
  
  /* Sidebar Stats */
  .nav-container .stats-inline {
    display: flex;
    justify-content: space-between;
    width: 350px;
  }

  /* Styling for the Twitter feed placeholder */
.twitter-feed {
    text-align: center;
    padding: 40px;
    background-color: #000;
    color: #fff;
    margin-top: 50px;
  }

  .chart-placeholder {
    margin-top: 15px;
    width: 100%;
    height: 150px;
    border: 2px dashed #555;
    border-radius: 8px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-size: 14px;
  }

  .progress-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px;
    background-color: #000;
    color: white;
  }
  
  .progress-card {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: left;
  }
  
  .progress-card h3 {
    color: #FFD700;
    margin-bottom: 10px;
  }
  
  .chart-placeholder {
    margin-top: 10px;
    width: 100%;
    height: 150px;
    border: 2px dashed #555;
    border-radius: 8px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
  }
  
  a {
    color: yellow;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  
  a:hover {
    color: white;
    text-shadow: 0 0 8px yellow;
  }
  
  .buy-button {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .buy-button:hover {
    background-color: darkgreen;
  }
  
  .sell-button {
    background-color: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .sell-button:hover {
    background-color: darkred;
  }

  .nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: black;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      text-align: center;
      z-index: 999;
    }
  
    .nav-links a,
    .nav-links span {
      padding: 12px;
      display: block;
      width: 100%;
      color: white;
      border-top: 1px solid #333;
    }
  
    .nav-links.open {
      display: flex;
    }
  }