/** blockchain-section **/

/* Enhanced Cryptocurrency Table Styles */
.crypto-table-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 40px;
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.crypto-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    z-index: 1;
}

.crypto-table-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    color: white;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.table-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.table-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.filter-btn:hover::before {
    transform: translateX(100%);
}

.filter-btn.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.02);
}

.search-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-input {
    padding: 12px 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 30px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: 200px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    width: 280px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.9);
}


.loading-indicator {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.crypto-table {
    overflow-x: auto;
}

.table-head {
    display: grid;
    grid-template-columns: 60px 1fr 120px 100px 120px 120px 80px;
    background: rgba(248, 249, 250, 0.9);
    border-bottom: 2px solid #e9ecef;
    font-weight: 700;
    color: #495057;
    position: sticky;
    top: 0;
    z-index: 10;
}

.th-col {
    padding: 15px 10px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.th-col.sortable {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.th-col.sortable:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.th-col.sortable::after {
    content: ' ';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #ccc;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.th-col.sortable:hover::after {
    border-top-color: #000000;
}

#cryptoTableBody {
    max-height: 600px;
    overflow-y: auto;
}

.table-row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 100px 120px 120px 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
    overflow: hidden;
}

.table-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.02), transparent);
    transition: left 0.6s ease;
}

.table-row:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.06) 100%);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-bottom-color: rgba(0, 0, 0, 0.15);
}

.table-row:hover::before {
    left: 100%;
}

.table-row.featured {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(51, 51, 51, 0.05) 100%);
    border-left: 4px solid #000000;
    position: relative;
}

.table-row.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #000000, transparent);
}

.table-row.featured:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(51, 51, 51, 0.08) 100%);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.td-col {
    padding: 15px 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #495057;
}

.rank {
    font-weight: 700;
    color: #000000;
    justify-content: center;
}

.coin-info {
    gap: 10px;
}

.coin-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.table-row:hover .coin-logo {
    transform: scale(1.1);
}

.coin-text {
    display: flex;
    flex-direction: column;
}

.coin-name {
    font-weight: 700;
    color: #212529;
    font-size: 14px;
    transition: color 0.3s ease;
}

.table-row:hover .coin-name {
    color: #000000;
}

.coin-symbol {
    color: #6c757d;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.price {
    font-weight: 700;
    color: #212529;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    transition: all 0.3s ease;
}

.table-row:hover .price {
    color: #000000;
    transform: scale(1.05);
}

.change {
    font-weight: 700;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.change::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.change:hover::before {
    transform: translateX(100%);
}

.change.positive {
    color: #10b981;
}

.change.negative {
    color: #ef4444;
}

.change:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.market-cap, .volume {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.table-row:hover .market-cap,
.table-row:hover .volume {
    color: #000000;
}

.chart {
    justify-content: center;
}

.mini-chart {
    width: 65px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.mini-chart.up {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.mini-chart.down {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.mini-chart.no-data {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
    font-size: 10px;
    border: 1px solid #e9ecef;
}

.table-row:hover .mini-chart {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.error-message {
    text-align: center;
    padding: 60px 20px;
    color: #ef4444;
}

.error-message p {
    font-size: 16px;
    margin-bottom: 20px;
}

.retry-btn {
    padding: 10px 20px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.retry-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .table-controls {
        width: 100%;
        justify-content: center;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-input {
        flex: 1;
    }
    
    .table-head, .table-row {
        grid-template-columns: 50px 2fr 1fr 1fr 1fr 1fr 60px;
    }
    
    .th-col, .td-col {
        font-size: 12px;
        padding: 10px 5px;
    }
    
    .coin-name {
        font-size: 12px;
    }
    
    .coin-symbol {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .table-head, .table-row {
        grid-template-columns: 40px 2fr 1fr 1fr;
        overflow: hidden;
    }
    
    .th-col:nth-child(5),
    .th-col:nth-child(6),
    .th-col:nth-child(7),
    .td-col:nth-child(5),
    .td-col:nth-child(6),
    .td-col:nth-child(7) {
        display: none;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

.blockchain-intro{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blockchain-intro .large-text{
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  max-width: 800px;
  margin: 0 auto 20px;
}

.blockchain-intro .highlight-text{
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  background: rgba(0, 0, 0, 0.05);
  padding: 15px 25px;
  border-radius: 8px;
  display: inline-block;
  border-left: 4px solid #000000;
}

/* Blockchain Features Section */
.blockchain-features{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.blockchain-features::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(0,0,0,0.03)"/><circle cx="80" cy="80" r="25" fill="rgba(0,0,0,0.02)"/><circle cx="50" cy="50" r="30" fill="rgba(0,0,0,0.01)"/></svg>');
  background-size: 300px 300px;
  animation: float-bg 25s ease-in-out infinite;
}

.feature-block{
  position: relative;
  margin-bottom: 30px;
}

.feature-card{
  position: relative;
}

.feature-card .inner-box{
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card .inner-box::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.feature-card .inner-box:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.35);
}

.feature-card .icon-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-box{
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.2);
}

.feature-card .icon-box i{
  font-size: 30px;
  color: #000000;
}

.feature-card h3{
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.feature-card:hover h3{
  color: #000000;
}

.feature-card p{
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

/* Blockchain Technology Section */
.blockchain-technology{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blockchain-technology .row{
  align-items: center;
  min-height: 500px;
}

.content_block_seven{
  height: 100%;
}

.content_block_seven .content-box{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image_block_one{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_block_one .image-box{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_block_one .image-box img{
  max-width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-top: 191px;
}

.image_block_one .image-box img:hover{
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.tech-features{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tech-pair{
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.tech-item{
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  position: relative;
}

.tech-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.tech-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.35);
}

.tech-content h4{
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.tech-content p{
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

/* Blockchain Benefits Section */
.blockchain-benefits{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefit-item{
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.benefit-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.benefit-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.35);
}

.benefit-number{
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-number{
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefit-content{
  flex: 1;
}

.benefit-content h4{
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.benefit-content p{
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

/* Animations */
@keyframes float-bg {
  0%, 100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .feature-card .inner-box{
    padding: 30px 25px;
  }
  
  .tech-item{
    padding: 20px;
  }
  
  .benefit-item{
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .blockchain-intro .large-text{
    font-size: 18px;
  }
  
  .blockchain-intro .highlight-text{
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .feature-card .inner-box{
    padding: 25px 20px;
  }
  
  .tech-pair{
    flex-direction: column;
    gap: 15px;
  }
  
  .tech-item{
    padding: 15px;
  }
  
  .benefit-item{
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-number{
    margin: 0 auto 15px;
  }
  .image_block_one .image-box img{
    margin-top: 0px;
  }

}

@media (max-width: 575px) {
  .feature-card .inner-box{
    padding: 20px 15px;
  }
  
  .tech-item{
    padding: 15px;
  }
  
  .benefit-item{
    padding: 20px 15px;
  }
  .image_block_one .image-box img{
    margin-top: 0px;
  }
}

/* Crypto Market Dashboard Section */
.crypto-market-dashboard{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.crypto-market-dashboard::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(0,0,0,0.03)"/><circle cx="80" cy="80" r="25" fill="rgba(0,0,0,0.02)"/><circle cx="50" cy="50" r="30" fill="rgba(0,0,0,0.01)"/></svg>');
  background-size: 300px 300px;
  animation: float-bg 25s ease-in-out infinite;
  z-index: 0;
}

.crypto-market-dashboard > .auto-container{
  position: relative;
  z-index: 1;
}

/* Market Overview */
.market-overview{
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.overview-stats{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.stat-item{
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover{
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-label{
  display: block;
  font-size: 14px;
  color: #000000;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value{
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
}

.stat-change{
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}

.stat-change.positive{
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
}

.stat-change.negative{
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
}

/* Crypto Table */
.crypto-table-container{
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 40px;
}


/* Currency Exchange */
.currency-exchange{
  margin-top: 60px;
}

.exchange-note{
  color: #000000;
  font-size: 16px;
  margin-top: 10px;
}

.exchange-container{
  max-width: 600px;
  margin: 0 auto;
}

.exchange-box{
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.exchange-header{
  text-align: center;
  margin-bottom: 30px;
}

.exchange-header h4{
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.exchange-rate{
  font-size: 14px;
  color: #000000;
}

.exchange-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label{
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.currency-select, .form-group input{
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  color: #000000;
  font-size: 14px;
}

.exchange-arrow{
  text-align: center;
  font-size: 24px;
  color: #000000;
}

.exchange-btn{
  padding: 15px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.exchange-btn:hover{
  background: #333333;
  transform: translateY(-2px);
}

/* Market Charts */
.market-charts{
  margin-top: 60px;
}

.charts-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.chart-card{
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
}

.chart-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.chart-card.featured{
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.05);
}

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

.chart-header h4{
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.chart-header .price{
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.badge{
  background: #000000;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.chart-container{
  height: 120px;
  position: relative;
}

.chart-placeholder{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.chart-line{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  clip-path: polygon(0 100%, 10% 80%, 20% 85%, 30% 60%, 40% 70%, 50% 40%, 60% 50%, 70% 30%, 80% 45%, 90% 25%, 100% 35%, 100% 100%);
}

.chart-line.strong-up{
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  height: 80%;
  clip-path: polygon(0 100%, 10% 90%, 20% 85%, 30% 70%, 40% 60%, 50% 30%, 60% 20%, 70% 10%, 80% 15%, 90% 5%, 100% 0%, 100% 100%);
}

/* Responsive Design for Crypto Dashboard */
@media (max-width: 991px) {
  .overview-stats{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .table-header{
    flex-direction: column;
    align-items: flex-start;
  }
  
  .table-head, .table-row{
    grid-template-columns: 50px 150px 100px 80px 100px 100px 60px;
    gap: 10px;
  }
  
  .charts-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .overview-stats{
    grid-template-columns: 1fr;
  }
  
  .crypto-table-container{
    padding: 20px;
  }
  
  .exchange-box{
    padding: 25px;
  }
  
  .table-head, .table-row{
    grid-template-columns: 40px 120px 80px 70px 80px 80px 50px;
    gap: 8px;
    font-size: 12px;
  }
  
  .coin-info{
    gap: 8px;
  }
  
  .coin-icon{
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  
  .coin-name{
    font-size: 12px;
  }
  
  .coin-symbol{
    font-size: 10px;
  }
  
  .mini-chart{
    width: 40px;
    height: 20px;
  }
}

@media (max-width: 575px) {
  .crypto-table-container{
    padding: 15px;
  }
  
  .exchange-box{
    padding: 20px;
  }
  
  .chart-card{
    padding: 20px;
  }
  
  .table-head, .table-row{
    grid-template-columns: 30px 100px 70px 60px 70px 70px 40px;
    gap: 5px;
  }
}
