:root {
  --gold-primary: #f59e0b;
  --gold-secondary: #fbbf24;
  --gold-dark: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.3);
  --gold-glow-strong: rgba(245, 158, 11, 0.5);
  --gold-subtle: rgba(245, 158, 11, 0.08);
  --gold-border: rgba(245, 158, 11, 0.25);
  --gold-gradient: linear-gradient(135deg, #f59e0b, #fbbf24, #d97706);
}

#gold-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.gold-dashboard {
  position: relative;
  z-index: 1;
}

.gold-dashboard main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.gold-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.gold-nav .nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.15rem;
}

.gold-nav .nav-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-gold 2s ease-in-out infinite;
}

.gold-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gold-nav .nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.gold-nav .nav-links a:hover {
  color: var(--gold-primary);
  background: var(--gold-subtle);
}

.gold-nav .nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-back:hover {
  color: var(--gold-primary);
  border-color: var(--gold-border);
}

.gold-hero-section {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.gold-hero-section .welcome-text {
  font-size: 0.95rem;
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.gold-hero-section h1 {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% 100%;
}

.gold-hero-section .hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0 3rem;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--gold-glow);
  border-color: var(--gold-border);
}

.stat-card .stat-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.2;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.featured-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 191, 36, 0.03));
  border: 1px solid var(--gold-border);
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.featured-card:hover {
  box-shadow: 0 8px 32px var(--gold-glow);
  transform: translateY(-3px);
}

.featured-badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  animation: pulse-gold 2s ease-in-out infinite;
}

.featured-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.featured-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.featured-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.featured-left h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.featured-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.featured-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  flex-shrink: 0;
}

.featured-meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .featured-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .featured-right {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
}

.content-section {
  margin-bottom: 3.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-header h2 .gold-line {
  display: inline-block;
  width: 3rem;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin-left: 0.5rem;
}

.content-controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}

.filter-group {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold-primary);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  font-weight: 600;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 320px;
}

.search-box input {
  width: 100%;
  padding: 0.55rem 1rem 0.55rem 2.4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-box input:focus {
  border-color: var(--gold-primary);
}

.search-box .search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  opacity: 0.5;
  pointer-events: none;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.content-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
}

.content-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px var(--gold-glow);
  border-color: var(--gold-border);
}

.content-card .card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.content-card .card-icon {
  font-size: 2rem;
  line-height: 1;
}

.content-card .new-badge {
  padding: 0.15rem 0.5rem;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-gold 2s ease-in-out infinite;
}

.content-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.content-card .card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.content-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.card-tag {
  padding: 0.2rem 0.55rem;
  background: var(--gold-subtle);
  color: var(--gold-primary);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 1rem;
  border: 1px solid var(--gold-border);
}

.content-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--glass-border);
}

.card-info {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.no-results .no-results-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

.changelog-section {
  margin-bottom: 3.5rem;
}

.toolbox-section {
  margin-bottom: 3.5rem;
}

.toolbox-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.tool-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.tool-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.tool-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

.tool-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.tool-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.tool-select,
.tool-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.tool-select:focus,
.tool-input:focus {
  border-color: var(--gold-primary);
}

.tool-textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: 'Courier New', monospace;
  resize: vertical;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.tool-textarea:focus {
  border-color: var(--gold-primary);
}

.tool-textarea.output {
  background: rgba(0, 0, 0, 0.4);
  color: var(--gold-secondary);
}

.tool-actions {
  display: flex;
  gap: 0.5rem;
}

.tool-btn {
  padding: 0.5rem 1.1rem;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tool-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--gold-glow);
}

.tool-btn.secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.tool-btn.secondary:hover {
  border-color: var(--gold-border);
  color: var(--gold-primary);
}

.tool-copy {
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 0.35rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  align-self: flex-end;
}

.tool-copy:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.tool-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.tool-row label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.tool-range {
  flex: 1;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.tool-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.tool-check {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.tool-check input {
  accent-color: var(--gold-primary);
}

.pwd-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  padding: 0.6rem 0.75rem;
}

.pwd-display code {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  color: var(--gold-secondary);
  word-break: break-all;
  letter-spacing: 0.03em;
}

.pwd-display .tool-copy {
  border: none;
  padding: 0.2rem 0.5rem;
  align-self: auto;
}

.pwd-strength {
  height: 4px;
  border-radius: 4px;
  transition: all 0.3s;
}

.pwd-strength.weak { background: #ef4444; }
.pwd-strength.medium { background: #f59e0b; }
.pwd-strength.strong { background: #22c55e; }
.pwd-strength.very-strong { background: linear-gradient(90deg, #22c55e, #06b6d4); }

.count-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.count-stat {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  padding: 0.6rem 0.4rem;
  text-align: center;
}

.count-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.2;
}

.count-lbl {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.color-preview {
  width: 100%;
  height: 60px;
  border-radius: 0.75rem;
  background: #f59e0b;
  border: 1px solid var(--glass-border);
  transition: background 0.3s;
}

.color-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.color-inputs label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-primary);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tool-color-picker {
  width: 100%;
  height: 36px;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  background: none;
  padding: 0;
}

.tool-color-picker::-webkit-color-swatch-wrapper { padding: 0; }
.tool-color-picker::-webkit-color-swatch {
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
}

.timer-display {
  font-family: 'Courier New', monospace;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px var(--gold-glow);
  line-height: 1.1;
}

.timer-label {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.timer-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.timer-sessions {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

.timer-sessions span {
  color: var(--gold-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .count-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .timer-display {
    font-size: 2.5rem;
  }
}

.changelog-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-primary), var(--gold-dark), transparent);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--gold-primary);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-glow-strong);
  animation: pulse-gold 2.5s ease-in-out infinite;
}

.timeline-item .tl-date {
  font-size: 0.75rem;
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.timeline-item .tl-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.timeline-item .tl-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.support-section {
  background: var(--glass-bg);
  border: 1px solid var(--gold-border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  margin-bottom: 3rem;
}

.support-section .support-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.support-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.support-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.support-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn-support.primary {
  background: var(--gold-gradient);
  color: #000;
  border: none;
}

.btn-support.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-support.secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-support.secondary:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.gold-footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--glass-border);
}

.gold-footer p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.6;
}

.gold-footer .footer-gold-line {
  width: 3rem;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin: 0 auto 0.75rem;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  text-align: center;
  padding: 2rem;
}

.access-gate .gate-content {
  max-width: 400px;
}

.access-gate .gate-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.access-gate h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.access-gate p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.access-gate a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  background: var(--gold-gradient);
  color: #000;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.access-gate a:hover {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gold-nav {
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }

  .gold-nav .nav-links {
    display: none;
  }

  .gold-hero-section {
    padding: 3rem 1rem 1.5rem;
  }

  .gold-hero-section h1 {
    font-size: 2rem;
  }

  .gold-dashboard main {
    padding: 0 1rem 2rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    max-width: none;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .support-section {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-section {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-card .stat-number {
    font-size: 1.5rem;
  }

  .gold-hero-section h1 {
    font-size: 1.6rem;
  }

  .filter-group {
    width: 100%;
  }

  .filter-btn {
    flex: 1;
    text-align: center;
    padding: 0.45rem 0.5rem;
    font-size: 0.8rem;
  }
}
