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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
  animation: floatRandom linear infinite;
}

@keyframes floatRandom {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translate(var(--drift-x), var(--drift-y)) scale(var(--scale-end));
    opacity: 0;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 20px 0;
  transition: transform 0.3s ease;
  height: auto;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu span {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.hamburger-menu:hover span {
  background-color: #00ff00;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 12px 0;
}

.language-selector-mobile {
  position: relative;
  display: none;
}

.lang-btn-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 16px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 600;
}

.lang-btn-mobile:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00ff00;
}

.lang-btn-mobile .flag {
  font-size: 18px;
}

.lang-btn-mobile .arrow {
  width: 14px;
  height: 14px;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.lang-btn-mobile.active .arrow {
  transform: rotate(180deg);
}

.lang-dropdown-mobile {
  position: static;
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.lang-dropdown-mobile.active {
  opacity: 1;
  visibility: visible;
  max-height: 200px;
}

.lang-option-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  margin-bottom: 6px;
}

.lang-option-mobile:hover {
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
}

.lang-option-mobile .flag {
  font-size: 18px;
}

.token-stats-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.stat-pill-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: rgba(0, 255, 0, 0.08);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 12px;
  padding: 10px 12px;
  transition: all 0.3s ease;
  user-select: none;
}

.stat-label-mobile {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.stat-value-mobile {
  font-size: 14px;
  font-weight: 700;
  color: #00ff00;
}

.stat-currency-mobile {
  font-size: 10px;
  font-weight: 700;
  color: #00ff00;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 40px;
}

.nav-logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  order: 1;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  order: 2;
  flex: 0 0 auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  order: 3;
  flex-shrink: 0;
  margin-left: auto;
}

.token-stats {
  display: flex;
  gap: 12px;
  align-items: center;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 0, 0.08);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  user-select: none;
}

.stat-pill:hover {
  background: rgba(0, 255, 0, 0.12);
  border-color: rgba(0, 255, 0, 0.5);
  transform: translateY(-1px);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #00ff00;
  min-width: 40px;
  text-align: right;
}

.stat-currency {
  font-size: 12px;
  font-weight: 700;
  color: #00ff00;
}

.language-selector {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 16px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00ff00;
}

.lang-btn .flag {
  font-size: 20px;
}

.lang-btn .lang-text {
  font-size: 14px;
  font-weight: 600;
}

.lang-btn .arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.lang-btn.active .arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.lang-option:hover {
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
}

.lang-option .flag {
  font-size: 20px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  border: none;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ff00;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link.active {
  color: #00ff00;
}

.nav-link.active::before {
  width: 100%;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 20px 40px 20px;
  overflow: hidden;
  margin-top: 70px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  background: #000;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(0, 255, 0, 0.2);
  border-color: #00ff00;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: 20px;
}

.carousel-arrow.next {
  right: 20px;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #00ff00;
  width: 24px;
  border-radius: 4px;
}

.content-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-text {
  padding-right: 40px;
}

.content-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #00ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-text p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.content-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 255, 0, 0.2);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.quick-actions {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

.quick-actions-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  color: #00ff00;
}

.actions-grid {
  display: flex;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.action-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.action-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(60, 60, 60, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.action-button:hover .action-icon {
  background: rgba(80, 80, 80, 0.9);
}

.action-icon svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.action-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.action-button:hover {
  transform: translateY(-4px);
}

.projects-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 20px;
}

.projects-container {
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-header {
  margin-bottom: 32px;
}

.projects-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.projects-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.filter-btn.active {
  background: #00ff00;
  color: #000000;
  border-color: #00ff00;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.project-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: #00ff00;
  box-shadow: 0 8px 32px rgba(0, 255, 0, 0.2);
}

.project-card.hidden {
  display: none;
}

.project-image {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.project-icon svg {
  width: 32px;
  height: 32px;
  color: #000000;
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.project-description {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-btn {
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #00ff00;
  color: #00ff00;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.project-btn:hover {
  background: #00ff00;
  color: #000000;
}

.tokens-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.tokens-container {
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.tokens-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tokens-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.token-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
  padding: 12px 0;
}

.token-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.token-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.token-dot.active {
  background: #00ff00;
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.token-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.token-nav-btn:hover {
  background: rgba(0, 255, 0, 0.2);
  border-color: #00ff00;
  transform: scale(1.1);
}

.token-nav-btn:active {
  transform: scale(0.95);
}

.token-nav-btn svg {
  width: 24px;
  height: 24px;
}

.token-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 0 350px;
  max-width: 350px;
  min-width: 280px;
  width: 100%;
  touch-action: pan-y;
  user-select: none;
}

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

.token-logo-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 15px 40px rgba(0, 255, 0, 0.7));
  transform: translateY(-4px);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.token-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

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

.token-name {
  font-size: 24px;
  font-weight: 700;
  color: #00ff00;
  margin-bottom: 8px;
}

.token-ca {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 0;
}

.ca-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.copy-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  color: #00ff00;
}

.copy-btn svg {
  width: 18px;
  height: 18px;
}

.buy-btn {
  width: 100%;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
  border: none;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.buy-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 255, 0, 0.4);
}

.earnings-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
  display: block;
}

.earnings-container {
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.earnings-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  text-align: center;
}

.earnings-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 40px;
}

.calculator-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.input-section {
  margin-bottom: 32px;
}

.input-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cdt-input {
  width: 100%;
  padding: 16px 80px 16px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cdt-input:focus {
  outline: none;
  border-color: #00ff00;
  box-shadow: 0 0 0 4px rgba(0, 255, 0, 0.1);
}

.cdt-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.input-currency {
  position: absolute;
  right: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #00ff00;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.result-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: rgba(0, 255, 0, 0.2);
  transform: translateY(-4px);
}

.result-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.daily-icon {
  background: rgba(0, 255, 0, 0.2);
}

.monthly-icon {
  background: rgba(0, 200, 255, 0.2);
}

.apy-icon {
  background: rgba(0, 255, 0, 0.3);
}

.result-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.result-info {
  flex: 1;
}

.result-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  font-weight: 500;
}

.result-value {
  font-size: 22px;
  font-weight: 700;
  color: #00ff00;
}

.apy-tier {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  font-weight: 600;
}

.apy-tiers {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tiers-title {
  font-size: 18px;
  font-weight: 700;
  color: #00ff00;
  margin-bottom: 16px;
  text-align: center;
}

.tiers-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tier-item:hover {
  background: rgba(0, 255, 0, 0.05);
}

.tier-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.tier-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  min-width: 140px;
}

.tier-apy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(0, 255, 0, 0.05);
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 12px;
  margin-top: 24px;
}

.security-note svg {
  width: 24px;
  height: 24px;
  color: #00ff00;
  flex-shrink: 0;
}

.security-note p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.results-grid-mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.result-card-mobile {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 14px;
}

.result-card-mobile.apy-card {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 200, 0, 0.05) 100%);
  border-color: rgba(0, 255, 0, 0.3);
}

.apy-tiers-mobile {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.apy-tiers-mobile .tiers-title {
  font-size: 16px;
  font-weight: 700;
  color: #00ff00;
  margin-bottom: 12px;
  text-align: center;
}

.apy-tiers-mobile .tiers-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apy-tiers-mobile .tier-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.apy-tiers-mobile .tier-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.apy-tiers-mobile .tier-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

.apy-tiers-mobile .tier-apy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.error-message {
  color: #ff4444;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 500;
}

.footer {
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 20px;
  text-align: center;
  margin-top: 80px;
}

.footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  word-break: break-word;
  line-height: 1.6;
}

/* Desktop and tablet responsive styles */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tokens-grid {
    gap: 16px;
  }

  .token-card {
    flex: 0 0 300px;
  }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet and mobile responsive styles */
@media (max-width: 968px) {
  .hamburger-menu {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .language-selector-mobile {
    display: block;
  }

  .token-stats-mobile {
    display: flex;
  }

  .nav-container {
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px;
  }

  .nav-logo {
    order: 1;
    flex: none;
    text-align: center;
    width: 100%;
    font-size: 22px;
  }

  .nav-menu {
    order: 2;
    flex: none;
    width: 280px;
    justify-content: flex-start;
    gap: 24px;
    position: fixed;
    left: -280px;
    top: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 80px 20px 20px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    height: 100vh;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-right {
    order: 3;
    flex: none;
    display: none;
  }

  .language-selector {
    display: none;
  }

  .token-stats {
    display: none;
  }

  .carousel-wrapper {
    height: 400px;
  }

  .carousel-container {
    padding: 80px 20px 40px 20px;
    margin-top: 80px;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px auto;
  }

  .content-text {
    padding-right: 0;
  }

  .content-text h1 {
    font-size: 36px;
  }

  .content-text p {
    font-size: 16px;
  }

  .projects-container {
    padding: 24px;
  }

  .projects-title {
    font-size: 28px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .actions-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 10px;
  }

  .action-button {
    min-width: 80px;
  }

  .tokens-container {
    padding: 24px;
  }

  .tokens-title {
    font-size: 28px;
  }

  .tokens-grid {
    gap: 12px;
  }

  .token-card {
    flex: 0 0 280px;
  }

  .token-nav-btn {
    width: 44px;
    height: 44px;
  }

  /* Hide token navigation arrows on tablet */
  .token-nav-btn {
    display: none !important;
  }
}

/* Mobile phone responsive styles */
@media (max-width: 640px) {
  .carousel-container {
    padding: 60px 10px 20px 10px;
    margin-top: 80px;
  }

  .carousel-wrapper {
    height: 300px;
  }

  .quick-actions {
    margin: 60px auto;
  }

  .quick-actions-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .actions-grid {
    gap: 10px;
    padding: 0 8px;
    max-width: 100%;
    justify-content: space-between;
  }

  .action-button {
    min-width: 70px;
    gap: 8px;
  }

  .action-icon {
    width: 60px;
    height: 60px;
  }

  .action-icon svg {
    width: 30px;
    height: 30px;
  }

  .action-label {
    font-size: 11px;
    line-height: 1.2;
    max-width: 70px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .tokens-container {
    padding: 20px;
  }

  .tokens-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .tokens-grid {
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }

  .token-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .token-header {
    flex-direction: column;
    text-align: center;
  }

  .token-ca {
    flex-direction: column;
    gap: 12px;
  }

  .ca-text {
    font-size: 10px;
  }

  /* Hide token navigation arrows on mobile phones */
  .token-nav-btn {
    display: none !important;
  }

  .earnings-container {
    padding: 24px 16px;
  }

  .earnings-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .earnings-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .calculator-card {
    padding: 24px 16px;
  }

  .input-section {
    margin-bottom: 24px;
  }

  .cdt-input {
    font-size: 22px;
    padding: 14px 70px 14px 16px;
  }

  .input-currency {
    font-size: 16px;
    right: 16px;
  }

  .result-card {
    padding: 16px;
    gap: 14px;
  }

  .result-icon {
    width: 44px;
    height: 44px;
  }

  .result-icon svg {
    width: 22px;
    height: 22px;
  }

  .result-label {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .result-value {
    font-size: 20px;
  }

  .apy-tier {
    font-size: 12px;
    margin-top: 2px;
  }

  .apy-tiers {
    padding: 16px;
    margin-bottom: 20px;
  }

  .tiers-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .tiers-list {
    gap: 8px;
  }

  .tier-item {
    gap: 10px;
    padding: 10px;
  }

  .tier-icon {
    font-size: 20px;
  }

  .tier-name {
    font-size: 13px;
    min-width: auto;
    flex: 1;
  }

  .tier-apy {
    font-size: 12px;
  }

  .security-note {
    flex-direction: row;
    padding: 14px;
    gap: 10px;
  }

  .security-note svg {
    width: 20px;
    height: 20px;
  }

  .security-note p {
    font-size: 12px;
  }

  .footer {
    padding: 24px 16px;
    margin-top: 60px;
  }

  .footer p {
    font-size: 12px;
  }
}
