* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Only show scrollbars on hover for specific elements */
.token-data-container:hover,
.messages:hover,
.search-interface textarea:hover,
.token-mint:hover,
.historical-table:hover {
  scrollbar-width: thin;
  -ms-overflow-style: auto;
}

.token-data-container:hover::-webkit-scrollbar,
.messages:hover::-webkit-scrollbar,
.search-interface textarea:hover::-webkit-scrollbar,
.token-mint:hover::-webkit-scrollbar,
.historical-table:hover::-webkit-scrollbar {
  display: block;
  width: 8px;
  height: 8px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

.container {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.gradient-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(150px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.pink {
  background: linear-gradient(45deg, rgba(70, 57, 255, 0.3), rgba(0, 239, 169, 0.3));
  animation-delay: -2s;
}

.purple {
  background: linear-gradient(-45deg, rgba(0, 239, 169, 0.3), rgba(70, 57, 255, 0.3));
  animation-delay: -4s;
}

.blue {
  background: linear-gradient(90deg, rgba(70, 57, 255, 0.3), rgba(0, 239, 169, 0.3));
  animation-delay: -6s;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(70, 57, 255, 0.5);
}

.nav-logo {
  width: 70%;
  height: 70%;
  object-fit: cover;
}

.title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(to right, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-item:hover, .nav-item.active {
  color: #fff;
  background: rgba(70, 57, 255, 0.1);
}

.nav-item.active {
  background: linear-gradient(135deg, #4639ff, #00efa9);
}

.wallet-button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.wallet-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .wallet-button {
      margin-left: auto;
      white-space: nowrap;
      padding: 6px 12px;
  }

  .wallet-button span::after {
      content: "News";
  }

  .wallet-button span {
      font-size: 0;
  }
}

.wallet-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.chat-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: -40px;
}

.search-interface {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#search-interface img{
  width: 300px;
  margin: 0 auto;
}

.search-interface .main-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: -40px;
}
.search-interface .main-title h5 {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.search-interface .sub-title {
  font-size: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.sub-titlee{
  text-align: center;
  font-size: 18px;
  width: 60vw;
  margin: 0 auto;
  margin-bottom: 40px;
}
.search-interface textarea {
  font-size: 1.1rem;
  width: 100%;
  height: 50px;
  padding: 6px;
  border:1px solid rgba(0, 239, 169, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  resize: none;
  outline: none;
  font-family: inherit;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.1);
  line-height: 26px;
  vertical-align: middle;
  padding-top: 12px;
  transition: all 0.3s ease;
}

.flash-highlight {
  animation: flash-animation 0.6s;
}

@keyframes flash-animation {
  0% {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }
  40% {
    background: rgba(70, 57, 255, 0.2);
    border-color: rgba(70, 57, 255, 0.8);
    box-shadow: 0 0 15px rgba(70, 57, 255, 0.5);
  }
  100% {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

.search-interface button {
  height: 50px;
  font-size: 1.2rem;
  color: #fff;
    background: linear-gradient(135deg, #4639ff, #00efa9);
    border: none;
    border-radius: 8px;
}

.model-selection {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
}

.model-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.model-checkbox img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  order: 2;
}

.model-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

.model-checkbox span.checkmark {
  order: 3;
}

.model-checkbox:hover {
  background: rgba(255, 255, 255, 0.15);
}

.messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.1);
  -ms-overflow-style: none;
  padding-bottom: 100px;
}

.messages::-webkit-scrollbar {
  display: none;
}

.message {
  display: flex;
  align-items: flex-start;
  max-width: 80%;
}

.message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message.bot {
  align-self: flex-start;
}

.avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

.avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.message-content {
  background: linear-gradient(135deg, #4639ff, #00efa9);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: 12px;
  color: white;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.message.user .message-content {
  background: linear-gradient(135deg, rgba(70, 57, 255, 0.3), rgba(0, 239, 169, 0.3));
}

.chat-grid {
  display: grid;
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
  max-width: 100%;
}

.chat-grid[data-count="1"] {
  grid-template-columns: minmax(0, 800px);
  justify-content: center;
}

.chat-grid[data-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 600px));
  max-width: 1240px;
}

.chat-grid[data-count="3"] {
  grid-template-columns: repeat(3, 1fr);
}

.chat-section {
  background: rgba(20, 20, 20, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: calc(100vh - 200px);
}

@media (max-width: 1200px) {
  .chat-grid {
    grid-template-columns: 1fr;
  }

  .chat-grid[data-count="1"],
  .chat-grid[data-count="2"],
  .chat-grid[data-count="3"] {
    grid-template-columns: 1fr;
  }

  .chat-section {
    height: calc(100vh - 260px);
    margin-bottom: 20px;
  }

  .chat-section.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .chat-section {
    display: flex;
    height: calc(100vh - 180px);
  }

 
  .messages {
    padding-bottom: 120px;
  }

  .input-container {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 10px 15px;
    background: rgba(10, 10, 10, 0.9);
  }
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(70, 57, 255, 0.1);
}

.header-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.input-container {
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 10px;
  align-items: center;
}

.input-container textarea {
  flex: 1;
  height: 40px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  resize: none;
  outline: none;
  font-family: inherit;
  line-height: 24px;
}

.input-controls {
  display: flex;
  align-items: center;
}

.input-controls .send-button {
  height: 40px;
  padding: 0 20px;
  white-space: nowrap;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.input-controls .send-button:hover {
  opacity: 0.9;
}

.footer {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  padding: 1rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.model-tabs {
    display: none;
}

@media (max-width: 1200px) {
    .model-tabs {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 15px;
        margin: 70px 15px 20px;
        background: rgba(20, 20, 20, 0.5);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        z-index: 5;
    }

    .model-tab {
        flex: 1;
        padding: 10px;
        text-align: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .model-tab.active {
        background: linear-gradient(135deg, #4639ff, #00efa9);
        color: white;
        border: none;
    }
}

@media (max-width: 768px) {
    .model-tabs {
        margin: 60px 10px 15px;
        padding: 10px;
    }

    .model-tab {
        padding: 8px;
        font-size: 0.9rem;
    }
}

@keyframes float {
  0%, 100% {
      transform: translate(-50%, -50%) translateY(-30px) translateX(-20px);
  }
  25% {
      transform: translate(-50%, -50%) translateY(0px) translateX(20px);
  }
  50% {
      transform: translate(-50%, -50%) translateY(30px) translateX(-10px);
  }
  75% {
      transform: translate(-50%, -50%) translateY(0px) translateX(10px);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-links {
      display: none;
  }

  

  .chat-grid{
    padding: 0 15px;
  }

  

  .search-interface {
    width: 100vw;
  }

  .search-interface .main-title {
      font-size: 2rem;
  }

  .search-interface .sub-title {
      font-size: 1rem;
  }

  .model-selection {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
      flex-wrap: nowrap;
      padding: 0 10px;
  }

  .model-checkbox {
      width: auto;
      padding: 0.6rem;
      background: rgba(20, 20, 20, 0.5);
  }

  .model-checkbox img {
      width: 28px;
      height: 28px;
      margin: 0;
  }

  .model-checkbox span.checkmark,
  .model-checkbox span:not(.checkmark),
  .model-checkbox > span.checkmark + span {
      display: none !important;
      width: 0;
      height: 0;
      opacity: 0;
      visibility: hidden;
      position: absolute;
  }

  .input-container {
      position: relative;
      height: 150px;
      width: 94%;
      margin: 0 auto;
      padding: 12px;
  }

  .input-container textarea {
      height: 45%;
  }

  .input-controls {
      position: absolute;
      bottom: 30px;
      left: 14px;
      right: 14px;
  }
}

@media (max-width: 1200px) {
  .chat-grid {
      grid-template-columns: 1fr;
  }

  .chat-grid[data-count="1"],
  .chat-grid[data-count="2"],
  .chat-grid[data-count="3"] {
      grid-template-columns: 1fr;
  }

  .chat-section {
      height: calc(100vh - 260px);
      margin-bottom: 0px !important;
      height: 500px;
  }

  .chat-section.active {
      display: flex;
  }

  @media (max-width: 1200px) {
      .model-tabs {
          display: flex;
          justify-content: center;
          gap: 10px;
          padding: 15px;
          margin-bottom: 20px;
          background: rgba(20, 20, 20, 0.5);
          border-radius: 12px;
          border: 1px solid rgba(255, 255, 255, 0.1);
      }
  }
  
  @media (max-width: 768px) {
      .input-container {
          position: relative;
          height: auto;
          width: 94%;
          margin: 0 auto;
          padding: 12px;
          display: flex;
          flex-direction: row;
          align-items: center;
          gap: 10px;
      }
  
      .input-container textarea {
          height: 40px;
          min-height: 40px;
          padding: 8px 12px;
      }
  
      .input-controls {
          position: static;
          height: 40px;
      }
  
      .input-controls .send-button {
          height: 40px;
          padding: 0 20px;
          margin: 0;
      }
  }

  .model-tab {
      padding: 8px 16px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.1);
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .model-tab.active {
      background: linear-gradient(135deg, #4639ff, #00efa9);
      color: white;
      border: none;
  }
}

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem;
    justify-content: space-around;
    z-index: 10;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    min-width: 100px;
    justify-content: center;
}

.bottom-nav .nav-item i {
    font-size: 1.2rem;
}

.bottom-nav .nav-item span {
    font-size: 0.9rem;
}

.bottom-nav .nav-item.active {
    color: #fff;
    background: linear-gradient(135deg, #4639ff, #00efa9);
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }

    .search-interface {
        /* margin: 60px auto; */
        padding: 0 15px;
    }

    .search-interface textarea {
        height: 80px;
    }

    .model-selection {
        padding: 0;
        margin: 0.5rem 0;
    }

   

    .input-container {
        position: fixed;
        bottom: 70px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 10px 15px;
        background: rgba(10, 10, 10, 0.9);
    }

    .input-container textarea {
        height: 40px;
    }

    .messages {
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    .search-interface .main-title {
        font-size: 1.8rem;
    }

    .search-interface .sub-title {
        font-size: 0.9rem;
    }

    .model-checkbox {
        padding: 0.5rem;
    }

    .model-checkbox img {
        width: 24px;
        height: 24px;
    }

    .bottom-nav .nav-item {
        min-width: auto;
    }
}

.wallet-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.wallet-button i {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .wallet-button {
        margin-left: auto;
        white-space: nowrap;
        padding: 6px 12px;
    }

    .wallet-button span::after {
        content: "Wallet";
    }

    .wallet-button span {
        font-size: 0;
    }

    .nav-links {
        margin-right: auto;
    }

    .top-nav {
        justify-content: space-between;
        padding: 1rem 2rem;
    }
}

.token-data-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  background: rgba(20, 20, 20, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.1);
}

.holders-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
}

.change-stats, .distribution-stats {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.change-stats h3, .distribution-stats h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.change-table, .historical-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
  max-height: 500px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.1);
}

.change-table th, .change-table td,
.historical-table th, .historical-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.change-table th, .historical-table th {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.change-table tr:last-child td {
  border-bottom: none;
}

.distribution-chart {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.distribution-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.distribution-label {
  width: 80px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.distribution-bar {
  flex: 1;
  height: 20px;
  background: linear-gradient(90deg, #4639ff, #00efa9);
  border-radius: 20px;
  min-width: 5px;
}

.distribution-value {
  width: 60px;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
}

.historical-section {
  margin-top: 40px;
}

.historical-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.spinner-inner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #4639ff;
  border-right: 3px solid #00efa9;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.error-message {
  padding: 30px;
  text-align: center;
  color: #ff5555;
  font-size: 1.2rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .token-data-container {
    margin: 30px 15px;
    padding: 20px;
  }
  
  .main-stats {
    flex-direction: column;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .change-table, .historical-table {
    font-size: 0.8rem;
  }
  
  .change-table th, .change-table td,
  .historical-table th, .historical-table td {
    padding: 8px;
  }
  
  .historical-table {
    overflow-x: auto;
    display: block;
  }
}

.metadata-section {
  margin-bottom: 30px;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.metadata-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.token-name {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.token-details {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.token-standard {
  padding: 5px 10px;
  background: rgba(70, 57, 255, 0.2);
  border-radius: 20px;
  font-weight: 500;
}

.token-mint {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
  font-family: monospace;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 10px;
  border-radius: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .token-name {
    font-size: 1.8rem;
  }
  
  .token-details {
    flex-direction: column;
    gap: 10px;
  }
  
  .token-mint {
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.7);
}

.token-suggestions {
  width: 100%;
  overflow-x: hidden;
  padding: 10px 0;
  position: relative;
  margin: 20px 0;
}

.token-suggestions-scroll {
  display: flex;
  gap: 20px;
  animation: scrollTokens 20s linear infinite;
  padding-right: 60px;
}

.token-suggestion {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.token-suggestion:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(70, 57, 255, 0.5);
}

@keyframes scrollTokens {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.token-suggestions:hover .token-suggestions-scroll {
  animation-play-state: paused;
}

.token-suggestion-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.token-suggestion-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.token-suggestion-info {
  flex: 1;
  overflow: hidden;
}

.token-suggestion-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: white;
}

.token-suggestion-address {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .token-suggestion {
    min-width: 180px;
    padding: 10px;
  }
  
  .token-suggestion-icon {
    width: 30px;
    height: 30px;
  }
  
  .token-suggestion-name {
    font-size: 0.8rem;
  }
  
  .token-suggestion-address {
    font-size: 0.6rem;
  }
  
  .token-suggestions-scroll {
    animation-duration: 15s;
  }
}

.analytics-dashboard {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

.token-header {
  padding: 20px;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.dashboard-section {
  background: rgba(20, 20, 20, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.section-header {
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.section-content {
  padding: 20px;
}

.chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 15px;
  height: 15px;
  border-radius: 3px;
}

.legend-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.tabs-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.tab-button {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
  background: linear-gradient(135deg, rgba(70, 57, 255, 0.3), rgba(0, 239, 169, 0.3));
  color: white;
  border-color: rgba(70, 57, 255, 0.5);
}

.holder-count-container,
.acquisition-container,
.distribution-container,
.net-flow-container,
.flow-by-type-container,
.health-container,
.conclusion-container {
  margin-bottom: 20px;
}

.holder-count-container h3,
.acquisition-container h3,
.distribution-container h3,
.net-flow-container h3,
.flow-by-type-container h3,
.health-container h3 {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.stats-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 300px;
  margin: 0 auto 20px;
}

.stats-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.stat-value.positive {
  background: linear-gradient(135deg, #00efa9, #00d5ca);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-value.negative {
  background: linear-gradient(135deg, #ff6b6b, #ff9f43);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.change-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.9rem;
}

.change-indicator.positive {
  color: #00efa9;
}

.change-indicator.negative {
  color: #ff6b6b;
}

.change-arrow {
  font-size: 1.2rem;
}

.distribution-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.distribution-table th,
.distribution-table td {
  padding: 10px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.distribution-table th {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.9rem;
}

.conclusion-text {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.conclusion-text p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .analytics-dashboard {
    padding: 10px;
  }
  
  .chart-container {
    overflow-x: auto;
  }
  
  .section-content {
    padding: 15px;
  }
  
  .stats-card {
    padding: 15px;
  }
  
  .stat-value {
    font-size: 1.8rem;
  }
  
  .tab-button {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  
  .distribution-table th,
  .distribution-table td {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}

.last-month-holders {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.data-notice {
  background: rgba(255, 165, 0, 0.1);
  border-left: 3px solid #ff9f43;
  padding: 8px 12px;
  border-radius: 4px;
  margin: 10px 0;
  font-size: 0.8rem;
  color: #ff9f43;
  text-align: center;
}

/* 当没有数据时应用到图表容器 */
.chart-container.no-data {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin: 15px 0;
}

/* 美化图表区域 */
.chart-container {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 15px 0;
}

/* 为持有者变化添加一个好看的标记 */
.change-indicator {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
}

.change-indicator.positive {
  background: rgba(0, 239, 169, 0.1);
}

.change-indicator.negative {
  background: rgba(255, 107, 107, 0.1);
}

.change-period {
  margin-left: 5px;
  opacity: 0.7;
  font-size: 0.8em;
}

.token-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.token-logo-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.token-logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  opacity: 0.5;
}

.token-info {
  flex: 1;
}

.holder-count-flex-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.holder-count-container {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(30, 30, 40, 0.7);
  margin-right: 15px;
  display: flex;
  flex-direction: column;
}

.holders-list {
  margin-top: 20px;
  background-color: rgba(30, 30, 40, 0.7);
  border-radius: 8px;
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
}

.holders-list h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.holders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.holders-table th {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.holders-table td {
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.acquisition-container {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

.combined-chart {
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.distribution-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.distribution-table-container {
  flex: 1;
  min-width: 300px;
}

.distribution-pie-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.holder-icon, .legend-icon {
  font-size: 1.2em;
  margin-right: 5px;
}

.horizontal-bar-chart {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.horizontal-bar-container {
  display: flex;
  gap: 15px;
  align-items: center;
}

.horizontal-bar-label {
  width: 120px;
  font-weight: 500;
  text-align: right;
}

.horizontal-bar-wrapper {
  flex: 1;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.horizontal-bar {
  height: 100%;
  border-radius: 15px;
  transition: width 1s ease;
}

.horizontal-bar-value {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}

.historical-holders-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.historical-chart-container {
  width: 100%;
  margin-bottom: 20px;
  min-height: 300px;
  display: flex;
  justify-content: center;
}

.historical-table-container {
  overflow-x: auto;
}

.historical-table {
  width: 100%;
  border-collapse: collapse;
}

.historical-table th,
.historical-table td {
  padding: 10px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.historical-table th {
  background: rgba(0, 0, 0, 0.2);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.historical-table td.positive {
  color: #00efa9;
}

.historical-table td.negative {
  color: #ff6b6b;
}

@media (max-width: 768px) {
  .token-header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .holder-count-flex-container {
    flex-direction: column;
  }
  
  .distribution-flex-container {
    flex-direction: column;
  }
  
  .horizontal-bar-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .horizontal-bar-label {
    width: auto;
    text-align: left;
    margin-bottom: 5px;
  }
}

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

.dashboard-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.back-button {
  padding: 8px 16px;
  background: rgba(70, 57, 255, 0.2);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: rgba(70, 57, 255, 0.4);
  transform: translateY(-2px);
}

.holder-count-flex-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

.holder-count-container {
  flex: 1;
  min-width: 250px;
}

.acquisition-container {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

.chart-container {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.tooltip {
  position: absolute;
  background-color: rgba(40, 40, 60, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 12px;
  color: #fff;
  pointer-events: none;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}

.historical-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.historical-tab {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.historical-tab.active {
  background: linear-gradient(135deg, rgba(70, 57, 255, 0.3), rgba(0, 239, 169, 0.3));
  color: white;
  border-color: rgba(70, 57, 255, 0.5);
}

.historical-content > div {
  display: none;
}

.historical-content > div.active {
  display: block;
}

.horizontal-bar-supply {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.supply-bar-container {
  display: flex;
  gap: 15px;
  align-items: center;
}

.supply-bar-label {
  width: 120px;
  font-weight: 500;
  text-align: right;
}

.supply-bar-wrapper {
  flex: 1;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.supply-bar {
  height: 100%;
  border-radius: 15px;
  transition: width 1s ease;
}

.supply-bar-value {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}

.holder-supply-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.holder-supply-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.holder-supply-label {
  font-size: 14px;
  color: #fff;
  margin-bottom: 5px;
}

.holder-supply-value {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.holder-supply-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(70, 57, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.holder-supply-progress {
  height: 100%;
  background: linear-gradient(to right, #4639ff, #00efa9);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-button i {
  font-size: 16px;
}

.social-button.twitter {
  background: linear-gradient(135deg, #1DA1F2, #1a91da);
  box-shadow: 0 4px 12px rgba(29, 161, 242, 0.2);
}

.social-button.telegram {
  background: linear-gradient(135deg, #0088cc, #0077b5);
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.2);
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.social-button:active {
  transform: translateY(0);
}

.social-button.clicked {
  animation: pulse 0.3s forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .social-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .social-button, .copy-button {
    padding: 6px 12px;
    font-size: 12px;
    height: 40px;
    width: 35vw;
    
  }
  
  .copy-button {
    padding: 6px 8px;
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
    width: 70vw;
  }
  
  .copy-text {
    font-size: 12px;
    /* max-width: 120px; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.copy-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.copy-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00efa9;
  display: inline-block;
  margin-right: 4px;
  box-shadow: 0 0 8px rgba(0, 239, 169, 0.6);
}

.copy-text {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

#copy-icon {
  color: #00efa9;
  padding: 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#copy-icon:hover {
  transform: scale(1.2);
  color: #fff;
  background-color: rgba(0, 239, 169, 0.2);
}

.copy-success #copy-icon {
  color: #00efa9;
  animation: success-pulse 1s;
}

@keyframes success-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

.features-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.feature-card {
  flex: 1;
  background: rgba(30, 30, 40, 0.5);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  max-width: 300px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(70, 57, 255, 0.2);
  border-color: rgba(0, 239, 169, 0.3);
}

.feature-card.touch-active {
  transform: scale(0.98);
  background: rgba(40, 40, 50, 0.6);
  box-shadow: 0 4px 15px rgba(70, 57, 255, 0.3);
  border-color: rgba(0, 239, 169, 0.4);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(70, 57, 255, 0.2), rgba(0, 239, 169, 0.2));
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon i {
  font-size: 32px;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  margin-top: 0;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
  padding: 0 10px;
}

@media (max-width: 1200px) {
  .features-container {
    flex-wrap: wrap;
  }
  
  .feature-card {
    flex-basis: calc(50% - 20px);
    max-width: none;
  }
}

@media (max-width: 992px) {
  .features-container {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .feature-card {
    flex-basis: calc(50% - 20px);
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .features-container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 60px;
  }
  
  .feature-card {
    width: calc(50% - 10px);
    max-width: none;
    margin: 0;
    flex: 0 0 auto;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 22px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
    margin: 8px 0;
  }
  
  .feature-card p {
    font-size: 0.85rem;
    padding: 0 5px;
  }
}

@media (max-width: 480px) {
  .features-container {
    padding: 0 10px;
    margin-bottom: 40px;
    gap: 10px;
  }
  
  .feature-card {
    width: calc(50% - 5px);
    margin: 0;
    padding: 12px 8px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .feature-icon i {
    font-size: 18px;
  }
  
  .feature-card p {
    margin-bottom: 5px;
  }
  
  .sub-titlee {
    width: 90vw;
    font-size: 16px;
  }
  
  .section-heading {
    font-size: 1.7rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}

@media (orientation: landscape) and (max-width: 900px) {
  .features-container {
    flex-wrap: wrap;
  }
  
  .feature-card {
    flex-basis: calc(50% - 10px);
    padding: 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 360px) {
  .feature-card {
    padding: 10px 5px;
  }
  
  .feature-icon {
    width: 36px;
    height: 36px;
  }
  
  .feature-card h3 {
    font-size: 0.9rem;
    margin: 6px 0;
  }
  
  .feature-card p {
    font-size: 0.75rem;
    padding: 0 3px;
  }
}

.chart-preview {
  margin: 15px 0;
  transform: scale(1.2);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.feature-card:hover .chart-preview {
  opacity: 1;
  transform: scale(1.3);
}

.pie-chart-preview path {
  transform-origin: center;
  transition: transform 0.5s ease;
}

.feature-card:hover .pie-chart-preview path:nth-child(1) {
  transform: translateX(2px);
}

.feature-card:hover .pie-chart-preview path:nth-child(2) {
  transform: translateY(-2px);
}

.feature-card:hover .pie-chart-preview path:nth-child(3) {
  transform: translateY(2px);
}

.feature-card:hover .pie-chart-preview path:nth-child(4) {
  transform: translateX(-2px);
}

.line-chart-preview polyline {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: dash 2s ease-in-out forwards;
}

.line-chart-preview circle {
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
  animation-delay: 1.5s;
}

.feature-card:hover .line-chart-preview polyline {
  animation: dash 1.5s ease-in-out forwards;
}

.feature-card:hover .line-chart-preview circle {
  animation: pulse 1s infinite alternate;
}

.bar-chart-preview rect {
  transform: scaleY(0);
  transform-origin: bottom;
  animation: scaleUp 1s ease forwards;
}

.bar-chart-preview rect:nth-child(1) {
  animation-delay: 0s;
}

.bar-chart-preview rect:nth-child(2) {
  animation-delay: 0.1s;
}

.bar-chart-preview rect:nth-child(3) {
  animation-delay: 0.2s;
}

.bar-chart-preview rect:nth-child(4) {
  animation-delay: 0.3s;
}

.bar-chart-preview rect:nth-child(5) {
  animation-delay: 0.4s;
}

.feature-card:hover .bar-chart-preview rect {
  animation: bounce 0.5s ease;
}

.donut-chart-preview circle {
  transition: all 0.5s ease;
}

.feature-card:hover .donut-chart-preview circle:nth-child(2),
.feature-card:hover .donut-chart-preview circle:nth-child(3),
.feature-card:hover .donut-chart-preview circle:nth-child(4) {
  stroke-width: 12;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  to {
    transform: scaleY(1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.1);
  }
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 15px;
  margin-top: 30px;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00efa9, transparent);
}

@media (max-width: 480px) {
  .token-suggestion {
    min-width: 180px;
    padding: 10px;
  }
  
  .token-suggestion-icon {
    width: 30px;
    height: 30px;
  }
  
  .token-suggestion-name {
    font-size: 0.8rem;
  }
  
  .token-suggestion-address {
    font-size: 0.6rem;
  }
  
  .token-suggestions-scroll {
    animation-duration: 15s;
  }
} 