/* Tools Page CSS */

/* Tool Hero */
.tool-hero {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.tool-hero h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tool-hero h1 span {
  background: linear-gradient(to right, #fff, #6b7280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tool-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tool-hero {
    padding: 3rem 1.5rem;
  }
  .tool-hero h1 {
    font-size: 2.5rem;
  }
}

/* Search Section */
.tool-search-section {
  padding: 2rem 1.5rem 3rem;
  background: #0a0a0a;
}

.tool-search-container {
  max-width: 700px;
  margin: 0 auto;
}

.search-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.tool-search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  font-family: inherit;
  transition: all 0.2s;
}

.tool-search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.tool-search-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.tool-search-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tool-search-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.tool-search-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Search Options */
.search-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.search-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.search-option:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.search-option.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.search-option input {
  display: none;
}

.search-option span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.search-option.active span {
  color: #fff;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-item .stat-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Results Section */
.tool-results-section {
  padding: 0 1.5rem 3rem;
  background: #0a0a0a;
}

.tool-results-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Loading State */
.loading-indicator {
  display: none;
  text-align: center;
  padding: 2rem;
}

.loading-indicator.active {
  display: block;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Result Card */
.result-card {
  display: none;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(13, 13, 13, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.result-card.active {
  display: block;
}

.result-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.result-status.clean {
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.result-status.sanctioned {
  background: #f87171;
  box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.result-title {
  flex: 1;
}

.result-title h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.result-title p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  word-break: break-all;
}

.result-badge {
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.result-badge.clean {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.result-badge.sanctioned {
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
}

.result-body {
  padding: 1.5rem;
}

.result-clean-message {
  text-align: center;
  padding: 1rem;
}

.result-clean-message p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* Sanction Details */
.sanction-details {
  display: grid;
  gap: 1rem;
}

.detail-group {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-group h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.detail-group p {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.detail-group .detail-value {
  color: #fff;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 0.875rem;
  word-break: break-all;
}

.detail-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-group li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.detail-group li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Warning Box */
.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.warning-box svg {
  flex-shrink: 0;
  color: #f87171;
}

.warning-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Info Section */
.tool-info-section {
  padding: 3rem 1.5rem;
  background: #111;
}

.tool-info-container {
  max-width: 900px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.info-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
}

.info-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h3 svg {
  color: rgba(255, 255, 255, 0.5);
}

.info-card p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Disclaimer */
.tool-disclaimer {
  padding: 2rem 1.5rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-content p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Error State */
.error-message {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.error-message.active {
  display: block;
}

.error-message p {
  color: #f87171;
  font-size: 0.875rem;
}

/* Results List */
.results-list {
  margin-top: 1rem;
}

.result-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}

.result-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.result-item-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.result-item-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 0.25rem;
}

.result-item-badge.individual {
  background: rgba(168, 85, 247, 0.2);
  color: #a78bfa;
}

.result-item-badge.entity {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.result-item-name {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
}

.result-item-address {
  font-family: monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  word-break: break-all;
  margin-bottom: 0.25rem;
}

.result-item-program {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.result-item-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.result-item-nationality {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Sanction Details */
.sanction-details {
  display: grid;
  gap: 1rem;
}

.detail-group {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  padding: 1rem;
}

.detail-group h4 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.detail-group p {
  color: #fff;
  font-size: 0.9rem;
}

.detail-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-group ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.detail-group ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}

.detail-value {
  color: #fff !important;
}

/* Results Section Title */
.results-section-title {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Result Item Arrow */
.result-item-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  transition: transform 0.2s, color 0.2s;
}

.result-item:hover .result-item-arrow {
  color: rgba(255, 255, 255, 0.7);
  transform: translateX(3px);
}

/* Crypto Badge */
.result-item-badge.crypto {
  background: rgba(251, 146, 60, 0.2);
  color: #fb923c;
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.back-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Detail View */
.detail-view {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Detail Card */
.detail-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.detail-card.main-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
  border-color: rgba(239, 68, 68, 0.2);
}

.detail-card-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.detail-card-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Detail Field */
.detail-field {
  margin-top: 1rem;
}

.detail-field:first-child {
  margin-top: 0;
}

.detail-field label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.detail-value {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.detail-value.mono {
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
  font-size: 0.8125rem;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.75rem;
  border-radius: 0.375rem;
}

/* Blockchain Badge */
.blockchain-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(251, 146, 60, 0.2);
  color: #fb923c;
  border-radius: 0.25rem;
}

/* Detail List */
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-list li:last-child {
  border-bottom: none;
}

.detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
}

.detail-list li.more-items {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.detail-list li.more-items::before {
  content: "";
}

.detail-list.remarks li {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================
   Tools Index Page Styles
   ============================ */

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  grid-column: 1 / -1; /* Override parent grid */
}

@media (min-width: 480px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0;
  }
}

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

/* Tool Card */
.tool-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .tool-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

.tool-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .tool-card:hover {
    transform: translateY(-4px);
  }
}

.tool-card.featured {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.05));
  border-color: rgba(59, 130, 246, 0.25);
}

.tool-card.featured:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

.tool-card.api-card {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.05));
  border-color: rgba(168, 85, 247, 0.25);
}

.tool-card.api-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
}

/* Tool Card Badge */
.tool-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #000;
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .tool-card-badge {
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
  }
}

/* Tool Card Flag Icon (Emoji flags as main icon) */
.tool-card-flag-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .tool-card-flag-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

/* Tool Card Content */
.tool-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.375rem;
}

@media (min-width: 768px) {
  .tool-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}

.tool-card p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .tool-card p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

/* Tool Card Tags */
.tool-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .tool-card-tags {
    gap: 0.375rem;
    margin-bottom: 1rem;
  }
}

.tool-card-tags span {
  padding: 0.2rem 0.4rem;
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .tool-card-tags span {
    padding: 0.25rem 0.5rem;
    font-size: 0.6875rem;
  }
}

/* Tool Card CTA */
.tool-card-cta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
}

@media (min-width: 768px) {
  .tool-card-cta {
    gap: 0.5rem;
    font-size: 0.875rem;
  }
}

.tool-card-cta i {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

@media (min-width: 768px) {
  .tool-card-cta i {
    width: 16px;
    height: 16px;
  }
}

.tool-card:hover .tool-card-cta {
  color: #fff;
}

.tool-card:hover .tool-card-cta i {
  transform: translateX(4px);
}

/* ============================
   Promo Page Styles
   ============================ */

/* Hero Flag */
.tool-hero-flag {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Stats Section */
.tool-stats-section {
  padding: 2rem 1.5rem;
  background: #0a0a0a;
}

.tool-stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.tool-stat {
  text-align: center;
  min-width: 100px;
}

.tool-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tool-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .tool-stat-value {
    font-size: 2.25rem;
  }

  .tool-stats-container {
    gap: 3rem;
  }
}

/* Promo Content */
.promo-content {
  max-width: 800px;
  margin: 0 auto;
}

.promo-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.promo-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.promo-content p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Promo Tags */
.promo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.promo-tags span {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
}

/* Promo List */
.promo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promo-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-list li:last-child {
  border-bottom: none;
}

.promo-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  border-radius: 50%;
}

.promo-list li strong {
  color: #fff;
}
