/* DECLOUD — Dark Theme */

:root {
  --bg-primary: #0E0F10;
  --bg-secondary: #212427;
  --bg-tertiary: #181A1D;
  --bg-elevated: #2A2D31;
  
  --primary: #C3CFE2;
  --primary-light: #D4DEF0;
  --secondary: #B0C6EA;
  --accent: #99BEF9;
  --accent-bright: #A8C9FF;
  
  --gradient-primary: linear-gradient(135deg, #C3CFE2 0%, #99BEF9 100%);
  --gradient-glow: radial-gradient(circle, rgba(153, 190, 249, 0.12) 0%, transparent 70%);
  
  --text-primary: #F5F7FA;
  --text-secondary: #B0B8C4;
  --text-muted: #6B7280;
  --text-dark: #0E0F10;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  
  --header-height: 72px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(153, 190, 249, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 190, 249, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.bg-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-glow);
  top: -200px;
  right: -200px;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(195, 207, 226, 0.08) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Azeret Mono', monospace;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
}

.nav-island {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 24px;
  background: rgba(33, 36, 39, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Azeret Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-logo .logo-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.nav-logo .logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(153, 190, 249, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-social img {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
  filter: brightness(0) invert(1);
}

.nav-social:hover {
  background: var(--bg-elevated);
}

.nav-social:hover img {
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 16px;
  right: 16px;
  background: rgba(33, 36, 39, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-link {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
}

.mobile-link:hover {
  color: var(--accent);
  background: rgba(153, 190, 249, 0.1);
}

.mobile-socials {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border-color);
}

.mobile-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
}

.mobile-socials img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Azeret Mono', monospace;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-dark);
  box-shadow: var(--shadow-md), 0 0 20px rgba(153, 190, 249, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(153, 190, 249, 0.25);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: calc(100vh - 200px);
  padding-top: calc(var(--header-height) + 40px);
}

.page {
  animation: pageIn 0.5s ease forwards;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: 'Azeret Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 6px 14px;
  background: rgba(153, 190, 249, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; }

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero */
.hero {
  padding: 120px 0 80px;
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Azeret Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  padding: 8px 16px;
  background: rgba(153, 190, 249, 0.08);
  border: 1px solid rgba(153, 190, 249, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-label .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.stat { text-align: center; }

.stat-value {
  font-family: 'Azeret Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Cards */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-light);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* Role Cards */
.role-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.role-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.role-card.creator::before { background: linear-gradient(90deg, #8B5CF6 0%, #A78BFA 100%); }
.role-card.validator::before { background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%); }
.role-card.trainer::before { background: linear-gradient(90deg, #10B981 0%, #34D399 100%); }

.role-number {
  font-family: 'Azeret Mono', monospace;
  font-size: 4rem;
  font-weight: 700;
  color: var(--bg-elevated);
  position: absolute;
  top: 20px;
  right: 30px;
}

.role-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.role-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.role-features { list-style: none; }

.role-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.role-features li::before {
  content: '→';
  color: var(--accent);
  font-weight: 600;
}

/* Code Block */
.code-block {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-dot:nth-child(1) { background: #FF5F57; }
.code-dot:nth-child(2) { background: #FFBD2E; }
.code-dot:nth-child(3) { background: #28CA42; }

.code-title {
  margin-left: auto;
  font-family: 'Azeret Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.code-content {
  padding: 20px;
  overflow-x: auto;
}

.code-content pre {
  font-family: 'Azeret Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.code-content .comment { color: #6B7280; }
.code-content .keyword { color: #F472B6; }
.code-content .string { color: #34D399; }
.code-content .function { color: #99BEF9; }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand { max-width: 300px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Azeret Mono', monospace;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-logo .logo-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-family: 'Azeret Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.network-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Azeret Mono', monospace;
  font-size: 0.8rem;
  color: var(--accent);
  padding: 6px 12px;
  background: rgba(153, 190, 249, 0.1);
  border: 1px solid rgba(153, 190, 249, 0.25);
  border-radius: var(--radius-full);
}

.network-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Utilities */
.text-center { text-align: center; }
.mt-3 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }

/* ═══════════════════════════════════════════════════════════════
   LIVE TRACKER
   ═══════════════════════════════════════════════════════════════ */

.live-tracker-section {
  padding: 60px 0;
}

.tracker-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tracker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}

.tracker-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Azeret Mono', monospace;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
  50% { opacity: 0.7; transform: scale(1.1); box-shadow: 0 0 20px rgba(16, 185, 129, 0.8); }
}

.tracker-network {
  font-family: 'Azeret Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  padding: 4px 10px;
  background: rgba(153, 190, 249, 0.1);
  border: 1px solid rgba(153, 190, 249, 0.25);
  border-radius: var(--radius-full);
}

.tracker-list {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}

.tracker-list::-webkit-scrollbar {
  width: 6px;
}

.tracker-list::-webkit-scrollbar-track {
  background: transparent;
}

.tracker-list::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}

.tracker-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tracker-loader {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border-color);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Event Item */
.tracker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition-fast);
  animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(-10px);
}

.tracker-item:hover {
  background: var(--bg-elevated);
}

.tracker-item:last-child {
  border-bottom: none;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* New item flash animation */
.tracker-item.new {
  animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             flashNew 0.6s ease-out;
}

@keyframes flashNew {
  0% { background: rgba(153, 190, 249, 0.15); }
  100% { background: transparent; }
}

.tracker-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.tracker-icon.create { background: rgba(139, 92, 246, 0.15); }
.tracker-icon.claim { background: rgba(245, 158, 11, 0.15); }
.tracker-icon.join { background: rgba(16, 185, 129, 0.15); }
.tracker-icon.submit { background: rgba(153, 190, 249, 0.15); }
.tracker-icon.reward { background: rgba(236, 72, 153, 0.15); }

.tracker-content {
  flex: 1;
  min-width: 0;
}

.tracker-event-name {
  font-family: 'Azeret Mono', monospace;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.tracker-event-sig {
  font-family: 'Azeret Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tracker-event-sig a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.tracker-event-sig a:hover {
  color: var(--accent);
}

.tracker-time {
  font-family: 'Azeret Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}

.tracker-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tracker-status.success { background: #10B981; }
.tracker-status.failed { background: #EF4444; }

/* No events state */
.tracker-no-events {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tracker-no-events-icon {
  font-size: 2rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main { flex-direction: column; gap: 40px; }
  .footer-brand { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .hero { padding: 80px 0 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .section { padding: 60px 0; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-island { padding: 10px 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .card { padding: 24px; }
  .role-card { padding: 28px; }
  .role-number { font-size: 3rem; }
}

.card-icon svg {
  stroke: var(--text-dark);
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Раскрашиваем иконки в Трекере в зависимости от типа события */
.tracker-icon svg {
  width: 20px;
  height: 20px;
}

/* Каждому типу события — свой яркий цвет иконки */
.tracker-icon.create svg { stroke: #8B5CF6; }
.tracker-icon.claim svg { stroke: #F59E0B; }
.tracker-icon.join svg { stroke: #10B981; }
.tracker-icon.submit svg { stroke: #99BEF9; }
.tracker-icon.reward svg { stroke: #EC4899; }

/* Стандартная иконка (Transaction) */
.tracker-icon:not([class*=' ']) svg { stroke: var(--text-secondary); }

/* Стиль для пустой корзины в трекере */
.tracker-no-events-icon svg {
  stroke: var(--accent);
  opacity: 0.5;
  width: 48px;
  height: 48px;
}