/* CSS Custom Properties for Theming */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --bg-hover: #f0f4f8;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-muted: #868e96;
  --border-color: #dee2e6;
  --accent-color: #B8860B;
  --accent-hover: #9B7506;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  --shadow: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-active: 0 2px 4px rgba(0,0,0,0.2);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --bg-card: #2d2d2d;
  --bg-hover: #3a3a3a;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #888888;
  --border-color: #404040;
  --accent-color: #CC9933;
  --accent-hover: #B8860B;
  --shadow: 0 2px 4px rgba(0,0,0,0.3);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-active: 0 2px 4px rgba(0,0,0,0.5);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  min-height: 100vh;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-color);
  color: white;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 10px;
  left: 10px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: var(--bg-secondary);
  padding: 30px 0 40px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  box-shadow: var(--shadow);
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

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

.header-search .search-container {
  position: relative;
}

.header-search .search-input {
  width: 100%;
  padding: 20px 24px;
  font-size: 1.2rem;
  border: 3px solid var(--accent-color);
  border-radius: var(--border-radius);
  background-color: var(--bg-card);
  color: var(--text-primary);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.header-search .search-input:focus {
  outline: none;
  border-color: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.25);
  transform: translateY(-2px);
}

.header-search .search-input::placeholder {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.search-results-count {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: white;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.search-results-count.hidden {
  display: none;
}

.theme-toggle {
  position: absolute;
  top: 30px;
  right: 20px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  min-width: 50px;
  min-height: 50px;
  z-index: 10;
}

.theme-toggle:hover {
  background-color: var(--bg-hover);
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.theme-toggle:active {
  transform: scale(0.95);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  font-size: 0.9rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-secondary);
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '>';
  margin: 0 8px;
  color: var(--text-muted);
  font-weight: 400;
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition-fast);
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
}

.breadcrumb a:hover {
  color: var(--accent-hover);
  background-color: var(--bg-hover);
  text-decoration: underline;
}

.breadcrumb li:last-child span {
  color: var(--text-primary);
  font-weight: 500;
  padding: 4px 8px;
}

/* Usage Notes Section - Compact Design */
.usage-notes {
  background-color: var(--bg-secondary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.notes-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.note-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}

.note-item:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.note-item.warning {
  background-color: rgba(255, 193, 7, 0.15);
}

.note-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

.note-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Main Content */
main {
  padding: 40px 0;
  min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-description strong {
  color: var(--accent-color);
  font-weight: 600;
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 20px;
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-color);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Remove old search section styles as search is now in header */

/* Collapsible Filter Section */
.filter-section {
  margin-top: 20px;
  margin-bottom: 30px;
}

.filter-toggle {
  width: 100%;
  padding: 16px 24px;
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  margin-bottom: 20px;
}

.filter-toggle:hover {
  background-color: var(--bg-hover);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.filter-toggle-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.filter-toggle[aria-expanded="true"] .filter-toggle-icon {
  transform: rotate(180deg);
}

.filter-toggle[aria-expanded="true"] .filter-toggle-text {
  content: 'Hide Filters';
}

.filter-active-count {
  background-color: var(--accent-color);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  display: none;
}

.filter-active-count:not(:empty) {
  display: inline-block;
}

.filters-wrapper {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  transform-origin: top;
}

.filters-wrapper.collapsed {
  max-height: 0;
  padding: 0 24px;
  border-width: 0;
  margin-bottom: 0;
  opacity: 0;
  transform: scaleY(0);
}

/* Filter Section */
.filter-section h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
}

.filter-btn:hover {
  background-color: var(--bg-hover);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.filter-btn:active {
  transform: translateY(0);
}

/* Currency Filter Buttons */
.currency-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.currency-btn {
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}

.currency-btn:hover {
  background-color: var(--bg-hover);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.currency-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.currency-btn:active {
  transform: translateY(0);
}

/* Card Sections */
.card-section {
  margin-bottom: 60px;
  opacity: 1;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-section.hidden {
  display: none;
}

.card-section h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 12px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.subsection {
  margin-bottom: 35px;
}

.subsection h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 24px;
}

/* Payment Cards with Copy Icon */
.payment-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.payment-card::before {
  content: '📋';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
  z-index: 10;
}

.payment-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--accent-color);
  background-color: var(--bg-hover);
}

.payment-card:hover::before {
  opacity: 0.15;
}

.payment-card:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-active);
}

.payment-card.copied {
  border-color: var(--success-color);
  background-color: rgba(40, 167, 69, 0.1);
  animation: copySuccess 0.6s ease;
}

@keyframes copySuccess {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.payment-card.copied::before {
  content: '✅';
  opacity: 1;
  animation: checkmark 0.6s ease;
}

@keyframes checkmark {
  0% {
    transform: translate(-50%, -50%) scale(0) rotate(-180deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

/* Card Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card-brand {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card-type {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* Card Type Colors */
.card-type.success { 
  background-color: rgba(40, 167, 69, 0.2); 
  color: var(--success-color); 
}
.card-type.declined,
.card-type.lost_card,
.card-type.stolen_card,
.card-type.expired_card { 
  background-color: rgba(220, 53, 69, 0.2); 
  color: var(--danger-color); 
}
.card-type.insufficient_funds { 
  background-color: rgba(255, 193, 7, 0.2); 
  color: #856404; 
}
.card-type.incorrect_cvc { 
  background-color: rgba(255, 193, 7, 0.2); 
  color: #856404; 
}
.card-type.checking,
.card-type.current { 
  background-color: rgba(0, 123, 255, 0.2); 
  color: var(--accent-color); 
}
.card-type.savings { 
  background-color: rgba(40, 167, 69, 0.2); 
  color: var(--success-color); 
}
.card-type.3d_secure_required,
.card-type.3d_secure_optional,
.card-type.3d_secure_not_supported,
.card-type.3d_secure_unavailable,
.card-type.3d_secure_failed {
  background-color: rgba(23, 162, 184, 0.2);
  color: var(--info-color);
}
.card-type.processor_declined,
.card-type.gateway_rejected {
  background-color: rgba(220, 53, 69, 0.2);
  color: var(--danger-color);
}
.card-type.pay_in_4,
.card-type.pay_later {
  background-color: rgba(255, 0, 185, 0.2);
  color: #ff00b9;
}
.card-type.gift_card {
  background-color: rgba(255, 193, 7, 0.2);
  color: #856404;
}
.card-type.avs_y,
.card-type.avs_a {
  background-color: rgba(255, 193, 7, 0.2);
  color: #856404;
}
.card-type.avs_n,
.card-type.cvv_n {
  background-color: rgba(220, 53, 69, 0.2);
  color: var(--danger-color);
}
.card-type.recurring_fail,
.card-type.refund_fail,
.card-type.preauth_capture_fail,
.card-type.dispute_fraudulent,
.card-type.dispute_not_recognized,
.card-type.chargeback {
  background-color: rgba(220, 53, 69, 0.2);
  color: var(--danger-color);
}
.card-type.recurring_success,
.card-type.recurring_sca_exempt,
.card-type.refund_success,
.card-type.partial_refund,
.card-type.preauth_success,
.card-type.preauth_extended {
  background-color: rgba(40, 167, 69, 0.2);
  color: var(--success-color);
}

/* Card Number */
.card-number {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 2px;
  word-break: break-all;
}

/* Card Details */
.card-details {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.card-detail {
  font-family: 'Courier New', monospace;
  color: var(--text-secondary);
}

.card-description {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.country-flag {
  margin-left: 8px;
  font-size: 1.25rem;
}

/* Bank Account Cards */
.bank-card .card-number {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.bank-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}

.bank-details strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* International Banking Cards */
.international-bank-card .bank-info {
  display: grid;
  gap: 12px;
}

.bank-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bank-info-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.bank-info-value {
  font-family: 'Courier New', monospace;
  font-size: 1.125rem;
  color: var(--text-primary);
}

/* Cryptocurrency Cards */
.crypto-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.crypto-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

.crypto-address {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  word-break: break-all;
  line-height: 1.8;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  padding: 12px;
  border-radius: var(--border-radius-sm);
  margin: 12px 0;
}

/* Mobile Payment Cards */
.mobile-payment-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-payment-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

.token-value {
  font-family: 'Courier New', monospace;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 12px 0;
}

/* Webhook Cards */
.webhook-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.webhook-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

.webhook-url {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: var(--accent-color);
  text-decoration: none;
  display: block;
  margin: 12px 0;
}

.webhook-events {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.event-tag {
  background-color: var(--bg-secondary);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* API Error Cards */
.error-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.error-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--danger-color);
}

.error-code {
  font-family: 'Courier New', monospace;
  font-size: 1.25rem;
  color: var(--danger-color);
  font-weight: bold;
  margin-bottom: 8px;
}

.error-status {
  display: inline-block;
  background-color: rgba(220, 53, 69, 0.2);
  color: var(--danger-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

/* Address Cards */
.address-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.address-card::before {
  content: '📋';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
}

.address-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

.address-card:hover::before {
  opacity: 0.15;
}

.address-card.copied {
  border-color: var(--success-color);
  background-color: rgba(40, 167, 69, 0.1);
}

.address-card.copied::before {
  content: '✅';
  opacity: 1;
}

.address-line {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

/* Copy Tooltip */
.copy-tooltip {
  position: fixed;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
  box-shadow: var(--shadow-hover);
}

.copy-tooltip.show {
  opacity: 1;
}

.tooltip-icon {
  font-size: 1rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: var(--shadow-hover);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast.show {
  transform: translateX(0);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
  }
  to {
    transform: translateX(0);
  }
}

.toast.error {
  background-color: var(--danger-color);
}

/* Keyboard Shortcuts */
.keyboard-shortcuts {
  margin-top: 40px;
  padding: 20px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.keyboard-shortcuts summary {
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 12px;
  list-style: none;
}

.keyboard-shortcuts summary::-webkit-details-marker {
  display: none;
}

.shortcuts-content {
  padding: 20px;
}

.shortcuts-content dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.shortcuts-content dt {
  text-align: right;
}

.shortcuts-content kbd {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 4px 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  box-shadow: 0 2px 0 var(--border-color);
}

.shortcuts-content dd {
  color: var(--text-secondary);
  margin: 0;
}

/* Test Amounts Grid */
.test-amounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.test-amount-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.test-amount-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.amount-value {
  font-family: 'Courier New', monospace;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.amount-result {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.amount-result.success {
  background-color: rgba(40, 167, 69, 0.2);
  color: var(--success-color);
}

.amount-result.declined,
.amount-result.insufficient-funds,
.amount-result.avs-fail {
  background-color: rgba(220, 53, 69, 0.2);
  color: var(--danger-color);
}

.amount-result.high-risk {
  background-color: rgba(255, 193, 7, 0.2);
  color: #856404;
}

.amount-description {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 40px 0 20px;
  margin-top: 80px;
  font-size: 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.footer-section a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-section a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
  transform: translateX(2px);
}

/* Security Notice */
.security-notice {
  margin-top: 12px;
  padding: 12px;
  background-color: rgba(40, 167, 69, 0.1);
  border-left: 3px solid var(--success-color);
  border-radius: var(--border-radius-sm);
}

.security-notice p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Social Links */
.social-links {
  margin-bottom: 16px;
}

.social-links a {
  padding: 8px 12px;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  margin: 4px 0;
  display: block;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--bg-hover);
  border-color: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.supported-by {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.supported-by small {
  color: var(--text-muted);
  font-style: italic;
}

/* Enhanced Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.footer-bottom-left,
.footer-bottom-right {
  flex: 1;
  min-width: 200px;
}

.footer-bottom-right {
  text-align: right;
}

.footer-nav {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--accent-color);
  background-color: var(--bg-hover);
  text-decoration: underline;
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

.version {
  display: inline-block;
  background-color: var(--bg-card);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.875rem;
  margin-left: 8px;
  border: 1px solid var(--border-color);
}

/* Powered by U link styling */
.powered-by-u {
  color: #FFD700 !important; /* Gold color */
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.powered-by-u:hover {
  color: #FFA500 !important; /* Orange-gold on hover */
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(255,215,0,0.3);
  transform: translateY(-1px);
}

.powered-by-u strong {
  font-weight: 900;
  font-size: 1.1em;
}

/* Payment Method Filters */
.payment-method-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.method-btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
}

.method-btn:hover {
  background-color: var(--bg-hover);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.method-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

/* More Currencies Dropdown */
.more-currencies {
  width: 100%;
  margin-top: 12px;
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px;
}

.more-currencies summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--text-secondary);
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.more-currencies summary::-webkit-details-marker {
  display: none;
}

.more-currencies summary::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.more-currencies[open] summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.all-currencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 16px;
  max-height: 400px;
  overflow-y: auto;
  padding: 8px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
}

/* Custom scrollbar for currencies grid */
.all-currencies-grid::-webkit-scrollbar {
  width: 8px;
}

.all-currencies-grid::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-radius: 4px;
}

.all-currencies-grid::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.all-currencies-grid::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.currency-btn.compact {
  padding: 8px 12px;
  font-size: 0.875rem;
  min-height: 36px;
}

/* Bank Transfer Cards */
.bank-transfer-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.bank-transfer-details {
  margin: 16px 0;
}

.transfer-detail {
  font-family: 'Courier New', monospace;
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

/* Digital Wallet Cards */
.digital-wallet-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.wallet-value {
  font-family: 'Courier New', monospace;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 16px 0;
  word-break: break-all;
}

/* BNPL Cards */
.bnpl-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.bnpl-details {
  margin: 16px 0;
}

.bnpl-email,
.bnpl-phone {
  font-family: 'Courier New', monospace;
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

/* Regional Method Cards */
.regional-method-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.method-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 12px 0;
  font-style: italic;
}

.method-details {
  margin: 16px 0;
}

.method-item {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  word-break: break-all;
}

/* Region Sections */
.region-section {
  margin-bottom: 40px;
}

.region-section h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 8px;
}

/* Hidden elements for filtering */
.hidden {
  display: none !important;
}

/* Focus Styles for Accessibility */
*:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Header Mobile */
  header {
    padding: 20px 0 30px;
  }
  
  header h1 {
    font-size: 2.25rem;
    margin-bottom: 6px;
  }
  
  .subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .theme-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px 14px;
    font-size: 1.25rem;
    min-width: 44px;
    min-height: 44px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .header-search {
    max-width: 100%;
  }
  
  .header-search .search-input {
    padding: 16px 20px;
    font-size: 1rem;
    border-width: 2px;
  }
  
  .header-search .search-input::placeholder {
    font-size: 0.95rem;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .hero-feature {
    font-size: 0.95rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  /* Notes strip mobile */
  .notes-strip {
    flex-direction: column;
    gap: 12px;
  }
  
  .note-item {
    width: 100%;
    justify-content: center;
  }
  .container {
    padding: 0 16px;
  }
  
  header h1 {
    font-size: 2.5rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-buttons {
    justify-content: center;
  }
  
  .card-details {
    flex-direction: column;
    gap: 8px;
  }
  
  .bank-details {
    grid-template-columns: 1fr;
  }
  
  /* Footer mobile styles */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-bottom-left,
  .footer-bottom-right {
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
    gap: 12px;
  }
  
  .social-links a {
    padding: 12px 16px;
    margin: 6px 0;
  }
  
  .breadcrumb {
    justify-content: center;
  }
  
  .toast {
    right: 10px;
    left: 10px;
    transform: translateY(-100px);
  }
  
  .toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1.125rem;
  }
  
  /* Keep theme toggle in top right corner */
  .theme-toggle {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    padding: 8px 12px !important;
    font-size: 1.2rem !important;
    min-width: 40px !important;
    min-height: 40px !important;
    z-index: 10 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  }
  
  .card-section h2 {
    font-size: 1.875rem;
  }
  
  .payment-card,
  .address-card,
  .crypto-card,
  .webhook-card,
  .error-card {
    padding: 20px;
  }
  
  .card-number {
    font-size: 1.25rem;
  }
  
  .card-details {
    font-size: 1rem;
  }
}

/* Print Styles */
@media print {
  /* Hide interactive elements */
  header .header-search,
  .theme-toggle,
  .filter-section,
  .usage-notes,
  .keyboard-shortcuts,
  footer .social-links,
  footer .footer-nav,
  .breadcrumb-nav {
    display: none !important;
  }
  
  /* Show essential header info */
  header {
    padding: 20px 0;
    border-bottom: 2px solid #000;
  }
  
  header h1 {
    font-size: 24pt;
    color: #000;
  }
  
  .subtitle {
    font-size: 14pt;
    color: #333;
  }
  
  /* Keep footer minimal */
  footer {
    border-top: 2px solid #000;
    padding: 20px 0 10px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-section:last-child {
    display: none;
  }
  
  /* Card layout for print */
  .card-section {
    page-break-inside: avoid;
    margin-bottom: 30px;
  }
  
  .card-section h2 {
    font-size: 18pt;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
  }
  
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .payment-card,
  .address-card,
  .crypto-card {
    break-inside: avoid;
    border: 1px solid #000;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: none;
    background: #fff !important;
  }
  
  .card-number {
    font-size: 14pt;
    font-weight: bold;
  }
  
  .card-details {
    font-size: 11pt;
  }
  
  /* Remove hover effects and animations */
  * {
    transition: none !important;
    animation: none !important;
  }
  
  /* Basic styling */
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
    margin: 0;
  }
  
  /* Page layout */
  @page {
    margin: 1in;
    size: letter;
  }
  
  .container {
    max-width: none;
    padding: 0;
  }
  
  /* Typography */
  h1, h2, h3 {
    color: #000;
    page-break-after: avoid;
  }
  
  /* Links */
  a {
    color: #000;
    text-decoration: underline;
  }
  
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }
}

/* ================================================================
   BRAND NEW FOOTER DESIGN 2025 - REDESIGNED FROM SCRATCH
   ================================================================ */

/* Main Footer Container */
.new-footer-design {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border-top: 3px solid var(--accent-color);
  margin-top: 60px;
  padding: 40px 0 0 0;
  position: relative;
}

.new-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative; /* For copyright section positioning */
}

/* Main Footer Grid */
.new-footer-main {
  margin-bottom: 30px;
}

.new-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer Headings */
.new-footer-heading {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

/* Disclaimer Box */
.new-disclaimer-box {
  background: var(--bg-hover);
  padding: 20px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--danger-color);
}

.new-disclaimer-text {
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.new-security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
}

.new-security-icon {
  font-size: 1rem;
}

.new-security-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Stats Column */
.new-stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-stat-item {
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
}

.new-stat-item:before {
  content: "▶";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.new-stat-item:last-child {
  border-bottom: none;
}

/* Resources Column */
.new-resources-list,
.new-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-resource-item,
.new-social-item {
  margin-bottom: 10px;
}

.new-resource-link,
.new-social-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  display: inline-block;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.new-resource-link:hover,
.new-social-link:hover {
  color: var(--accent-color);
  background: var(--bg-hover);
  border-color: var(--accent-color);
  transform: translateX(4px);
}

/* Support Badge */
.new-support-badge {
  margin-top: 20px;
  padding: 12px;
  background: var(--bg-card);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
}

.new-support-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
  text-align: center;
}

/* Copyright Section - Simplified & Centered */
.new-copyright-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  margin-top: 20px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  position: relative;
}

.new-copyright-centered {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.new-copyright-line-1,
.new-copyright-line-2 {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.new-copyright-line-1 {
  margin-bottom: 8px;
}

.new-brand-name {
  color: var(--text-primary);
  font-weight: 600;
}

/* Golden U Link - The Star of the Show! */
.new-golden-u-link {
  color: #FFD700 !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  font-size: 1.2em !important;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.4) !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  position: relative !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1)) !important;
}

.new-golden-u-link:hover {
  color: #FFA500 !important;
  text-shadow: 0 3px 8px rgba(255, 215, 0, 0.7) !important;
  transform: translateY(-2px) scale(1.1) !important;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2)) !important;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
}

.new-golden-u-link strong {
  font-weight: 900 !important;
  letter-spacing: 1px !important;
}

/* Creator Link */
.new-creator-link {
  color: var(--accent-color) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: var(--transition-fast) !important;
}

.new-creator-link:hover {
  color: var(--accent-hover) !important;
  text-decoration: underline !important;
}

/* Version Badge */
.new-version-badge {
  background: var(--accent-color);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 8px;
}

/* Removed footer navigation - simplified design */

/* Responsive Design */
@media (max-width: 768px) {
  .new-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  /* Center all footer content on mobile */
  .new-footer-heading {
    display: block;
    text-align: center;
    margin: 0 auto 16px auto;
    width: fit-content;
  }
  
  .new-stats-list,
  .new-resources-list,
  .new-social-list {
    text-align: center;
  }
  
  .new-stat-item {
    padding-left: 0;
    text-align: center;
  }
  
  .new-stat-item:before {
    display: none; /* Hide arrow on mobile */
  }
  
  .new-resource-link,
  .new-social-link {
    display: inline-block;
    margin: 0 auto;
  }
  
  .new-disclaimer-box,
  .new-disclaimer-text,
  .new-security-badge,
  .new-support-badge,
  .new-support-text {
    text-align: center;
  }
  
  .new-security-badge {
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
  }
  
  /* Copyright already centered - no changes needed */
  
  .new-golden-u-link {
    font-size: 1.4em !important;
  }
}

/* Dark Theme Adjustments */
[data-theme="dark"] .new-footer-design {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
}

[data-theme="dark"] .new-disclaimer-box {
  background: var(--bg-hover);
}

[data-theme="dark"] .new-security-badge,
[data-theme="dark"] .new-support-badge {
  background: var(--bg-hover);
}

[data-theme="dark"] .new-copyright-section {
  background: var(--bg-secondary);
}

/* Special Animation for the Golden U */
.new-golden-u-link {
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.new-golden-u-link:hover {
  animation: none;
}