:root {
    --sidebar-bg: #1e1a2e;
    --sidebar-active-bg: #2d2640;
    --sidebar-icon-color: #9b97a7;
    --sidebar-active-icon-color: #ffffff;
    --sidebar-width: 220px;
    --gradient-start: #ff5bb0;
    --gradient-end: #9747ff;
  }

.banner {
    background: linear-gradient(120deg, #042911 0%, #0c470e 50%, #38a309 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 190px;
}

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.banner-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.banner-text {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    z-index: 2;
}

.subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.title {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 5px;
}

.description {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 22px;
}

.cta-button {
    display: inline-block;
    background-color: #1e1a2e;
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button:hover {
background-color: #2d2640;
transform: translateY(-2px);
}

@media (max-width: 768px) {
    .slider {
        flex-direction: column;
    }
}


.shapes {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Donut shape */
.image1 {
    position: absolute;
    right: -15%;
    bottom: 0;
    top: 18%;
    width: 174px;
    height: 129px;
}

/* Pill shapes */

.image2 {
    position: absolute;
    left: 70%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.image6 {
    position: absolute;
right: 30%;
top: 0;
}

/* Cube */
.image3 {
    position: absolute;
right: 0;
bottom: 0;
}

/* Sphere */
.image4 {
    position: absolute;
left: 20%;
bottom: 30%;
}

/* White capsule */
.image5 {
    position: absolute;
right: 0;
top: 0;

}

/* Chart Container */

/* .banner-chart-container {
    display: flex;
    justify-content: center;
    gap: 20px;
} */

.chart-container {
    margin-top: 30px;
    border: 1.5px solid #9A9A9A;
    background-color: #1e1e1e;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
  }

  .chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  @media (max-width: 768px) {
    .chart-header {
        flex-direction: column;
    }
  }

  .pair-selector {
    display: flex;
    align-items: center;
    background-color: #1e1a2e;
    padding: 12px 16px;
    border-radius: 16px;
    cursor: pointer;
    gap: 8px;
  }

  .eth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pair-text {
    font-weight: 600;
    font-size: 18px;
  }

  .dropdown-icon {
    margin-left: 8px;
    opacity: 0.7;
    
  }

  .time-selector {
    display: flex;
    gap: 8px;
  }

  .time-button {
    background-color: #1e1a2e;
    border: none;
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .time-button:hover {
    background-color: #2a2440;
  }

  .time-button.active {
    background-color: #1e1a2e;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  }

  .chart-body {
    position: relative;
  }

  canvas {
    border-radius: 8px;
    height: 100%;
  }

  .chart-footer {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }



  .current-price, .price-change {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .price-label, .change-label {
    color: rgba(255, 255, 255, 0.7);
  }

  .price-value, .change-value {
    font-weight: 600;
    font-size: 18px;
  }

  .positive {
    color: #48bb78;
  }

  .negative {
    color: #f56565;
  }

  @media (max-width: 768px) {
    .chart-container {
      padding: 16px;
    }

    .chart-body {
      height: 300px;
    }

    .pair-text {
      font-size: 16px;
    }

    .time-button {
      padding: 8px 12px;
      font-size: 14px;
    }

    .chart-footer {
      flex-direction: column;
      gap: 12px;
      padding: 0 20px;
    }
  }

  .ticker-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    margin-top: 30px;
  }

  .ticker-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 5px;
  }

  .ticker-carousel::-webkit-scrollbar {
    display: none;
  }

  .crypto-card {
    flex: 0 0 280px;
    background-color: #1e1e1e;
    border-radius: 16px;
    border: 1.5px solid #9A9A9A;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .crypto-icon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }

  .crypto-icon img {
    width: 32px;
    height: 32px;
  }

  .crypto-icon.btc {
    background-color: #f5ac6e;
  }

  .crypto-icon.eth {
    background-color: #8ac9fe;
  }

  .crypto-icon.ltc {
    background-color: #60b7ff;
  }

  .card-content {
    margin-top: 20px;
  }

  .pair-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .pair {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #868b93;
    font-size: 14px;
  }

  .pair-arrow {
    display: inline-flex;
  }

  .change {
    font-size: 14px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
  }

  .change.positive {
    color: #00c287;
  }

  .change.negative {
    color: #e72d04;
  }

  .price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .btc-chart {
    border: 1.5px solid #9A9A9A;
    border-radius: 24px;
    background: #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }

  .chart-con {
    height: 60px;
    margin-top: 10px;
  }

  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s;
  }

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

  .nav-button.prev {
    left: 10px;
  }

  .nav-button.next {
    right: 10px;
  }

  @media (max-width: 768px) {
    .crypto-card {
      flex: 0 0 260px;
    }
  }

  /* Market Trend */

  .transfer {
    display: flex;
    gap: 20px;
    margin-top: 30px;
  }

  @media (max-width: 768px) {
    .transfer {
        flex-direction: column;
    }
  }

  .market-trend {
    background: #1e1e1e;
    color: #ffffff;
    margin-top: 30px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 1.5rem;
    transition: 0.3s ease;
    font-family: 'Montserrat', sans-serif;
  }
  .market-trend h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 600;
  }

  .market-trend table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
  }

  .market-trend th {
    text-align: left;
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
  }

  .market-trend tr:hover td {
    background: #000000;
    transition: 0.2s ease;
  }

  .market-trend td {
   padding: 10px;
   cursor: pointer;
  }

  .positive {
    color: #10B981;
    font-weight: 600;
  }

  .negative {
    color: #EF4444;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .amount {
        width: 100px;
    }
  }


  /* Wallets */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    perspective: 1000px;
  }
  
 

  .card {
    background-color: #0c0c0c !important; 
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    border: 2px solid #515151;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    text-decoration: none;
    color: white !important;
  }

  .card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.0) 60%);
    transform: translateX(0) translateY(0);
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .card:hover {
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  }

  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .date {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-weight: 600;
  }

  .card-body {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .title {
    font-size: 23px;
    color: #FFFFFF;
    margin: 0;
  }

  .award {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    font-weight: bold;
  }

  .location {
    font-size: 0.85rem;
    color: #cdcdcd;
    font-weight: 500;
  }

  .illustration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }
  
  
