
.token-section {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--padding-medium);
  margin: var(--padding-medium) 0;
  width: 100%;
  justify-items: center;
}

.token-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: var(--padding-medium);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.token-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.token-amount {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.token-price {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
}

.token-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.premium-title {

  text-align: center;
}


.premium-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    width: 100%;
    margin: 15px 0 10px 0;
    align-items: start;
}


.premium-features {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 25px;
}

.premium-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.premium-features ul li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.premium-features ul li:last-child {
    border-bottom: none;
}

.premium-features ul li:before {
    content: '»';
    color: var(--primary-color);
    font-size: 11px;
    flex-shrink: 0;
}

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

.plans-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 0;
    font-style: italic;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.plan-card {
    padding: 14px 12px 16px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    border-color: rgba(255, 215, 0, 0.25);
    background: rgba(255, 215, 0, 0.04);
}

.plan-card .plan-badge {
    font-size: 22px;
    margin-bottom: 2px;
}

.plan-card .plan-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.plan-card .plan-price {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    margin: 4px 0;
}

.plan-card .plan-price .plan-discount {
    font-size: 10px;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.15);
    padding: 1px 8px;
    border-radius: 10px;
    margin-left: 4px;
    font-weight: 600;
}

.plan-card .plan-period {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}

.plan-btn {
    padding: 6px 20px;
    font-size: 12px;
    border-radius: 20px;
    width: 100%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(62, 192, 73, 0.3);
}


.premium-plus-plan .plan-badge {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-trial {
    padding: 10px 16px;
    background: rgba(255, 215, 0, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.08);
    text-align: center;
}

.trial-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 6px;
}

.trial-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.trial-badge {
    font-size: 11px;
    padding: 2px 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
}

.trial-days {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.trial-info .trial-price {
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
}

.trial-btn {
    padding: 4px 16px;
    font-size: 11px;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

.trial-btn:hover {
    background: rgba(62, 192, 73, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .premium-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .plan-card {
        padding: 12px 8px 14px;
    }
    
    .plan-card .plan-price {
        font-size: 17px;
    }
    
    .plan-card .plan-name {
        font-size: 13px;
    }
    
    .premium-features ul li {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .plan-card {
        padding: 10px 6px 12px;
    }
    
    .plan-card .plan-badge {
        font-size: 18px;
    }
    
    .plan-card .plan-price {
        font-size: 15px;
    }
    
    .plan-card .plan-name {
        font-size: 12px;
    }

    .plan-trial {
        padding: 8px 12px;
    }
    
    .trial-info {
        gap: 8px;
    }
    
    .trial-info .trial-price {
        font-size: 14px;
    }
}


@media (max-width: 768px) {
  .token-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
  }

  .token-card {
    padding: 14px 10px 16px;
  }

  .token-amount {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .token-price {
    font-size: 20px;
    margin: 4px 0;
  }

  .token-description {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .token-card .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .premium-title {
    margin-top: 24px !important;
    font-size: 20px;
  }

  .centered-content {
    margin-bottom: 40px;
  }

  .subtitle {
    margin-bottom: 20px;
  }

  .premium-container {
    margin: 10px 0;
  }

  .premium-features {
    margin-top: 15px;
    padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .token-grid {
    gap: 8px;
  }

  .token-card {
    padding: 10px 8px 12px;
  }

  .token-amount {
    font-size: 13px;
  }

  .token-price {
    font-size: 17px;
    margin: 3px 0;
  }

  .token-description {
    font-size: 11px;
    margin-bottom: 8px;
  }
}
