@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap";

/* src/styles.scss */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A0732A;
  --gold-muted: #8B6914;
  --bg-primary: #0A0A0B;
  --bg-secondary: #111113;
  --bg-card: #16161A;
  --bg-card-hover: #1E1E24;
  --bg-surface: #1A1A20;
  --bg-input: #1C1C22;
  --border: #2A2A32;
  --border-light: #38383F;
  --border-gold: rgba(201, 168, 76, 0.35);
  --text-primary: #F0EFE8;
  --text-secondary:#A8A6A0;
  --text-muted: #6A6870;
  --text-gold: #C9A84C;
  --text-inverse: #0A0A0B;
  --success: #4ADE80;
  --warning: #FBBF24;
  --error: #F87171;
  --info: #60A5FA;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --nav-height: 72px;
  --max-width: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 24px rgba(201, 168, 76, 0.15);
  --glow-gold: 0 0 40px rgba(201, 168, 76, 0.25);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 1rem;
}
p {
  color: var(--text-secondary);
  line-height: 1.7;
}
a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--gold-light);
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
}
.text-gold {
  color: var(--gold);
}
.text-muted {
  color: var(--text-muted);
}
.text-secondary {
  color: var(--text-secondary);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--gold {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.badge--success {
  background: rgba(74, 222, 128, 0.1);
  color: var(--success);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.badge--error {
  background: rgba(248, 113, 113, 0.1);
  color: var(--error);
  border: 1px solid rgba(248, 113, 113, 0.2);
}
.badge--info {
  background: rgba(96, 165, 250, 0.1);
  color: var(--info);
  border: 1px solid rgba(96, 165, 250, 0.2);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
}
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--primary {
  background:
    linear-gradient(
      135deg,
      var(--gold) 0%,
      var(--gold-dark) 100%);
  color: #0A0A0B;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}
.btn--primary:hover {
  background:
    linear-gradient(
      135deg,
      var(--gold-light) 0%,
      var(--gold) 100%);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.45);
  transform: translateY(-1px);
  color: #0A0A0B;
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.btn--secondary:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-light);
}
.btn--danger {
  background: rgba(248, 113, 113, 0.1);
  color: var(--error);
  border: 1px solid rgba(248, 113, 113, 0.25);
}
.btn--danger:hover {
  background: rgba(248, 113, 113, 0.2);
}
.btn--sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}
.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}
.btn--icon {
  padding: 10px;
  aspect-ratio: 1;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card--hover:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.card__body {
  padding: 24px;
}
.card__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.card__footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control::placeholder {
  color: var(--text-muted);
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
.form-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A8A6A0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
select.form-control option {
  background: var(--bg-input);
  color: var(--text-primary);
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.divider--gold {
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--border-gold),
      transparent);
}
.skeleton {
  background:
    linear-gradient(
      90deg,
      var(--bg-card) 25%,
      var(--bg-card-hover) 50%,
      var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.spinner--sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}
.spinner--lg {
  width: 48px;
  height: 48px;
  border-width: 4px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.accent-line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--gold-light));
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .accent-line {
  margin: 0 auto 16px;
  display: block;
}
.section-header .overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  animation: slide-in 0.3s ease;
}
.toast--success {
  background: var(--bg-card);
  border-left: 3px solid var(--success);
  color: var(--success);
}
.toast--error {
  background: var(--bg-card);
  border-left: 3px solid var(--error);
  color: var(--error);
}
.toast--info {
  background: var(--bg-card);
  border-left: 3px solid var(--info);
  color: var(--info);
}
@keyframes slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.tabs .tab {
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}
.tabs .tab:hover {
  color: var(--text-secondary);
}
.tabs .tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.page-wrapper {
  min-height: calc(100vh - var(--nav-height));
  padding-top: var(--nav-height);
}
.page-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.page-header .overline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.page-header p {
  margin-top: 8px;
  max-width: 560px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.sidebar-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .sidebar-layout {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.4s ease forwards;
}
@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.15);
  }
}
.ads-sidebar {
  width: 160px;
  min-height: 600px;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-align: center;
}
@media (max-width: 1100px) {
  .ads-sidebar {
    display: none;
  }
}
.ads-leaderboard {
  width: 100%;
  height: 90px;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin: 24px 0;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags .tag {
  padding: 4px 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.empty-state {
  text-align: center;
  padding: 80px 24px;
}
.empty-state .empty-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  opacity: 0.4;
}
.empty-state h3 {
  margin-bottom: 12px;
}
.empty-state p {
  max-width: 400px;
  margin: 0 auto 24px;
}
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.step-indicator .step {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.step-indicator .step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: var(--bg-surface);
  border: 2px solid var(--border);
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.step-indicator .step__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.step-indicator .step.active .step__num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}
.step-indicator .step.active .step__label {
  color: var(--gold);
}
.step-indicator .step.done .step__num {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--border-gold);
  color: var(--gold);
}
.step-indicator .step.done .step__label {
  color: var(--text-secondary);
}
.step-indicator .step-line {
  flex: 1;
  min-width: 32px;
  height: 1px;
  background: var(--border);
  margin: 0 8px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
