/* Token Page Styles */

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #F8F9FA;
  color: #0b0c0e;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.token-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  height: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.token-header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.token-header-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.token-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0b0c0e;
  font-weight: 600;
  font-size: 16px;
}

.token-logo img {
  height: 32px;
  width: auto;
}

.token-header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.token-nav-item {
  color: #0b0c0e;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap; /* prevent label like "White Paper" from wrapping */
}

.token-nav-item:hover {
  opacity: 0.7;
}

.token-nav-active {
  font-weight: 600;
}

/* Dropdown Menu */
.token-nav-dropdown {
  position: relative;
}

.token-nav-dropdown-trigger {
  cursor: pointer;
}

.token-nav-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.token-nav-dropdown:hover .token-nav-arrow {
  transform: rotate(180deg);
}

.token-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 340px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 11px 0px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.token-nav-dropdown:hover .token-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.token-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s;
  margin-bottom: 4px;
}

.token-nav-dropdown-item:hover {
  background-color: #f0f0f0;
}

.token-nav-dropdown-item:last-child {
  margin-bottom: 0;
}

/* Support for Tailwind-like classes in dropdown items */
.token-nav-dropdown-item.group {
  position: relative;
}

/* Group hover hidden - show by default, hide on hover */
.token-nav-dropdown-item.group .block.group-hover\:hidden,
.token-nav-dropdown-item.group [class*="group-hover:hidden"] {
  display: block;
}

.token-nav-dropdown-item.group:hover .block.group-hover\:hidden,
.token-nav-dropdown-item.group:hover [class*="group-hover:hidden"] {
  display: none;
}

/* Group hover block - hide by default, show on hover */
.token-nav-dropdown-item.group .hidden.group-hover\:block,
.token-nav-dropdown-item.group [class*="group-hover:block"] {
  display: none;
}

.token-nav-dropdown-item.group:hover .hidden.group-hover\:block,
.token-nav-dropdown-item.group:hover [class*="group-hover:block"] {
  display: block;
}

.token-nav-dropdown-item .flex {
  display: flex;
}

.token-nav-dropdown-item .items-center {
  align-items: center;
}

.token-nav-dropdown-item .gap-3 {
  gap: 12px;
}

.token-nav-dropdown-item .w-full {
  width: 100%;
}

.token-nav-dropdown-item .flex-shrink-0 {
  flex-shrink: 0;
}

.token-nav-dropdown-item .flex-col {
  flex-direction: column;
}

.token-nav-dropdown-item .text-left {
  text-align: left;
}

.token-nav-dropdown-item .text-sm {
  font-size: 14px;
}

.token-nav-dropdown-item .font-semibold {
  font-weight: 600;
}

.token-nav-dropdown-item .text-primary {
  color: #0b0c0e;
}

.token-nav-dropdown-item .text-xs {
  font-size: 12px;
}

.token-nav-dropdown-item .text-secondary {
  color: rgba(11, 12, 14, 0.6);
}

.token-nav-dropdown-item .mt-\[2px\] {
  margin-top: 2px;
}

.token-nav-dropdown-icon {
  flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
}

.token-nav-icon-default,
.token-nav-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  transition: opacity 0.2s;
}

.token-nav-icon-default {
  opacity: 1;
}

.token-nav-icon-hover {
  opacity: 0;
}

.token-nav-dropdown-item:hover .token-nav-icon-default {
  opacity: 0;
}

.token-nav-dropdown-item:hover .token-nav-icon-hover {
  opacity: 1;
}

.token-nav-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.token-nav-dropdown-title {
  font-size: 14px;
  font-weight: 600;
  color: #0b0c0e;
  line-height: 1.4;
}

.token-nav-dropdown-desc {
  font-size: 12px;
  color: rgba(11, 12, 14, 0.6);
  line-height: 1.4;
}

.token-header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.token-lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #0b0c0e;
}

.token-lang-selector:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Language selector button styles */
.token-header-right button.gap-2 {
  gap: 8px;
}

.token-header-right button.rounded-lg {
  border-radius: 8px;
}

.token-header-right button.flex {
  display: flex;
}

.token-header-right button.items-center {
  align-items: center;
}

.token-header-right button.justify-between {
  justify-content: space-between;
}

.token-header-right button.cursor-pointer {
  cursor: pointer;
}

.token-header-right button.px-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.token-header-right button.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.token-header-right button {
  border: none;
  background: none;
  transition: background-color 0.2s;
}

.token-header-right button:hover,
.token-header-right button[class*="hover:bg-"]:hover {
  background-color: rgba(55, 53, 47, 0.04);
}

.token-header-right button .w-6,
.token-header-right button .h-6 {
  width: 24px;
  height: 24px;
}

.token-header-right button .w-4,
.token-header-right button .h-4 {
  width: 16px;
  height: 16px;
}

.token-header-right button .text-sm {
  font-size: 14px;
}

.token-header-right button .text-primary {
  color: #0b0c0e;
}

.token-header-right button .select-none {
  user-select: none;
}

.token-header-right button .hidden {
  display: none;
}

.token-header-right button .transition-transform {
  transition-property: transform;
}

.token-header-right button .duration-200 {
  transition-duration: 200ms;
}

/* Responsive: md breakpoint */
@media (min-width: 768px) {
  .token-header-right button .md\:inline-block {
    display: inline-block;
  }
}

/* Language menu dropdown styles */
.token-header-right .relative {
  position: relative;
}

#lang-menu {
  position: absolute;
  right: 0;
  margin-top: 8px;
  width: 176px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  outline: none;
  z-index: 50;
}

#lang-menu.ring-1 {
  border-width: 1px;
}

#lang-menu.ring-black {
  border-color: rgba(0, 0, 0, 0.1);
}

#lang-menu.ring-opacity-5 {
  border-color: rgba(0, 0, 0, 0.05);
}

#lang-menu.focus\:outline-none:focus {
  outline: none;
}

#lang-menu.hidden {
  display: none;
}

#lang-menu:not(.hidden) {
  display: block;
}

#lang-menu .py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

#lang-menu button[role="menuitem"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

#lang-menu button[role="menuitem"].text-gray-700 {
  color: #374151;
}

#lang-menu button[role="menuitem"]:hover {
  background-color: #f3f4f6;
}

#lang-menu button[role="menuitem"].font-semibold {
  font-weight: 600;
}

#lang-menu button[role="menuitem"].bg-gray-100 {
  background-color: #f3f4f6;
}

#lang-menu button[role="menuitem"] .text-left {
  text-align: left;
}

#lang-menu button[role="menuitem"] .flex-1 {
  flex: 1;
}

#lang-menu button[role="menuitem"] .w-4,
#lang-menu button[role="menuitem"] .h-4 {
  width: 16px;
  height: 16px;
}

#lang-menu button[role="menuitem"] .text-green-500 {
  color: #10b981;
}

/* Main Content */
.token-main {
  min-height: calc(100vh - 56px);
}

.token-hero {
  padding: 60px 316px;
  max-width: 1920px;
  margin: 0 auto;
}

.token-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 90px;
  text-align: center;
  color: #0b0c0e;
  margin-bottom: 60px;
}

.token-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Cards */
.token-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0px 10px 20px 0px rgba(81, 181, 83, 0.05);
}

.token-card-header {
  padding: 17px 20px 19px;
  margin: -25px -25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.token-card-header h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  color: #020817;
  letter-spacing: 1px;
}

.token-card-content {
  padding: 0 20px 26px;
  font-size: 16px;
  line-height: 25.6px;
  color: rgba(11, 12, 14, 0.5);
  letter-spacing: 1px;
}

.token-card-content p {
  margin-bottom: 5px;
}

/* Launch Card */
.token-launch-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  position: relative;
}

.token-launch-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 404px;
}

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

.token-launch-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.token-launch-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.token-launch-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 38.4px;
  color: #020817;
  letter-spacing: 1px;
}

.token-countdown-wrapper {
  padding: 14px 0;
}

.token-countdown-badge {
  background: #51b553;
  border-radius: 5px;
  padding: 0 12px;
  display: inline-block;
}

.token-countdown-badge span {
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  color: white;
  letter-spacing: 1px;
}

.token-supply {
  font-size: 24px;
  font-weight: 700;
  line-height: 38.4px;
  color: #020817;
  letter-spacing: 1px;
}

.token-social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  /* position: absolute;
  bottom: 25px;
  left: 25px; */
}

.token-social-link {
  width: 16px;
  height: 16px;
  color: #0b0c0e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.token-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.token-divider {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
  flex-shrink: 0;
}

.token-launch-right {
  flex: 1;
  max-width: 667px;
}

.token-launch-right p {
  font-size: 16px;
  line-height: 25.6px;
  color: rgba(11, 12, 14, 0.5);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.token-launch-right p:last-child {
  margin-bottom: 0;
}

/* Address Card */
.token-address-wrapper {
  padding: 0 20px 21px;
}

.token-address-input-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.token-address-input {
  flex: 1;
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 54px;
  background: rgba(51, 51, 51, 0.05);
  font-size: 14px;
  line-height: 40px;
  color: #0b0c0e;
  outline: none;
}

.token-address-input:focus {
  border-color: #51b553;
}

.token-copy-btn {
  background: #0b0c0e;
  color: white;
  border: none;
  border-radius: 53px;
  padding: 6px 11px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.token-copy-btn:hover {
  opacity: 0.9;
}

.token-copy-btn-copied {
  background: #51b553;
}

/* Schedule Card */
.token-schedule {
  padding: 32px 40px 32px 40px;
}

.token-timeline {
  position: relative;
  height: 50px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.token-timeline-line {
  position: absolute;
  left: 25px;
  right: 25px;
  height: 2px;
  background: #e0f3e8;
  z-index: 0;
}

.token-timeline-step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0f3e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #00b843;
  position: relative;
  z-index: 1;
}

.token-timeline-step-active {
  background: #51b553;
  color: white;
}

.token-schedule-dates {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.token-schedule-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.token-schedule-item-center {
  text-align: center;
}

.token-schedule-item-right {
  text-align: right;
}

.token-schedule-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  color: #333333;
  letter-spacing: 1px;
}

.token-schedule-value {
  font-size: 13px;
  line-height: 13px;
  color: rgba(11, 12, 14, 0.5);
  letter-spacing: 1px;
}

/* Participation List */
.token-participation-list {
  padding: 0 20px 26px;
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: 24px;
  font-size: 16px;
  line-height: 25.6px;
  color: rgba(11, 12, 14, 0.5);
  letter-spacing: 1px;
}

.token-participation-list li {
  margin-bottom: 16px;
}

.token-participation-list li:last-child {
  margin-bottom: 0;
}

/* Footer */
.token-footer {
  background: #F8F9FA;
  padding: 50px 316px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.token-footer-container {
  max-width: 1288px;
  margin: 0 auto;
}

.token-footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  max-width: 624px;
}

.token-footer-logo {
  height: 24px;
  width: 108px;
}

.token-footer-logo img {
  height: 100%;
  width: auto;
}

.token-footer-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #0b0c0e;
}

.token-footer-desc {
  font-size: 12px;
  line-height: 18px;
  color: #0a0b0d;
  max-width: 312px;
}

.token-footer-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 31px 0 0;
  padding: 0;
}

.token-footer-copyright {
  padding-top: 31px;
}

.token-footer-copyright p {
  font-size: 14px;
  line-height: 20px;
  color: #595b61;
}

/* Responsive */
@media (max-width: 1440px) {
  .token-hero {
    padding: 60px 200px;
  }
  
  .token-footer {
    padding: 50px 200px 40px;
  }
}

@media (max-width: 1024px) {
  .token-hero {
    padding: 60px 100px;
  }
  
  .token-footer {
    padding: 50px 100px 40px;
  }
  
  .token-launch-card {
    flex-direction: column;
  }
  
  .token-launch-left {
    width: 100%;
  }
  
  .token-divider {
    width: 100%;
    height: 1px;
  }
  
  .token-schedule-dates {
    flex-direction: column;
    gap: 20px;
  }
  
  .token-schedule-item,
  .token-schedule-item-center,
  .token-schedule-item-right {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .token-header-container {
    padding: 0 16px;
  }
  
  .token-header-nav {
    gap: 20px;
  }
  
  .token-nav-item {
    font-size: 14px;
  }
  
  .token-nav-dropdown-menu {
    min-width: 280px;
    left: auto;
    right: 0;
  }
  
  .token-hero {
    padding: 40px 20px;
  }
  
  .token-title {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 40px;
  }
  
  .token-footer {
    padding: 40px 20px;
  }
  
  .token-launch-card {
    padding: 20px;
  }
  
  .token-card {
    padding: 20px;
  }
  
  .token-card-header {
    padding: 15px 20px;
    margin: -20px -20px 20px;
  }
  
  .token-schedule {
    padding: 20px;
  }
  
  .token-address-wrapper {
    padding: 0 20px 20px;
  }
  
  .token-address-input-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  
  .token-copy-btn {
    width: 100%;
  }
}

.t-base {
  font-size: 16px;
}

.t-sm {
  font-size: 14px;
}

.t-xs {
  font-size: 12px;
}
