/* Shilling Shared Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #007080;
  --primary-dark: #005a66;
  --secondary: #ffd700;
  --secondary-dark: #ccac00;
  --text-dark: #0a1a1a;
  --text-light: #4a5a5a;
  --bg-dark: #0a1520;
  --bg-card: #0d1f2d;
  --success: #00c853;
  --chart-green: #00ff88;
  --danger: #ef4444;
  --border: #1a3040;
}

/* Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg-dark);
  color: white;
  min-height: 100vh;
  line-height: 1.6;
}

/* Navigation */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 112, 128, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-cta {
  background: var(--secondary) !important;
  color: var(--text-dark) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--secondary-dark) !important;
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 14px;
}

.nav-cart:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cart-count {
  background: var(--secondary);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--secondary);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

/* Monospace Font */
.mono {
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

/* Common Cards */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

.stat-value.green {
  color: var(--chart-green);
}

.stat-value.gold {
  color: var(--secondary);
}

.stat-subtext {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  margin-top: 4px;
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav {
    padding: 12px 20px;
  }

  .nav-links a:not(.nav-cta):not(.nav-cart) {
    display: none;
  }
}
