/* Global styles */
:root {
  --dark-bg: #1A1A1A;
  --darker-bg: #121212;
  --gold-primary: #D4AF37;
  --gold-secondary: #F0E68C;
  --gold-hover: #FFD700;
  --gray-light: #E0E0E0;
  --gray-dark: #2A2A2A;
  --gray-darker: #212121;
  --text-white: #F5F5F5;
  --positive: #4CAF50;
  --negative: #FF5252;
  --neutral: #64B5F6;
  --highlight: #FFA726;
  --highlight-bg: rgba(255, 167, 38, 0.1);
  --border-color: #363636;
  /* Adding Berally custom variables */
  --brand-color-primary: #FFE596;
  --background-grey-2: #1B1B1B;
  --background-grey3: #3D3D3D; 
  --text-main-text: #F0F0F0;
  --text-sub-text: #8C8C8C;
}

/* Font imports */
@font-face {
  font-family: 'Aquire';
  src: url('../fonts/Aquire-BW0ox.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Chakra Petch';
  src: url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;700&display=swap');
}

@font-face {
  font-family: 'Lato';
  src: url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
}

* {
  box-sizing: border-box;
  transition: all 0.25s ease;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  background-image: url('/static/img/report_background.png');
  background-repeat: repeat;
  color: var(--text-white);
  line-height: 1.6;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
}

a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Logo styling */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 150px;
  z-index: 10;
}

/* Report Title - Based on Figma specs */
.report-title {
  font-family: 'Aquire', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 44px;
  letter-spacing: 1px;
  color: var(--brand-color-primary);
  text-align: center;
  margin: 40px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Badges Container */
.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    background: var(--background-grey2);
    border-radius: 8px;
    justify-content: center;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding: 15px;
  background: var(--background-grey2);
  border-radius: 8px;
  justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--background-grey3);
    border-radius: 6px;
    font-size: 14px;
    color: var(--brand-color-primary);
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--background-grey4);
    transform: translateY(-2px);
    border: 1px solid var(--brand-color-primary);
}

.badge i {
    color: var(--brand-color-primary);
    font-size: 16px;
}

.badge span {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 500;
}

@media (max-width: 768px) {
    .badges-container {
        flex-direction: column;
        gap: 8px;
    }

    .badge-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
    }
}

/* Token info card improvements */
.info-card {
  flex: 1 1 200px;
  background: #1B1B1B;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  max-width: 250px;
  min-width: 180px;
  border: 1px solid var(--background-grey3);
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--brand-color-primary, #FFE596);
}

.info-card-title {
  font-size: 14px;
  color: var(--text-sub-text);
  margin: 0 0 4px 0;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-card-value {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-main-text);
  margin: 0;
  font-family: 'Chakra Petch', sans-serif;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Token header improvements */
.token-header {
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
}

.token-header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}


.token-header .logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.token-header .title {
  font-family: 'Aquire', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFE596;
  margin: 0;
  text-align: center;
}

.token-header .subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: center;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.platform-btn {
  padding: 4px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFE596;
  border: none;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.platform-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.market-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  width: 100%;
  margin-bottom: 15px;
}


.market-card:hover {
  transform: translateY(-2px);
}

.card-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 4px 0;
}

.card-value {
  font-size: 1rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.time-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
  margin-bottom: 15px;
}

.time-card:hover {
  transform: translateY(-2px);
}

.time-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 4px 0;
}

.time-value {
  font-size: 1rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .market-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .time-cards {
    grid-template-columns: 1fr;
  }
  
  .token-header .title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .market-cards {
    grid-template-columns: 1fr;
  }
  
  .token-header .title {
    font-size: 1.125rem;
  }
}

/* Market data layout improvements */
.market-data-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}

/* Price info box improvements */
.price-info-container {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.price-box {
  flex: 1 1 300px;
  background: var(--background-grey-2);
  border: 1px solid var(--background-grey3);
  border-radius: 8px;
  padding: 20px;
  min-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.price-box:hover {
  transform: translateY(-5px);
  border-color: var(--brand-color-primary, #FFE596);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.price-label {
  font-size: 14px;
  color: var(--text-sub-text);
  margin-bottom: 8px;
  font-family: 'Lato', sans-serif;
}

.price-value {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-main-text);
  letter-spacing: 0.5px;
}

/* Positive and negative values styling */
.positive {
  color: var(--positive);
}

.negative {
  color: var(--negative);
}

/* Token comparison section */
.token-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.token-card {
  background: var(--background-grey-2);
  border: 1px solid var(--background-grey3);
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.token-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-color-primary, #FFE596);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

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

.token-card-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid var(--brand-color-primary, #FFE596);
}

.token-card-name {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-color-primary, #FFE596);
  margin: 0;
}

.token-card-symbol {
  font-size: 14px;
  color: var(--text-sub-text);
  margin-top: 5px;
}

.token-card-data {
  margin-top: 15px;
}

.token-data-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(61, 61, 61, 0.5);
}

.token-data-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.token-data-label {
  color: var(--text-sub-text);
  font-size: 14px;
}

.token-data-value {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  color: var(--text-main-text);
  font-size: 16px;
}

/* Section title styling */
.section-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: none;
  position: relative;
  color: var(--text-main-text);
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-main-text, #ffffff);
}

/* Subtitle styling */
.subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #FFFFFF;
}

/* Content text styling */
.content-text {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--text-white);
}

/* Rich text formatting classes */
.text-formatted {
  margin-bottom: 20px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.text-formatted h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--gold-primary);
}

.text-formatted h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--gold-secondary);
}

.text-formatted h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text-white);
}

.text-formatted h4 {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 8px;
  color: var(--gold-secondary);
}

.text-formatted p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--text-white);
}

.text-formatted ul, 
.text-formatted ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

.text-formatted li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.text-formatted a {
  color: var(--gold-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.text-formatted a:hover {
  border-color: var(--gold-primary);
}

.text-formatted code {
  font-family: 'Roboto Mono', monospace;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--gold-secondary);
}

.text-formatted pre {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 20px;
}

.text-formatted blockquote {
  border-left: 3px solid var(--gold-primary);
  padding-left: 15px;
  margin-left: 0;
  margin-right: 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.text-formatted table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.text-formatted th {
  background-color: var(--darker-bg);
  color: var(--gold-primary);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--gold-primary);
  padding: 12px 15px;
  text-align: left;
}

.text-formatted td {
  padding: 10px 15px;
  border-bottom: 1px solid var(--background-grey3);
}

.text-formatted tr:hover {
  background-color: rgba(42, 42, 42, 0.7);
}

.text-highlight {
  color: var(--gold-primary);
  font-weight: 700;
}

.text-secondary {
  color: var(--gold-secondary);
}

.text-centered {
  text-align: center;
}

.text-success {
  color: var(--positive);
}

.text-danger {
  color: var(--negative);
}

.text-warning {
  color: var(--highlight);
}

.text-muted {
  opacity: 0.7;
}

.text-sm {
  font-size: 0.85em;
}

.text-lg {
  font-size: 1.2em;
}

.text-xl {
  font-size: 1.5em;
}

/* News items styling */
.news-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.news-item {
  background: var(--background-grey-2);
  border-radius: 10px;
  border-left: 4px solid var(--gold-primary);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.news-date {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--gold-secondary);
  margin-bottom: 8px;
}

.news-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-white);
}

.news-content {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-white);
  opacity: 0.9;
}

/* Data Table styling */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: 'Lato', sans-serif;
  background: var(--background-grey-2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.data-table thead {
  background-color: var(--darker-bg);
}

.data-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--gold-primary);
}

.data-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--background-grey3);
  font-size: 14px;
  color: var(--text-white);
  vertical-align: middle;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background-color: rgba(42, 42, 42, 0.7);
}

.data-table .numeric-cell {
  text-align: right;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
}

.data-table .text-cell {
  text-align: left;
}

.data-table .centered-cell {
  text-align: center;
}

.data-table .highlighted-row {
  background-color: rgba(212, 175, 55, 0.1);
}

.data-table .status-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-table .status-cell .status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.data-table .status-cell .status-active {
  background-color: var(--positive);
}

.data-table .status-cell .status-inactive {
  background-color: var(--negative);
}

.data-table .status-cell .status-pending {
  background-color: var(--highlight);
}

.data-table caption {
  caption-side: bottom;
  padding: 8px;
  font-size: 12px;
  color: var(--text-grey);
  text-align: right;
  font-style: italic;
}

/* Responsive data table */
@media (max-width: 768px) {
  .data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .data-table th, 
  .data-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
  
  .data-table caption {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .data-table th, 
  .data-table td {
    padding: 8px 6px;
    font-size: 12px;
  }
}

/* Session background styling */
.session-container {
  background: var(--background-grey-2);
  border: 1px solid var(--background-grey3);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

/* Hero Section - with updated styling */
.hero {
  background: linear-gradient(135deg, #121212, #2A2A2A);
  position: relative;
  color: var(--text-white);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  margin-bottom: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15), transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero img {
  max-width: 150px;
  margin-bottom: 25px;
  border-radius: 50%;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 4em;
  margin: 0;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p.description {
  font-family: 'Lato', sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  margin: 15px auto 40px;
  max-width: 800px;
  opacity: 0.9;
  line-height: 1.8;
}

.hero .tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-secondary);
  padding: 3px 10px;
  margin: 3px;
  border-radius: 100px;
  font-size: 0.9em;
}

.header-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.header-stats .stat {
  background: rgba(42, 42, 42, 0.7);
  padding: 20px;
  border-radius: 15px;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.header-stats .stat:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.header-stats .stat h3 {
  margin: 0;
  font-size: 1.1em;
  font-weight: 400;
  color: var(--gold-secondary);
}

.header-stats .stat p {
  margin: 10px 0 0;
  font-size: 1.6em;
  font-weight: 700;
  color: var(--text-white);
}

/* Section Styling - Improved */
.section {
  background: var(--dark-bg);
  padding: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border: 1px solid var(--gray-dark);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3em;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--gold-primary);
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

/* Cards - Updated with hover effects */
.card {
  flex: 1 1 calc(33.33% - 25px);
  min-width: 250px;
  background: var(--gray-dark);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border-color: var(--gold-primary);
}

.card h3 {
  margin: 0 0 15px;
  font-size: 1.3em;
  color: var(--gold-secondary);
  display: flex;
  align-items: center;
}

.card h3 i {
  margin-right: 10px;
}

.card p {
  margin: 0 0 8px;
  font-size: 1.1em;
  color: var(--text-white);
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}

/* Chart Components - Improved */
.chart-container {
  background: var(--gray-dark);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  position: relative;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease-out;
}

.chart-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-color: var(--gold-primary);
}

.chart-container h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-primary);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.chart-container canvas {
  width: 100%;
  height: auto;
  max-height: 500px;
}

/* Table Components - New */
.table-container {
  overflow-x: auto;
  margin-bottom: 30px;
  background: var(--gray-dark);
  padding: 5px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Token comparison table */
.comparison-table-container {
  margin: 30px 0;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--background-grey-2);
}

.comparison-table th {
  text-align: left;
  padding: 15px;
  background: var(--background-grey3);
  color: var(--brand-color-primary, #FFE596);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.comparison-table th:first-child {
  border-top-left-radius: 8px;
}

.comparison-table th:last-child {
  border-top-right-radius: 8px;
}

.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(61, 61, 61, 0.5);
  color: var(--text-main-text);
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.comparison-table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.comparison-table tr:hover {
  background: rgba(61, 61, 61, 0.2);
}

.comparison-table .token-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-table .token-logo-small {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--brand-color-primary, #FFE596);
}

.comparison-table .token-name-small {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.comparison-table .token-symbol-small {
  color: var(--text-sub-text);
  font-size: 12px;
}

/* Token metrics card group */
.token-metrics-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.token-metric-card {
  background: var(--background-grey-2);
  border: 1px solid var(--background-grey3);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.token-metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-color: var(--brand-color-primary, #FFE596);
}

.token-metric-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(61, 61, 61, 0.5);
}

.token-metric-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--brand-color-primary, #FFE596);
}

.token-metric-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--brand-color-primary, #FFE596);
  margin: 0;
}

.token-metric-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.token-metric-item {
  display: flex;
  flex-direction: column;
}

.token-metric-label {
  font-size: 12px;
  color: var(--text-sub-text);
  margin-bottom: 5px;
}

.token-metric-value {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-main-text);
}

/* Featured token section */
.featured-token {
  background: linear-gradient(135deg, rgba(27, 27, 27, 0.8), rgba(19, 19, 19, 0.95));
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--background-grey3);
  position: relative;
  overflow: hidden;
}

.featured-token::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 229, 150, 0.08), transparent 70%);
  z-index: 0;
}

.featured-content {
  position: relative;
  z-index: 1;
}

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

.featured-token-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--brand-color-primary, #FFE596);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.featured-token-info {
  flex: 1;
}

.featured-token-name {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-color-primary, #FFE596);
  margin: 0 0 5px 0;
}

.featured-token-description {
  font-size: 16px;
  color: var(--text-sub-text);
  margin: 0;
}

.featured-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.featured-metric-item {
  background: rgba(61, 61, 61, 0.3);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid rgba(61, 61, 61, 0.6);
}

.featured-metric-label {
  font-size: 14px;
  color: var(--text-sub-text);
  margin-bottom: 8px;
}

.featured-metric-value {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main-text);
}

/* Better styling for long numbers */
.number-value {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}

/* Token category section */
.token-category {
  margin: 40px 0;
}

.category-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-color-primary, #FFE596);
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-color-primary, #FFE596);
}

/* Token grid layout */
.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

/* Enhanced responsive handling for tables */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 3em;
  }
  
  .header-stats {
    gap: 20px;
  }
  
  .header-stats .stat {
    min-width: 180px;
    padding: 15px;
  }
  
  .comparison-container, .dual-hero-container, .social-stats-container, .metrics-row {
    flex-direction: column;
  }
  
  .grid-layout, .chart-grid, .indicators-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 25px;
  }
  
  .half-width {
    width: 100%;
  }
  
  /* Table responsive styles */
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }
  
  /* Technical indicators grid responsive */
  .technical-indicators-grid {
    grid-template-columns: 1fr;
  }
  
  /* Chart container with analysis responsive */
  .chart-container.with-analysis {
    flex-direction: column;
  }
  
  .chart-wrapper, .chart-analysis {
    width: 100%;
  }
  
  /* Token indicator card responsive */
  .token-indicator-card {
    margin-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 15px;
  }
  
  .hero h1 {
    font-size: 2.5em;
  }
  
  .header-stats .stat {
    min-width: 150px;
  }
  
  .section {
    padding: 20px;
  }
  
  .chart-controls {
    flex-wrap: wrap;
  }
  
  .time-button {
    margin-bottom: 8px;
  }
  
  /* Table responsive styles for smaller screens */
  .comparison-table {
    font-size: 0.8rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }
  
  .comparison-table .category-header td {
    font-size: 0.75rem;
  }
  
  /* Price performance grid responsive */
  .price-performance-grid {
    grid-template-columns: 1fr;
  }
  
  /* Summary content responsive */
  .summary-content {
    padding: 15px;
  }
  
  .summary-content p {
    font-size: 1em;
  }
  
  /* Adjust sparklines on small screens */
  .sparkline {
    width: 80px;
    height: 40px;
  }
}

.half-width {
  width: calc(50% - 15px);
  display: inline-block;
  vertical-align: top;
}

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

/* Chart Controls - New */
.chart-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}

.time-button {
  padding: 8px 15px;
  background: var(--gray-darker);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  color: var(--text-white);
  cursor: pointer;
  font-size: 0.9em;
  transition: all 0.2s ease;
}

.time-button:hover, .time-button.active {
  background: var(--gray-darker);
  border-color: var(--gold-primary);
  color: var(--gold-hover);
}

/* Metric Cards with Sparklines - Improved */
.metrics-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.metric-card {
  flex: 1;
  background: var(--gray-dark);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card:hover::after {
  opacity: 1;
}

.metric-info {
  flex: 1;
}

.metric-info h3 {
  color: var(--gold-secondary);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.metric-value {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.metric-change {
  font-size: 0.9em;
  font-weight: 500;
}

.metric-subtitle {
  font-size: 0.85em;
  color: #AAA;
  margin-top: 5px;
}

.sparkline {
  width: 100px;
  height: 50px;
  margin-left: 15px;
  align-self: center;
}

/* TradingView container - Improved */
.tradingview-container, .tradingview-widget-container {
  height: 500px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--gray-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* History Header for Price Charts */
.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.history-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5em;
  color: var(--gold-secondary);
  margin: 0;
}

.time-periods {
  display: flex;
  gap: 10px;
}

.time-period {
  padding: 8px 15px;
  background: var(--gray-dark);
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.time-period.active, .time-period:hover {
  background: var(--gray-darker);
  border-color: var(--gold-primary);
  color: var(--gold-hover);
}

/* Technical Indicators - New */
.technical-summary {
  margin-top: 30px;
}

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

.indicator {
  background: var(--gray-dark);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.indicator h4 {
  margin: 0 0 10px;
  color: var(--gold-secondary);
}

.indicator-value {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 5px;
}

.indicator-signal {
  font-size: 0.9em;
  font-weight: 500;
}

/* Add styles for token-indicator-card and other missing elements from templates */
.token-indicator-card {
  background-color: var(--darker-bg);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.token-indicator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--gold-primary);
}

.token-indicator-card h4 {
  margin-top: 0;
  color: var(--gold-primary);
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.indicator-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.indicator-label {
  font-weight: 500;
}

.indicator-value {
  font-weight: bold;
}

/* Chart container with analysis section */
.chart-container.with-analysis {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 900px) {
  .chart-container.with-analysis {
    flex-direction: row;
  }
  
  .chart-wrapper {
    flex: 6;
  }
  
  .chart-analysis {
    flex: 4;
    padding-left: 20px;
  }
}

.chart-wrapper {
  background: var(--gray-dark);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chart-analysis {
  background: var(--gray-dark);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chart-analysis h4 {
  color: var(--gold-secondary);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3em;
}

/* Technical table specific styles */
.technical-table {
  margin-top: 30px;
}

.technical-table .category-header td {
  padding-top: 15px;
  background-color: rgba(0, 0, 0, 0.2);
}

/* Token Symbol styling */
.token-symbol {
  font-size: 0.7em;
  opacity: 0.8;
  vertical-align: middle;
  background: rgba(212, 175, 55, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 5px;
}

/* Token tags section */
.token-tags {
  margin: 15px 0;
}

/* Executive summary section */
.executive-summary {
  margin-bottom: 40px;
}

.summary-content {
  background: var(--darker-bg);
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid var(--gold-primary);
}

.summary-content p {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
}

.summary-content ul {
  margin-bottom: 15px;
}

.summary-content li {
  margin-bottom: 8px;
}

/* Warning class (similar to highlight, but for warning indicators) */
.warning {
  color: var(--highlight);
}

/* Style consistency for technical-indicators-grid */
.technical-indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* TradingView widget container */
.tradingview-widget-container {
  height: 500px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--gray-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Price performance section enhancement */
.price-performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* Style for the sparkline container */
.sparkline {
  width: 100px;
  height: 50px;
  margin-left: 15px;
  align-self: center;
}

/* Utility Classes */
.positive {
  color: var(--positive);
}

.negative {
  color: var(--negative);
}

.neutral {
  color: var(--neutral);
}

.highlight {
  color: var(--highlight);
}

/* Add missing table-related classes from template */
.comparison-table .warning {
  color: var(--highlight);
}

/* Enhanced table styles from the template */
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

/* Add styles for inline token logos */
.token-logo-small {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  border: 1px solid var(--border-color);
}

/* Add fade-in animation for charts */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chart-container {
  animation: fadeIn 0.5s ease-out;
}

/* Fix hover effect for metric cards */
.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border-color: var(--gold-primary);
}

/* Add styles for TradingView comparison widget */
.tradingview-compare-container {
  height: 400px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Better responsive table handling */
@media (max-width: 768px) {
  .table-container {
    padding: 0;
    border-radius: 10px;
  }
  
  .comparison-table {
    border-radius: 10px;
    font-size: 0.85rem;
  }
  
  .comparison-table th, 
  .comparison-table td {
    padding: 10px 8px;
  }
  
  .comparison-table .category-header td::before {
    height: 60%;
  }
}

/* Fix for overlapping styles */
.comparison-table tbody tr:hover:not(.category-header) {
  background-color: rgba(42, 42, 42, 0.7);
}

.comparison-table .category-header td {
  background-color: var(--darker-bg);
  font-weight: bold;
  color: var(--gold-secondary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding-top: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-primary);
  position: relative;
  text-align: left !important;
}

/* Improve the readability of inline code in reports */
code {
  font-family: 'Roboto Mono', monospace;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--gold-secondary);
}

/* Ensure table headers are properly styled */
.comparison-table th {
  background-color: var(--darker-bg);
  color: var(--gold-primary);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--gold-primary);
  padding: 15px;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
}

/* Responsive Adjustments */

/* Language Selector Styles */
.language-selector-container {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 100;
}

.language-selector {
  background-color: var(--gray-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.language-selector:hover {
  background-color: var(--gray-darker);
  border-color: var(--gold-primary);
}

.language-selector i {
  margin-right: 8px;
  color: var(--gold-primary);
}

.language-selector select {
  background-color: transparent;
  border: none;
  color: var(--text-white);
  outline: none;
  font-size: 14px;
  padding-right: 24px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.language-selector select::-ms-expand {
  display: none;
}

.language-selector::after {
  content: "▼";
  font-size: 10px;
  color: var(--gold-primary);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.language-option {
  background-color: var(--gray-dark);
  color: var(--text-white);
}

.language-option:hover {
  background-color: var(--gray-darker);
}

@media (max-width: 768px) {
  .language-selector-container {
    position: relative;
    top: auto;
    right: auto;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .language-selector {
    display: inline-flex;
  }
}

/* Card row container */
.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 3em;
  }
  
  .card-row {
    flex-direction: column;
    align-items: center;
  }
  
  .info-card {
    width: 100%;
    max-width: 300px;
  }
  
  .logo {
    max-width: 100px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2em;
  }
  
  .report-title {
    font-size: 24px;
    line-height: 32px;
  }
  
  .section-title {
    font-size: 18px;
    line-height: 24px;
  }
  
  .badge {
    width: 120px;
  }
}

/* Market data grid */
.market-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

/* Token center display */
.token-center-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.token-center-display .token-logo {
  margin: 0 auto 20px;
  width: 120px;
  height: 120px;
}

.token-center-display .token-name {
  margin-bottom: 15px;
}

/* Price metrics section */
.price-metrics {
  background: #131313;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--background-grey3);
}

.price-metrics-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-color-primary, #FFE596);
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--background-grey3);
}

/* Time period metrics */
.time-period-metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.time-metric-card {
  flex: 1 1 300px;
  background: var(--background-grey-2);
  border: 1px solid var(--background-grey3);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.time-metric-title {
  font-size: 14px;
  color: var(--text-sub-text);
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
}

.time-metric-value {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main-text);
  margin: 0;
}

.time-metric-change {
  font-size: 14px;
  margin-top: 5px;
}

/* Main content layout */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Stats container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

/* Stats card styling */
.stats-card {
  background: var(--background-grey-2);
  border: 1px solid var(--background-grey3);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--brand-color-primary, #FFE596);
}

.stats-title {
  font-size: 14px;
  color: var(--text-sub-text);
  margin: 0 0 10px 0;
}

.stats-value {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main-text);
  margin: 0;
}

.stats-change {
  font-size: 14px;
  margin-top: 8px;
}

/* Token data table */
.token-data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.token-data-table th {
  text-align: left;
  padding: 15px;
  background: var(--background-grey3);
  color: var(--brand-color-primary, #FFE596);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.token-data-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(61, 61, 61, 0.5);
  color: var(--text-main-text);
}

.token-data-table tr:last-child td {
  border-bottom: none;
}

.token-data-table tr:nth-child(even) {
  background: rgba(27, 27, 27, 0.4);
}

.token-data-table tr:hover {
  background: rgba(61, 61, 61, 0.2);
}

/* Chart container */
.chart-container {
  background: var(--background-grey-2);
  border: 1px solid var(--background-grey3);
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.chart-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-color-primary, #FFE596);
  margin-top: 0;
  margin-bottom: 20px;
}

/* Better responsive handling */
@media (max-width: 768px) {
  .token-comparison {
    grid-template-columns: 1fr;
  }
  
  .market-data-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .token-center-display .token-logo {
    width: 100px;
    height: 100px;
  }
  
  .token-name {
    font-size: 28px;
  }
  
  .token-description {
    font-size: 16px;
  }
  
  .chart-container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .time-period-metrics {
    flex-direction: column;
  }
  
  .report-title {
    font-size: 28px;
  }
}

/* Logo section for token header */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.token-header .logo {
  position: static;
  background-color: #8B4513;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  border: 3px solid var(--brand-color-primary, #FFE596);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.token-header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.token-header .logo svg {
  width: 80px;
  height: 80px;
}

.token-header .title {
  font-size: 2rem;
  color: #F5F5DC;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Aquire', sans-serif;
  font-weight: 700;
  text-align: center;
  color: var(--brand-color-primary, #FFE596);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.token-header .subtitle {
  font-size: 1rem;
  color: #888;
  text-align: center;
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 1rem;  
}

/* Platform buttons */
.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.platform-btn {
  background-color: rgba(50, 50, 50, 0.7);
  color: #FFE596;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid transparent;
}

.platform-btn:hover {
  background-color: rgba(70, 70, 70, 0.8);
  border-color: var(--brand-color-primary, #FFE596);
}

/* Market cards */
.market-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.market-card {
  background-color: rgba(30, 30, 30, 0.7);
  border-radius: 10px;
  width: 150px;
  text-align: center;
  border: 1px solid var(--background-grey3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.market-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--brand-color-primary, #FFE596);
}

.card-title {
  color: #888;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.card-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-main-text);
  font-family: 'Chakra Petch', sans-serif;
}

/* Time cards */
.time-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.time-card {
  background-color: rgba(30, 30, 30, 0.7);
  border-radius: 10px;
  width: 45%;
  min-width: 300px;
  border: 1px solid var(--background-grey3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.time-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--brand-color-primary, #FFE596);
}

.time-title {
  color: #888;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.time-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-main-text);
  font-family: 'Chakra Petch', sans-serif;
}

/* Responsive adjustments for market and time cards */
@media (max-width: 768px) {
  .market-card {
      width: 45%;
  }
  
  .time-card {
      width: 100%;
  }
}

@media (max-width: 480px) {
  .market-card {
      width: 100%;
  }
  
  .token-header .title {
      font-size: 2rem;
  }
} 