@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
}

.root {
  background-color: #ff9e47;
}

.header {
  color: #fff;
  z-index: 1000;
  background-color: #0d0d0d;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 4px #ffffff0d;
}

.header h3 a {
  color: #ff9e47;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.nav ul {
  color: #0d0d0d;
  align-items: center;
  gap: 24px;
  list-style: none;
  display: flex;
}

.nav li {
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  transition: all .2s ease-in-out;
}

.nav li:hover {
  color: #ff9e47;
  background-color: #1c1c1c;
}

.nav a {
  color: #fff;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: block;
}

.nav a:hover {
  color: #ff9e47;
}

.body1 {
  color: #fff;
  text-align: center;
  background-color: #0d0d0d;
  padding: 60px 20px;
  font-family: Inter, sans-serif;
  position: relative;
  overflow: hidden;
}

.body1:before {
  content: "";
  opacity: .15;
  z-index: 0;
  background-image: radial-gradient(circle, #2b2b2b 1px, #0000 1px);
  background-size: 20px 20px;
  width: 800px;
  height: 800px;
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.body1 h1 {
  z-index: 1;
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

.body1 h4 {
  color: #ff9e47;
  z-index: 1;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.card {
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  display: flex;
  position: relative;
}

.CARDDIV {
  text-align: center;
  color: #fff;
  cursor: pointer;
  background-color: #1e1e1e;
  border-radius: 16px;
  width: 160px;
  padding: 20px 10px;
  font-family: Inter, sans-serif;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 0 10px #0003;
}

.CARDDIV:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px #ffffff0d;
}

.CARDDIV img {
  object-fit: contain;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.CARDDIV h4 {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}

.CARDDIV h6 {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}

.table-container {
  color: #fff;
  background-color: #111;
  border-radius: 16px;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
  font-family: sans-serif;
  overflow-x: auto;
}

.table-header, .table-row {
  border-bottom: 1px solid #222;
  grid-template-columns: 1fr .4fr 1.5fr 1fr 1fr 1fr;
  align-items: center;
  padding: 1rem;
  display: grid;
}

.table-header {
  color: #ccc;
  font-size: .95rem;
  font-weight: bold;
}

.table-row:hover {
  background-color: #1a1a1a;
  transition: all .3s;
}

.coin {
  align-items: center;
  gap: 12px;
  width: fit-content;
  display: flex;
}

.coin img {
  width: 28px;
  height: 28px;
}

.chart {
  object-fit: cover;
  width: 100px;
  height: 40px;
}

.DATA {
  gap: 20px;
  display: flex;
}

.chartimg {
  & img {
    width: 100px;
  }
}

.footer {
  color: #e67d06;
  background-color: #0d0d0d;
  border-radius: 20px;
  margin-top: 50px;
  padding: 40px 20px 20px;
  font-family: Segoe UI, sans-serif;
}

.footer-container {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  display: flex;
}

.footer-bottom {
  text-align: center;
  color: #999;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
}

.crypto-link {
  color: #efedea;
  font-weight: bold;
  text-decoration: none;
  transition: color .3s, transform .2s;
}

.crypto-link:hover {
  color: #ffae42;
  transform: scale(1.05);
}

.crypto-container {
  color: #f0f0f0;
  background-color: #121212;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  box-shadow: 0 0 20px #ffa8001a;
}

.crypto-header {
  border-bottom: 2px solid #2c2c2c;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  display: flex;
}

.crypto-header img {
  object-fit: contain;
  background-color: #fff;
  border: 2px solid #ff9800;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 6px;
  box-shadow: 0 0 6px #ff980066;
}

.crypto-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.crypto-symbol {
  color: #ffcc80;
  margin-left: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.crypto-description {
  color: #c7c7c7;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.crypto-links {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  display: flex;
}

.crypto-link {
  color: #ffa726;
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s;
}

.crypto-link:hover {
  color: #121212;
  background-color: #ffa726;
  transform: scale(1.05);
}

.market-section {
  background-color: #1b1b1b;
  border-radius: 16px;
  margin-top: 30px;
  padding: 25px 30px;
  box-shadow: 0 0 10px #ffa5001a;
}

.market-title {
  color: #ffa726;
  border-bottom: 2px solid #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.market-data {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.market-data li {
  color: #f0f0f0;
  border-bottom: 1px dashed #333;
  padding: 12px 0;
  font-size: 1rem;
}

.market-data li strong {
  color: #ffcc80;
  margin-right: 10px;
}

.loader-container {
  color: #ffa726;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  font-size: 1.1rem;
  display: flex;
}

.crypto-loader {
  border: 5px solid #ffa50033;
  border-top-color: #ffa726;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  animation: 1s linear infinite spin;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.empty-watchlist {
  text-align: center;
  color: #ffb74d;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 60px 20px;
  box-shadow: 0 0 20px #ffa5001a;
}

.empty-watchlist .broken-icon {
  margin-bottom: 20px;
  font-size: 64px;
}

.empty-watchlist h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 2rem;
}

.empty-watchlist p {
  color: #ccc;
  font-size: 1.1rem;
}

.news-list {
  flex-direction: column;
  gap: 12px;
  width: 100%;
  display: flex;
}

.news-card {
  color: #f1f1f1;
  background: #111110;
  border: 1px solid #262626;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  text-decoration: none;
  transition: background .2s;
  display: flex;
}

.news-card:hover {
  background: #232323;
}

.news-thumb {
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.news-info {
  flex-direction: column;
  flex: 1;
  display: flex;
  overflow: hidden;
}

.news-title {
  color: #ffb74d;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 4px;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.news-meta {
  color: #aaa;
  font-size: .75rem;
}

@media (width <= 480px) {
  .news-thumb {
    width: 60px;
    height: 60px;
  }

  .news-title {
    font-size: .85rem;
  }

  .news-meta {
    font-size: .7rem;
  }
}

.about-container {
  background: linear-gradient(145deg, #0d0d0d, #1b1b1b);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
}

.about-card {
  text-align: center;
  color: #e0e0e0;
  backdrop-filter: blur(12px);
  background: #ffffff0d;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  max-width: 500px;
  padding: 30px;
  box-shadow: 0 8px 24px #0006;
}

.about-avatar {
  object-fit: cover;
  border: 3px solid #ffb74d;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.about-name {
  color: #ffb74d;
  margin: 10px 0 5px;
  font-size: 1.8rem;
}

.about-role {
  color: #aaa;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.about-bio {
  color: #ccc;
  margin-bottom: 24px;
  font-size: .95rem;
  line-height: 1.5;
}

.about-socials a {
  color: #ddd;
  margin: 0 10px;
  font-size: 1.6rem;
  transition: color .3s;
}

.about-socials a:hover {
  color: #ffb74d;
}
/*# sourceMappingURL=cohort practi - Copy.3a01df49.css.map */
