
/* Additional styles for USDT */

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
  border: 2px solid #8B5CF6;
}

.product-card-header {
  background: linear-gradient(135deg, #9b87f5, #7E69AB);
  color: white;
  padding: 1.25rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  /*margin-bottom: 0.5rem;*/
}

.product-desc {
  font-size: 0.875rem;
  opacity: 0.9;
}

.product-card-body {
  padding: 1.25rem;
  color: black;
}

.product-info {
  margin-bottom: 1.25rem;
  color: white !important;
}

.product-info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.product-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #9b87f5, #7E69AB);
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-weight: 500;
  transition: opacity 0.3s;
  cursor: pointer;
}

.product-btn:hover {
  opacity: 0.9;
}

/* VIP Cards */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .vip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vip-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}

.vip-card:hover {
  transform: translateY(-5px);
}

.vip-card.popular::before {
  content: attr(data-popular);
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #f97316;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.vip-card-header {
  background: linear-gradient(135deg, #9b87f5, #6E59A5);
  color: white;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.vip-level {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.vip-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.vip-period {
  font-size: 0.875rem;
  opacity: 0.8;
}

.vip-card-body {
  padding: 1.5rem 1.25rem;
}

.vip-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.vip-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.vip-feature-icon {
  margin-right: 0.5rem;
  color: #8B5CF6;
  margin-top: 0.125rem;
}

.vip-feature-text {
  flex: 1;
}

.vip-info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.vip-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #9b87f5, #7E69AB);
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-weight: 500;
  transition: opacity 0.3s;
  cursor: pointer;
  text-align: center;
}

.vip-btn:hover {
  opacity: 0.9;
}

/* Profile Styles */
.profile-section {
  margin-bottom: 2rem;
}

.profile-header {
  background: linear-gradient(135deg, #9b87f5, #7E69AB);
  color: white;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.profile-welcome {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.profile-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.profile-info-item {
  margin-right: 1.5rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .profile-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
}

.stat-title {
  font-size: 0.875rem;
  color: #8E9196;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 16px;
  font-weight: 600;
}

.tabs-container {
  margin-bottom: 2rem;
}

.tabs-header {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.tab-button.active {
  border-bottom-color: #8B5CF6;
  color: #8B5CF6;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.activity-list {
  list-style: none;
}

.activity-item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.activity-icon {
  margin-right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-details {
  flex: 1;
}

.activity-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.activity-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #8E9196;
}

/* Records Page Styles */
.filters-container {
  background-color: #f9fafb;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-option {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-option.active {
  background-color: #8B5CF6;
  border-color: #8B5CF6;
  color: white;
}

.search-container {
  display: flex;
  margin-top: 1rem;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem 0 0 0.5rem;
  outline: none;
}

.search-input:focus {
  border-color: #8B5CF6;
}

.search-btn {
  background-color: #8B5CF6;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  cursor: pointer;
}

.records-table-container {
  overflow-x: auto;
}

.records-table {
  width: 100%;
  border-collapse: collapse;
}

.records-table th,
.records-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.records-table th {
  font-weight: 600;
  background-color: #f9fafb;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-completed {
  background-color: #ecfdf5;
  color: #10b981;
}

.status-pending {
  background-color: #fffbeb;
  color: #f59e0b;
}

.status-failed {
  background-color: #fef2f2;
  color: #ef4444;
}

.details-link {
  color: #8B5CF6;
  text-decoration: none;
  font-size: 0.875rem;
}

.details-link:hover {
  text-decoration: underline;
}

/* Form Containers */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.cool-card {
  /*background-color: #ffffff;*/
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.withdraw-info {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #9b87f5, #7E69AB);
  border-radius: 0.5rem;
  padding: 1rem;
}

.withdraw-info-icon {
  margin-right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  /*background-color: #9b87f5;*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.withdraw-form {
  margin-top: 1rem;
  padding: 20px;
}

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

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #8B5CF6;
}

.form-button {
  display: block;
  width: 100%;
  padding: 0.875rem;
  background-color: #8B5CF6;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-button:hover {
  background-color: #7c3aed;
}

.btn-gradient {
  background: linear-gradient(135deg, #9b87f5, #7E69AB);
}

.input-addon {
  position: relative;
}

.input-addon-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.75rem;
  font-weight: 500;
}

.input-addon .form-input {
  /*padding-left: 3.5rem;*/
}

.crypto-warning {
  background-color: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #92400e;
  border-radius: 0.25rem;
}

/* For dark mode support */
@media (prefers-color-scheme: dark) {
  .product-card,
  .vip-card,
  .stat-card,
  .cool-card {
    background-color: #1f2937;
    color: #e5e7eb;
  }

  .filter-option {
    background-color: #374151;
    border-color: #4b5563;
    color: #e5e7eb;
  }

  .filter-option.active {
    background-color: #8B5CF6;
    border-color: #8B5CF6;
  }

  .records-table th {
    background-color: #374151;
  }

  .records-table th,
  .records-table td {
    border-bottom-color: #4b5563;
  }

  .filters-container {
    background-color: #374151;
  }

  .form-input {
    background-color: #374151;
    border-color: #4b5563;
    color: #e5e7eb;
  }

  .search-input {
    background-color: #374151;
    border-color: #4b5563;
    color: #e5e7eb;
  }
}
