* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      background-color: #000;
      color: #fff;
      min-height: 100vh; /* Changed from fixed height */
      overflow-x: hidden; /* Allows vertical scroll */
      padding: 20px;
    }

    .container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .text-content {
      max-width: 600px;
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .buttons {
      display: flex;
      gap: 15px;
    }

    .btn {
      padding: 12px 24px;
      background-color: #00ff00;
      color: #000;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
      transition: transform 0.2s ease;
    }

    .btn:hover {
      transform: scale(1.05);
    }

    .image-container {
      position: relative;
      width: 300px;
      animation: float 4s ease-in-out infinite;
    }

    .image-container img {
      width: 100%;
      height: auto;
      display: block;
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        text-align: center;
      }

      .image-container {
        margin-top: 30px;
        width: 80%;
      }
    }

    marquee {
      margin-top: 40px;
      display: block;
    }
     .row {
    display: flex;
    justify-content: space-between; /* pushes one left, one right */
    align-items: center; /* vertical alignment */
  }
  .row img {
    width: 200px;   /* adjust size */
    height: auto;
  }
  

.tradingview-widget-copyright {
  font-size: 11px !important;
  color: #888 !important;
  text-align: center;
}
.tradingview-widget-copyright a {
  color: #888 !important;
  text-decoration: none !important;
}