:root {
  --background: #ffffff;
  --foreground: #171717;
}

html,
body {
  max-width: 100vw;
  font-family: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-head span,
.text-head h1,
.text-head h2,
.text-head h3,
.text-head h4,
.text-head h5,
.text-head h6 {
  font-weight: normal;
  margin: 0.3125em 0;
  background-color: var(--bs-white);
  position: relative;
  display: inline-block;
  padding: 0 0px;
}

.btn-close {
  background: #681e34;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  right: 17px;
  top: 2px;
}

.project-card:hover {
  box-shadow: 0 25px 50px rgba(231, 113, 125, 0.2);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bs-dusty-brown);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-icon {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--gradient-card);
  border: 2px solid rgba(231, 113, 125, 0.2);
  transition: all 0.3s ease;
}

.project-card:hover .project-icon {
  transform: rotate(5deg) scale(1.1);
  background: var(--gradient-primary);
  color: var(--bs-white);
}

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2px;
}

.project-meta {
  color: #7f8c8d;
  font-size: 0.8rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background: var(--gradient-card);
  color: var(--bs-carrot-pink);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(231, 113, 125, 0.3);
}

.hot-offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: var(--bs-white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  animation: bounce 2s infinite;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

@keyframes bounce {


  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }

}

.view-btn {
  background: var(--bs-dusty-pink-gradient);
  color: var(--bs-white);
  border: none;
  padding: 6px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.8rem;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(231, 113, 125, 0.4);
  color: var(--bs-white);
}

.view-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.view-btn:hover::before {
  left: 100%;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {

  to {
    transform: scale(2);
    opacity: 0;
  }

}

.coin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 6px;
  background: #f3f3f3;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.coin-item:last-child {
  margin-bottom: 0;
}

.coin-item:hover {
  background: #f0f0f0;
  border-color: var(--bs-brown);
  transform: translateX(2px);
}

.coin-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.coin-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.coin-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.coin-symbol {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}

.coin-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.coin-price {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.coin-change {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.change-positive {
  color: #059669;
  background: #d1fae5;
}

.change-positive::before {
  content: "↗";
  font-size: 10px;
}

.change-negative {
  color: #dc2626;
  background: #fee2e2;
}

.change-negative::before {
  content: "↘";
  font-size: 10px;
}

.latest-col {
  background: linear-gradient(135deg, #ffffff, #f7f8fa);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.latest-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
}

.latest-col img {
  transition: transform 0.3s ease, filter 0.3s ease;
  border: 2px solid #eaeaea;
}

.latest-col:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.latest-col .h6 {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  transition: color 0.3s ease;
}

.latest-col .small {
  color: #6c757d;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.latest-col .fs-12 {
  font-size: 0.85rem;
  color: #5a5a5a;
  margin-top: 2px;
}

.drop-brown-btn {
  background: var(--bs-dusty-pink-gradient);
  color: var(--bs-white);
  padding: 3px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.drop-brown-btn:hover {
  background: var(--bs-dusty-pink-gradient);
  transform: scale(1.08);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-card {
  background: var(--bs-white);
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.section-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #e0e0e0;
}

.section-header {
  background: var(--bs-dusty-brown);
  color: var(--bs-white);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
}

.view-more-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bs-white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.view-more-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--bs-white);
  transform: translateY(-1px);
}

.crypto-item {
  padding: 14px 20px;
  border-bottom: 1px solid #f8f8f8;
  display: flex;
  align-items: center;
  transition: all 0.15s ease;
  position: relative;
}

.crypto-item:last-child {
  border-bottom: none;
}

.crypto-item:hover {
  background: #fafafa;
  transform: translateX(2px);
}

.crypto-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--bs-dusty-brown);
  transition: width 0.2s ease;
}

.crypto-item:hover::before {
  width: 3px;
}

.crypto-info {
  flex: 1;
  min-width: 0;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.member {
  background-color: var(--bs-white);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.token-card {
  background: var(--bs-white);
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(59, 10, 32, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.token-card:nth-child(1) {
  animation-delay: 0.05s;
}

.token-card:nth-child(2) {
  animation-delay: 0.1s;
}

.token-card:nth-child(3) {
  animation-delay: 0.15s;
}

.token-card:nth-child(4) {
  animation-delay: 0.2s;
}

.token-card:nth-child(5) {
  animation-delay: 0.25s;
}

.token-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 10, 32, 0.12);
  border-color: #E7717D;
}

.token-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bs-dusty-pink-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.token-card:hover::before {
  opacity: 1;
}

.rank-indicator {
  width: 4px;
  height: 32px;
  border-radius: 2px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.rank-1 {
  background: linear-gradient(180deg, #E7717D, #A63A50);
}

.rank-2 {
  background: #E7717D;
  opacity: 0.8;
}

.rank-3 {
  background: #E7717D;
  opacity: 0.6;
}

.rank-4 {
  background: #E7717D;
  opacity: 0.4;
}

.rank-5 {
  background: #E7717D;
  opacity: 0.3;
}

.token-card:hover .rank-indicator {
  height: 40px;
  opacity: 1 !important;
}

.token-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--bs-white);
  transition: transform 0.3s ease;
}

.token-card:hover .token-icon {
  transform: scale(1.05);
}

.token-details {
  flex: 1;
}

.token-symbol {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bs-dusty-brown);
  margin-bottom: 0.1rem;
  transition: color 0.3s ease;
}

.token-card:hover .token-symbol {
  color: var(--bs-carrot-pink);
}

.token-name {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
  transition: color 0.3s ease;
}

.token-card:hover .token-name {
  color: ar(--bs-carrot-pink);
}

.trend-indicator {
  color: #E7717D;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.token-card:hover .trend-indicator {
  transform: scale(1.1);
  color: ar(--bs-carrot-pink);
}

@keyframes fadeInDown {

  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes slideInUp {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes pulse {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }

}

.airdrop-img {
  width: 60px;
  height: 60px;
  background: var(--bs-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  padding: 10px;
}

@keyframes pulse {


  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

}

.heading-airdrop {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.date-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.status-badge {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: var(--bs-white);
  border-radius: 15px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {

  from {
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
  }

  to {
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.6);
  }

}

.stat-icon {
  width: 35px;
  height: 35px;
  background: var(--bs-dusty-pink-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--bs-white);
  font-size: 16px;
}

.stat-card {
  background: var(--bs-creamy-white);
  border: 1px solid rgba(231, 113, 125, 0.1);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--bs-dusty-pink-gradient);
  transition: left 0.3s ease;
}

.stat-card:hover::before {
  left: 0;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(231, 113, 125, 0.15);
  border-color: var(--bs-carrot-pink);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid rgba(231, 113, 125, 0.15);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background: transparent;
}

.accordion-button {
  background: linear-gradient(135deg, rgba(231, 113, 125, 0.1), rgba(166, 58, 80, 0.1));
  border: none;
  padding: 18px 25px;
  font-weight: 600;
  color: var(--bs-dusty-brown);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--bs-carrot-pink);
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 12px;
  color: #35393d;
  line-height: 1.6;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-collapse.collapse.show {
  background-color: #fff8f6;
}

.trending-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(59, 10, 32, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.trending-item:hover {
  padding-left: 10px;
  color: var(--bs-carrot-pink);
}

.trending-item:last-child {
  border-bottom: none;
}

.trend-count {
  font-size: 12px;
  color: rgba(59, 10, 32, 0.6);
}

.center-feed {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.post-creator {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(59, 10, 32, 0.08);
}

.creator-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.creator-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bs-dusty-pink-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-white);
  font-weight: bold;
  font-size: 18px;
}

.post-input {
  width: 100%;
  border: none;
  padding: 20px;
  font-size: 16px;
  border-radius: 15px;
  background: rgba(59, 10, 32, 0.03);
  resize: none;
  min-height: 120px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.post-input:focus {
  outline: none;
  background: rgba(231, 113, 125, 0.05);
  box-shadow: 0 0 0 2px rgba(231, 113, 125, 0.2);
}

.creator-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mood-selector {
  display: flex;
  gap: 10px;
}

.mood-chip {
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid transparent;
  background: rgba(59, 10, 32, 0.05);
  color: var(--bs-carrot-pink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mood-chip:hover,
.mood-chip.active {
  background: var(--bs-light-pink);
  color: var(--bs-white);
  border-color: var(--bs-dusty-brown);
  transform: translateY(-2px);
}

.post-submit {
  background: var(--bs-dusty-pink-gradient);
  color: var(--bs-white);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.post-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 113, 125, 0.4);
}

.post-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(59, 10, 32, 0.08);
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 10, 32, 0.12);
}

.follow-button {
  background: transparent;
  border: 2px solid var(--bs-light-pink);
  color: var(--bs-light-pink);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.follow-button:hover {
  background: var(--bs-light-pink);
  color: var(--bs-white);
  transform: scale(1.05);
}

.engagement-btn {
  background: none;
  border: none;
  color: var(--bs-dusty-brown);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 15px;
  font-weight: 500;
}

.engagement-btn:hover {
  background: rgba(231, 113, 125, 0.1);
  color: var(--bs-carrot-pink);
  transform: translateY(-2px);
}

.engagement-btn.active {
  color: var(--bs-light-pink);
  background: rgba(231, 113, 125, 0.1);
}

.details-page img {
  width: 100%;
  height: 100%;
  margin: 15px 0px !important;
}

.details-page h2,
.details-page h3,
.details-page h4,
.details-page h5,
.details-page h6 {
  color: var(--bs-carrot-pink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.details-page li {
  color: #000000;
  margin: 8px 0;
  padding-left: 5px;
  line-height: 1.5;
}

.details-page a,
.details-page li a strong,
.details-page li::marker {
  font-weight: 600;
  color: var(--bs-dusty-brown);
  text-decoration: none;
}

.details-page p {
  color: #000;
  line-height: 1.5;
}

.suggestion-info {
  flex: 1;
}

@keyframes pulse {


  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

}

@keyframes glow {

  from {
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
  }

  to {
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.6);
  }

}

.info-card {
  background: var(--bs-white);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease;
  min-height: 60px;
}

.info-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.about-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-icon-box {
  width: 80px;
  height: 80px;
  background: var(--bs-dusty-pink-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 6px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  transform: translateY(-2px);
}

.info-label {
  font-size: 12px;
  color: #6c757d;
  font-weight: 600;
  text-align: center;
}

.info-value {
  font-weight: bold;
  color: #2c3e50;
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

@keyframes pulse {


  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

}

.price-main {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}

.quick-stats {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
}

.mini-stat {
  text-align: center;
  padding: 12px 8px;
  background: linear-gradient(135deg, rgba(231, 113, 125, 0.1), rgba(166, 58, 80, 0.1));
  border-radius: 8px;
  border: 1px solid rgba(231, 113, 125, 0.2);
}

.mini-stat-value {
  background: #FEF3C7;
  color: #92400E;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.mini-stat-label {
  font-size: 0.8rem;
  color: #666;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-burgundy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.link-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(45deg, var(--primary-pink), var(--secondary-pink));
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.link-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 113, 125, 0.3);
  color: white;
}

.social-container {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-btn {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  color: white;
}

.market-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.table-modern {
  margin: 0;
  font-size: 0.9rem;
}

.table-modern thead th {
  background: var(--dark-burgundy);
  color: white;
  font-weight: 600;
  padding: 1rem 0.8rem;
  border: none;
  font-size: 0.85rem;
}

.table-modern tbody td {
  padding: 1rem 0.8rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.table-modern tbody tr:hover {
  background: rgba(231, 113, 125, 0.05);
}

.exchange-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.exchange-badge {
  padding: 0.2rem 0.6rem;
  background: var(--primary-pink);
  color: white;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
}

.trust-indicator {
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
}

.small-airdrop-img {
  width: 45px;
  height: 45px;
}

@keyframes pulse {


  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

}

.font-big {
  font-size: 32px;
}

.dropdown-scrollable {
  max-height: 200px;
  overflow-y: auto;
  background-color: var(--bs-white);
  color: var(--bs-brown);
  scrollbar-width: thin;
  scrollbar-color: var(--bs-brown) var(--bs-white);
}

.dropdown-scrollable .dropdown-item {
  color: var(--bs-brown);
}

.dropdown-scrollable .dropdown-item:hover {
  background-color: #f0f0f0;
  color: var(--bs-brown);
}

.dropdown-scrollable::-webkit-scrollbar {
  width: 8px;
}

.dropdown-scrollable::-webkit-scrollbar-track {
  background: var(--bs-white);
}

.dropdown-scrollable::-webkit-scrollbar-thumb {
  background-color: var(--bs-brown);
  border-radius: 10px;
}

.progress-section {
  margin-top: 35px;
  padding-top: 15px;
  border-top: 1px solid #F1F5F9;
}

.progress-label {
  font-size: 14px;
  color: var(--bs-brown);
  margin-bottom: 6px;
  font-weight: 600;
}

.progress-track {
  width: 100%;
  height: 9px;
  background: #F1F5F9;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #6A3431, #8B4B47);
  width: 20%;
  border-radius: 3px;
  transition: width 1s ease;
}

.info-bdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--primary-pink);
}

.bdr-curve {
  border-bottom: 4px solid var(--bs-dusty-brown);
  border-radius: 0px 0px 14px 14px;
}

.crypto-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(106, 52, 49, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(106, 52, 49, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.crypto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6a3431, #d4af37, #6a3431);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {


  0%,
  100% {
    background-position: -200% 0;
  }

  50% {
    background-position: 200% 0;
  }

}

.crypto-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(106, 52, 49, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(106, 52, 49, 0.15);
}

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

.crypto-left {
  display: flex;
  align-items: center;
}

.crypto-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #e7cfcf 0%, #f2d8d6 50%, #fdf4c5 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  box-shadow: 0 3px 12px rgba(106, 52, 49, 0.3);
  position: relative;
}

.crypto-icon::before {
  color: var(--bs-white);
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.crypto-icon::after {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
}

.crypto-heading {
  color: #2c3e50;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1px;
}

.crypto-info .symbol {
  color: var(--bs-brown);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.change {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.05));
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
  box-shadow: 0 2px 6px rgba(40, 167, 69, 0.2);
}

.change::before {
  content: '↗';
  margin-right: 2px;
  font-size: 0.8rem;
}

.price {
  font-size: 19px;
  font-weight: 800;
  background: var(--bs-brown-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(106, 52, 49, 0.1);
  margin-bottom: 4px;
  text-align: center;
}

@keyframes fadeInUp {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

.crypto-card:nth-child(1) {
  animation-delay: 0.1s;
}

.crypto-card:nth-child(2) {
  animation-delay: 0.2s;
}

.crypto-card:nth-child(3) {
  animation-delay: 0.3s;
}

.crypto-card:nth-child(4) {
  animation-delay: 0.4s;
}

.crypto-card:hover .crypto-icon {
  transform: rotate(360deg);
  transition: transform 0.6s ease-in-out;
}

.faq-accord .accordion-button {
  background-color: white;
  border: 1px solid #dee2e6;
  color: var(--dark-color);
  font-weight: 600;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.faq-accord .accordion-button:not(.collapsed) {
  background: var(--bs-dusty-pink-gradient);
  border-color: var(--bs-carrot-pink);
  color: white;
  box-shadow: none;
}

.faq-accord .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(231, 113, 125, 0.25);
  border-color: var(--bs-carrot-pink);
}

.faq-accord .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accord .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accord .accordion-body {
  padding: 1rem;
  background-color: #f8f9fa;
  border-top: 2px solid var(--bs-carrot-pink);
  color: var(--dark-color);
  font-size: 0.9rem;
}

.faq-accord .accordion-item {
  border: 1px solid #dee2e6;
  margin-bottom: 0.5rem;
  border-radius: 0.375rem;
  overflow: hidden;
}

.faq-accord .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accord .faq-icon {
  color: var(--bs-carrot-pink);
  margin-right: 0.5rem;
}

.contact-section {
  background: var(--bs-dusty-pink-gradient);
  color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
  text-align: center;
}

.contact-section a {
  color: white;
  text-decoration: underline;
}

.contact-section a:hover {
  color: #f8f9fa;
}

.content-text {
  margin-bottom: 0.5rem;
}

@keyframes pulse {


  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

}

@keyframes glow {

  from {
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
  }

  to {
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.6);
  }

}

.login-container {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(106, 52, 49, 0.15);
  border: 1px solid var(--bs-carrot-pink);
  padding: 30px;
  width: 100%;
  max-width: 550px;
  position: relative;
}

.very-big-font {
  font-size: 40px;
}

.login-group {
  margin-bottom: 25px;
  position: relative;
}

.login-form-label {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.login-form-input {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  background: #fafafa;
  transition: all 0.3s ease;
  outline: none;
}

.login-form-input:focus {
  border-color: var(--bs-carrot-pink);
  background: var(--bs-white);
  box-shadow: 0 0 0 4px rgba(106, 52, 49, 0.1);
}

.login-form-input:focus+.login-form-label {
  color: var(--bs-carrot-pink);
}

.login-password-container {
  position: relative;
}

.login-password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
}

.pwd-hide {
  color: #8b8b8b;
  background: 0 0;
  right: 8px;
}

.login-password-toggle:hover {
  color: var(--bs-carrot-pink);
}

.login-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.remember-me input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--bs-carrot-pink);
  cursor: pointer;
}

.remember-me label {
  color: #555;
  font-size: 14px;
  cursor: pointer;
}

.login-forgot-password {
  color: var(--bs-carrot-pink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-forgot-password:hover {
  color: #8b4a47;
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: var(--bs-dusty-pink-gradient);
  border: none;
  border-radius: 12px;
  color: var(--bs-white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 52, 49, 0.3);
}

.login-btn:active {
  transform: translateY(0);
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}

.divider span {
  background: var(--bs-white);
  padding: 0 15px;
}

.google-btn {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: var(--bs-white);
  color: #333;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.google-btn:hover {
  border-color: var(--bs-carrot-pink);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-icon {
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%234285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>') no-repeat center;
  background-size: contain;
}

.register-link {
  text-align: center;
  color: #666;
  font-size: 14px;
}

.register-link a {
  color: var(--bs-brown);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.register-link a:hover {
  color: #8b4a47;
  text-decoration: underline;
}

@keyframes bounce {


  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }

}

@keyframes ripple-animation {

  to {
    transform: scale(2);
    opacity: 0;
  }

}

@keyframes fadeInDown {

  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes slideInUp {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes pulse {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }

}

.divider {
  position: relative;
  text-align: center;
  margin: 15px 0;
  color: #999;
  font-size: 14px;
}

@keyframes bounce {


  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }

}

@keyframes ripple-animation {

  to {
    transform: scale(2);
    opacity: 0;
  }

}

@keyframes fadeInDown {

  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes slideInUp {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes pulse {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }

}

.news-sidebar {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(59, 10, 32, 0.1);
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.news-header {
  border-bottom: 2px solid var(--bs-light-pink);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.news-header h4 {
  color: var(--dark-color);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.news-item:hover {
  border-color: var(--bs-light-pink);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 113, 125, 0.1);
}

.news-title {
  font-weight: 600;
  color: #3B0A20;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-meta {
  font-size: 0.75rem;
  color: var(--bs-carrot-pink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1rem;
  background: #fafafa;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--bs-carrot-pink);
  box-shadow: 0 0 0 4px rgba(139, 71, 67, 0.1);
  background: white;
  transform: translateY(-2px);
}

.form-input:focus+.form-label {
  color: var(--bs-carrot-pink);
  transform: translateY(-100%) scale(0.85);
}

.form-input:not(:placeholder-shown)+.form-label {
  transform: translateY(-100%) scale(0.85);
  color: var(--bs-light-pink);
  top: 33%;
}

.form-label {
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.form-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  transition: all 0.3s ease;
}

.form-input:focus~.form-icon {
  color: var(--bs-carrot-pink);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
  padding-top: 1.2rem;
}

textarea.form-input+.form-label {
  top: 1.2rem;
  transform: translateY(0);
}

textarea.form-input:focus+.form-label {
  transform: translateY(-24px) scale(0.85);
}

textarea.form-input:not(:placeholder-shown)+.form-label {
  transform: translateY(-34px) scale(0.85);
}

.feature-item {
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.feature-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.d-inline-table {
  display: inline-table !important;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

@media (max-width:1400px) {
  .hot-offer-badge {
    top: 6px;
    right: 2px;
    padding: 3px 7px;
    font-size: 11px;
  }

  .project-title {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .token-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .accordion-button {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .price-main {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .table-responsive {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .token-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .token-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .news-sidebar {
    margin-top: 2rem;
    position: static;
  }
}