/* ==========================================================================
   CYBER-OBSIDIAN MODERN DESIGN SYSTEM - KISHANRESULT.COM
   ========================================================================== */

:root {
  --bg-dark: #05070c;
  --bg-dark-rgb: 5, 7, 12;
  --bg-card: rgba(10, 16, 28, 0.75);
  --bg-card-hover: rgba(15, 24, 42, 0.9);
  --border-glow: rgba(0, 255, 179, 0.15);
  --border-muted: rgba(255, 255, 255, 0.05);
  
  /* Neon Accents */
  --neon-mint: #00ffb3;
  --neon-cyan: #00f0ff;
  --neon-pink: #ff007f;
  --neon-purple: #9d00ff;
  
  /* Typography Colors */
  --text-main: #f9fafb;
  --text-muted: #8a99ad;
  --text-dark: #0c0f17;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--neon-mint) 0%, var(--neon-cyan) 100%);
  --grad-danger: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
  --grad-dark: linear-gradient(180deg, rgba(10, 16, 28, 0.95) 0%, rgba(5, 7, 12, 0.98) 100%);
  
  /* Dimensions & Shadows */
  --shadow-neon-cyan: 0 0 20px rgba(0, 240, 255, 0.15);
  --shadow-neon-pink: 0 0 20px rgba(255, 0, 127, 0.2);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

/* Base Resets & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255, 0, 127, 0.05) 0%, transparent 40%),
    linear-gradient(rgba(255,255,255,0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.007) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px; /* Space for sticky bottom navigation */
}

/* Typography Overrides */
h1, h2, h3, h4, .result-font {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 179, 0.2);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-mint);
}

/* ==========================================================================
   LAYOUT SHELL (App Container)
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Modern Card template */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-xl);
  padding: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-glow);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 255, 179, 0.05);
}

/* ==========================================================================
   APP HEADER
   ========================================================================== */
.app-hdr {
  text-align: center;
  padding: 24px 16px 12px;
  background: linear-gradient(180deg, var(--bg-dark) 60%, rgba(5, 7, 12, 0) 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.app-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.04em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.logo-icon {
  width: 32px;
  height: 32px;
  stroke: var(--neon-mint);
  stroke-width: 2;
  fill: none;
  filter: drop-shadow(0 0 8px rgba(0, 255, 179, 0.5));
}

.app-hdr .tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* ==========================================================================
   STOCK TICKER (Top declared items)
   ========================================================================== */
.ticker-wrap {
  width: 100%;
  background: rgba(0, 255, 179, 0.03);
  border-top: 1px solid rgba(0, 255, 179, 0.1);
  border-bottom: 1px solid rgba(0, 255, 179, 0.1);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-anim 25s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  margin-right: 32px;
  gap: 8px;
}

.ticker-item span.lbl {
  color: var(--text-muted);
  font-size: 11px;
}

.ticker-item span.res {
  color: var(--neon-mint);
  text-shadow: 0 0 8px rgba(0, 255, 179, 0.4);
}

.ticker-item span.wait {
  color: var(--neon-pink);
  text-shadow: 0 0 8px rgba(255, 0, 127, 0.4);
}

@keyframes ticker-anim {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   LIVE REFRESH / TIME BAR
   ========================================================================== */
.live-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-muted);
  font-size: 12px;
  font-weight: 600;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-mint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: var(--neon-mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-mint);
  animation: pulse-ring 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.refresh-action {
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

/* ==========================================================================
   HORIZONTAL CHIPS NAV / FILTER
   ========================================================================== */
.filter-tabs-container {
  position: relative;
  width: 100%;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.tab-chip {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-muted);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tab-chip:hover {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.tab-chip.active {
  background: var(--grad-primary);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: var(--shadow-neon-cyan);
}

/* ==========================================================================
   SPOTLIGHT HERO WIDGET
   ========================================================================== */
.hero-spotlight {
  padding: 24px;
  text-align: center;
  border: 1.5px solid rgba(0, 255, 179, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 255, 179, 0.07);
}

.hero-spotlight::before {
  background: var(--grad-primary);
}

.hero-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-badge.live {
  background: rgba(0, 255, 179, 0.1);
  color: var(--neon-mint);
  border: 1px solid rgba(0, 255, 179, 0.3);
  animation: pulse-glow 2s infinite;
}

.hero-badge.countdown {
  background: rgba(255, 0, 127, 0.1);
  color: var(--neon-pink);
  border: 1px solid rgba(255, 0, 127, 0.3);
  animation: pulse-glow-magenta 2s infinite;
}

.hero-title {
  font-size: clamp(22px, 6vw, 32px);
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 8px;
}

.hero-result {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(64px, 15vw, 84px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 10px 0;
  text-shadow: 0 10px 30px rgba(0, 255, 179, 0.2);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 179, 0.2); }
  50% { box-shadow: 0 0 15px rgba(0, 255, 179, 0.5); }
}

@keyframes pulse-glow-magenta {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 0, 127, 0.2); }
  50% { box-shadow: 0 0 15px rgba(255, 0, 127, 0.5); }
}

/* ==========================================================================
   2-COLUMN MOBILE GAME CARD GRID (100% DIFFERENT!)
   ========================================================================== */
.sec-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.sec-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-mint);
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.game-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 136px;
}

.game-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.game-card-name {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}

.game-card-time {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 6px;
  border-radius: 4px;
}

.game-card-result-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 10px;
}

.game-card-val {
  font-family: 'Space Grotesk', sans-serif;
}

.game-card-val.today {
  font-size: 28px;
  font-weight: 800;
  color: var(--neon-mint);
  text-shadow: 0 0 10px rgba(0, 255, 179, 0.25);
  line-height: 1;
}

.game-card-val.yesterday {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.2;
}

.game-card-val.wait {
  font-size: 11px;
  font-weight: 800;
  color: var(--neon-pink);
  border: 1px solid rgba(255, 0, 127, 0.3);
  background: rgba(255, 0, 127, 0.05);
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  animation: pulse-ring 1.5s infinite;
}

.game-card-label {
  font-size: 8px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.game-card-lnk-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 800;
  color: var(--neon-cyan);
  text-transform: uppercase;
  gap: 4px;
}

/* Responsive adjust grid */
@media (min-width: 580px) {
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   TABBED SINGLE GAME CHARTS (100% DIFFERENT!)
   ========================================================================== */
.chart-game-select {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.chart-game-select::-webkit-scrollbar {
  display: none;
}

.chart-game-chip {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.chart-game-chip.active {
  border-color: var(--neon-mint);
  color: var(--neon-mint);
  background: rgba(0, 255, 179, 0.04);
}

.chart-scroll-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-muted);
  margin-top: 10px;
}

.cyber-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  text-align: center;
}

.cyber-table th {
  background: rgba(10, 16, 28, 0.9);
  color: var(--neon-cyan);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  padding: 10px 8px;
  border: 1px solid var(--border-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.cyber-table td {
  padding: 10px 8px;
  border: 1px solid var(--border-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
}

.cyber-table td.date-cell {
  background: rgba(255, 255, 255, 0.01);
  color: var(--text-muted);
  font-weight: 700;
}

.cyber-table td.val-cell {
  color: var(--neon-mint);
  font-weight: 800;
}

.cyber-table td.empty-cell {
  color: var(--border-glow);
  opacity: 0.3;
}

/* ==========================================================================
   UTILITY CARDS (Rates, Notice, News)
   ========================================================================== */
.cyber-rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cyber-rate-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  transition: border-color 0.2s;
}

.cyber-rate-box:hover {
  border-color: rgba(255, 0, 127, 0.2);
}

.cyber-rate-box .lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.cyber-rate-box .val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--neon-pink);
  text-shadow: 0 0 8px rgba(255, 0, 127, 0.2);
}

.cyber-notice {
  border-left: 3px solid var(--neon-mint);
  background: rgba(0, 255, 179, 0.03);
  padding: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  white-space: pre-line;
}

.post-link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-link-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.post-link-card:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.02);
  transform: translateX(4px);
}

.post-link-card .title {
  font-size: 13px;
  font-weight: 600;
}

.post-link-card .date {
  font-size: 10px;
  color: var(--text-muted);
}

/* ==========================================================================
   APP BANNER & FLOATS
   ========================================================================== */
.play-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 16, 28, 0.95) 100%);
  border: 1px dashed rgba(255, 0, 127, 0.3);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.play-banner-desc strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.play-banner-desc span {
  font-size: 10px;
  color: var(--text-muted);
}

.play-banner-btn {
  background: var(--grad-danger);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-neon-pink);
  transition: transform 0.2s;
}

.play-banner-btn:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   MOBILE STICKY BOTTOM BAR (100% DIFFERENT!)
   ========================================================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 16, 28, 0.9);
  border-top: 1px solid var(--border-muted);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-around;
  padding: 10px 0 16px; /* Extra bottom padding for home indicator on iOS */
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  flex: 1;
}

.bottom-nav-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
  transition: all 0.2s ease;
}

.bottom-nav-item.active {
  color: var(--neon-mint);
}

.bottom-nav-item.active svg {
  stroke: var(--neon-mint);
  filter: drop-shadow(0 0 6px rgba(0, 255, 179, 0.6));
}

.bottom-nav-item:hover {
  color: var(--text-main);
}

/* Floating WhatsApp button tailored to cybertheme */
.wa-float-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: rgba(0, 255, 179, 0.1);
  border: 1px solid var(--neon-mint);
  color: var(--neon-mint);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 255, 179, 0.3);
  z-index: 999;
  transition: transform 0.2s, background-color 0.2s;
}

.wa-float-btn:hover {
  transform: scale(1.1);
  background: rgba(0, 255, 179, 0.2);
}

.wa-float-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ==========================================================================
   YEARLY MATRIX & STATIC PAGES styling
   ========================================================================== */
.yearly-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.yearly-year-btn-group {
  display: flex;
  gap: 6px;
}

.yearly-year-btn {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.yearly-year-btn.active {
  background: var(--neon-mint);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: var(--shadow-neon-cyan);
}

.heatmap-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-muted);
  scrollbar-width: thin;
}

.heatmap-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
  font-size: 11px;
  text-align: center;
}

.heatmap-table th {
  background: rgba(10, 16, 28, 0.9);
  color: var(--neon-cyan);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  padding: 8px 4px;
  border: 1px solid var(--border-muted);
}

.heatmap-table th.day-label {
  background: var(--neon-mint);
  color: var(--text-dark);
}

.heatmap-table td {
  padding: 6px 4px;
  border: 1px solid var(--border-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

.heatmap-table td.day-num-cell {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-weight: 700;
}

.heatmap-table td.res-cell {
  color: var(--neon-mint);
  font-weight: 800;
  font-size: 12px;
}

.heatmap-table td.empty-cell {
  color: rgba(255, 255, 255, 0.05);
}

/* Dynamic single-game selection grid list */
.cyber-game-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.cyber-game-link-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-muted);
  padding: 14px 10px;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.cyber-game-link-card:hover {
  border-color: var(--neon-mint);
  background: rgba(0, 255, 179, 0.02);
  transform: translateY(-2px);
}

.cyber-game-link-card strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-main);
}

.cyber-game-link-card span {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* Static page body styling */
.static-page-container {
  color: var(--text-main);
  line-height: 1.8;
  font-size: 14px;
}

.static-page-container h1 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--neon-mint);
}

.static-page-container p {
  margin-bottom: 16px;
}

.static-page-container strong {
  color: var(--neon-cyan);
}
