/* Local Web Fonts */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/orbitron-v35-latin-regular.eot');
  src: url('../fonts/orbitron-v35-latin-regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/orbitron-v35-latin-regular.woff2') format('woff2'),
       url('../fonts/orbitron-v35-latin-regular.woff') format('woff'),
       url('../fonts/orbitron-v35-latin-regular.ttf') format('truetype'),
       url('../fonts/orbitron-v35-latin-regular.svg#Orbitron') format('svg');
}

@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/orbitron-v35-latin-700.eot');
  src: url('../fonts/orbitron-v35-latin-700.eot?#iefix') format('embedded-opentype'),
       url('../fonts/orbitron-v35-latin-700.woff2') format('woff2'),
       url('../fonts/orbitron-v35-latin-700.woff') format('woff'),
       url('../fonts/orbitron-v35-latin-700.ttf') format('truetype'),
       url('../fonts/orbitron-v35-latin-700.svg#Orbitron') format('svg');
}

@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/orbitron-v35-latin-900.eot');
  src: url('../fonts/orbitron-v35-latin-900.eot?#iefix') format('embedded-opentype'),
       url('../fonts/orbitron-v35-latin-900.woff2') format('woff2'),
       url('../fonts/orbitron-v35-latin-900.woff') format('woff'),
       url('../fonts/orbitron-v35-latin-900.ttf') format('truetype'),
       url('../fonts/orbitron-v35-latin-900.svg#Orbitron') format('svg');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin-regular.eot');
  src: url('../fonts/outfit-v15-latin-regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/outfit-v15-latin-regular.woff2') format('woff2'),
       url('../fonts/outfit-v15-latin-regular.woff') format('woff'),
       url('../fonts/outfit-v15-latin-regular.ttf') format('truetype'),
       url('../fonts/outfit-v15-latin-regular.svg#Outfit') format('svg');
}

@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/rajdhani-v17-latin-regular.eot');
  src: url('../fonts/rajdhani-v17-latin-regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/rajdhani-v17-latin-regular.woff2') format('woff2'),
       url('../fonts/rajdhani-v17-latin-regular.woff') format('woff'),
       url('../fonts/rajdhani-v17-latin-regular.ttf') format('truetype'),
       url('../fonts/rajdhani-v17-latin-regular.svg#Rajdhani') format('svg');
}


:root {
  --bg-color: #0f0f12;
  --panel-bg: #14141c;
  --sidebar-bg: #1a1a24;
  --text-color: #ffffff;
  --text-muted: #6c757d;
  --text-dim: #d1d1d6;
  --neon-cyan: #66fcf1;
  --neon-blue: #3498db;
  --neon-green: #2ecc71;
  --neon-red: #e74c3c;
  --neon-orange: #f39c12;
  --neon-yellow: #ffbc42;
  --neon-purple: #7209b7;
  --neon-pink: #ff007f;
  --border-glow: rgba(102, 252, 241, 0.15);
  --border-glow-blue: rgba(52, 152, 219, 0.15);
  --border-glow-red: rgba(231, 76, 60, 0.15);
  --border-glow-green: rgba(46, 204, 113, 0.15);
  --font-title: 'Orbitron', -apple-system, sans-serif;
  --font-body: 'Outfit', 'Rajdhani', -apple-system, sans-serif;
  --border-radius-lg: 12px;
  --border-radius-md: 8px;
  --border-radius-sm: 4px;
}

/* Base resets & Mobile First safeguards */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}

body {
  margin: 0;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  background: var(--bg-color);
  font-family: var(--font-body);
  color: var(--text-color);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection and scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #252530;
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: #353545;
}

/* Typo styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  letter-spacing: 2px;
  margin-top: 0;
}

h1 { font-size: clamp(24px, 6vw, 40px); }
h2 { font-size: clamp(18px, 4.5vw, 28px); }
h3 { font-size: clamp(16px, 3.5vw, 22px); }

/* Common components styling */
.square-coin-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--neon-yellow);
  border: 2px solid #cf9006;
  box-shadow: 0 0 8px rgba(255, 188, 66, 0.6);
  vertical-align: middle;
  margin-right: 6px;
  margin-top: -4px;
  border-radius: 50%;
}

.badge-dev {
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-yellow));
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: var(--border-radius-sm);
  margin-left: 6px;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(255, 0, 127, 0.5);
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
  vertical-align: middle;
  display: inline-block;
  font-family: var(--font-title);
}

.badge-helper {
  background: linear-gradient(45deg, var(--neon-green), var(--neon-cyan));
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: var(--border-radius-sm);
  margin-left: 6px;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(46, 204, 113, 0.5);
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
  vertical-align: middle;
  display: inline-block;
  font-family: var(--font-title);
}

/* Modals - Mobile First */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  padding: 12px;
  padding-top: calc(12px + env(safe-area-inset-top));
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  background: var(--panel-bg);
  border: 2px solid var(--neon-cyan);
  padding: 18px 16px;
  width: 100%;
  max-width: 450px;
  max-height: calc(90dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 0 30px rgba(102, 252, 241, 0.15);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .modal-content {
    padding: 26px 24px;
    transform: scale(0.85);
  }
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  touch-action: manipulation;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: #fff;
  border-color: var(--neon-cyan);
  background: rgba(102, 252, 241, 0.15);
}

.modal-title {
  font-family: var(--font-title);
  font-size: clamp(16px, 4.5vw, 20px);
  font-weight: 800;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  padding-right: 36px;
}

/* Instructions */
.instructions-list {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  margin: 0;
  padding: 0;
  list-style: none;
}

.instructions-list li {
  margin-bottom: 15px;
}

kbd {
  background: #2c2c35;
  border: 1px solid #444;
  padding: 2px 6px;
  border-radius: var(--border-radius-sm);
  font-size: 12px;
  color: #fff;
  font-family: monospace;
}

/* Buttons - Mobile First */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.btn {
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-title);
  font-size: clamp(13px, 3.4vw, 15px);
  font-weight: 700;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  box-sizing: border-box;
  touch-action: manipulation;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-start {
  background: var(--neon-green);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.35);
  color: #0b1d12;
  font-weight: 900;
}

.btn-start:hover, .btn-start:active {
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.55);
  background: #27ae60;
  color: #fff;
}

.btn-shop {
  background: linear-gradient(135deg, #a855f7, #7209b7);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
  font-weight: 900;
}

.btn-shop:hover, .btn-shop:active {
  box-shadow: 0 6px 22px rgba(168, 85, 247, 0.7);
  color: #fff;
}

.btn-info {
  background: #34495e;
  box-shadow: 0 4px 15px rgba(52, 73, 94, 0.3);
}

.btn-info:hover, .btn-info:active {
  box-shadow: 0 6px 20px rgba(52, 73, 94, 0.5);
  background: #2c3e50;
}

.btn-secondary {
  background: #2c3e50;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover, .btn-secondary:active {
  background: #34495e;
  border-color: var(--neon-cyan);
}

/* Forms */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.input-group label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.input-group input[type="text"],
.input-group input[type="password"] {
  background: #1a1a24;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: var(--border-radius-sm);
  font-family: inherit;
}

.input-group input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(102, 252, 241, 0.15);
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

.remember-me input {
  accent-color: var(--neon-cyan);
}

.error-msg {
  color: var(--neon-red);
  font-size: 13px;
  display: none;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════
   DSGVO COOKIE CONSENT BANNER & SETTINGS MODAL STYLES (NEON THEME)
   ══════════════════════════════════════════════════════════════════ */

/* Floating Trigger Button (Bottom Left) */
.cookie-trigger-btn {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: calc(16px + env(safe-area-inset-left));
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background: var(--panel-bg);
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(102, 252, 241, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  touch-action: manipulation;
}

.cookie-trigger-btn:hover,
.cookie-trigger-btn:active {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(102, 252, 241, 0.6);
  background: rgba(102, 252, 241, 0.15);
}

.cookie-trigger-btn:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 4px;
}

.cookie-trigger-btn .cookie-icon {
  width: 24px;
  height: 24px;
}

/* First-Layer Cookie Banner - Mobile First */
.cookie-banner.dsgvo-banner-v2 {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  bottom: -600px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 680px;
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(20, 20, 28, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 -10px 40px rgba(102, 252, 241, 0.25);
  padding: 18px 16px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 10000;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  box-sizing: border-box;
}

.cookie-banner.dsgvo-banner-v2.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  bottom: calc(10px + env(safe-area-inset-bottom));
}

@media (min-width: 600px) {
  .cookie-banner.dsgvo-banner-v2 {
    width: calc(100% - 32px);
    padding: 24px;
  }
  .cookie-banner.dsgvo-banner-v2.active {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-title {
  font-family: var(--font-title);
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 700;
  color: var(--neon-cyan);
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cookie-text {
  font-size: clamp(12.5px, 3.2vw, 13.5px);
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}

.cookie-text a {
  color: var(--neon-cyan);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-text a:hover {
  color: #fff;
}

/* Button Grid: Equal Size & Equal Prominence for Accept / Deny (No Dark Patterns) */
.cookie-buttons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

@media (min-width: 540px) {
  .cookie-buttons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.btn-cookie-action {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  touch-action: manipulation;
}

.btn-cookie-action:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Equal Visual Weight / Fairness for DSGVO Compliance */
.btn-cookie-deny {
  background: rgba(231, 76, 60, 0.15);
  color: #fff;
  border: 1.5px solid var(--neon-red);
}

.btn-cookie-deny:hover {
  background: var(--neon-red);
  box-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
}

.btn-cookie-settings {
  background: rgba(52, 73, 94, 0.3);
  color: #fff;
  border: 1.5px solid #4a6572;
}

.btn-cookie-settings:hover {
  background: #34495e;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(102, 252, 241, 0.2);
}

.btn-cookie-accept {
  background: rgba(46, 204, 113, 0.15);
  color: #fff;
  border: 1.5px solid var(--neon-green);
}

.btn-cookie-accept:hover {
  background: var(--neon-green);
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.4);
}

/* Second-Layer Settings Modal */
.modal-overlay.dsgvo-settings-overlay {
  z-index: 10005;
}

.dsgvo-settings-overlay .dsgvo-settings-content {
  max-width: 580px;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 40px rgba(102, 252, 241, 0.2);
}

.dsgvo-modal-subtext {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: -10px;
  margin-bottom: 20px;
}

.dsgvo-categories-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dsgvo-category-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 14px 16px;
  transition: border-color 0.2s;
}

.dsgvo-category-card:hover {
  border-color: rgba(102, 252, 241, 0.3);
}

.dsgvo-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.dsgvo-category-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dsgvo-category-name {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.dsgvo-badge-locked {
  background: rgba(102, 252, 241, 0.15);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dsgvo-category-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 4px 0 8px 0;
}

.dsgvo-category-details {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 10px;
  border-radius: var(--border-radius-sm);
  border-left: 2px solid var(--neon-cyan);
}

.dsgvo-category-details strong {
  color: var(--text-dim);
}

/* Category Switches / Toggles */
.dsgvo-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  flex-shrink: 0;
}

.dsgvo-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.dsgvo-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #2c2c38;
  border: 1px solid #444;
  transition: 0.3s;
  border-radius: 24px;
}

.dsgvo-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 50%;
}

.dsgvo-switch input:checked + .dsgvo-slider {
  background-color: var(--neon-green);
  border-color: var(--neon-green);
}

.dsgvo-switch input:checked + .dsgvo-slider:before {
  transform: translateX(22px);
}

.dsgvo-switch input:disabled + .dsgvo-slider {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #1b4931;
  border-color: var(--neon-green);
}

.dsgvo-switch input:focus-visible + .dsgvo-slider {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* Modal Bottom Actions */
.dsgvo-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.dsgvo-modal-actions .btn {
  flex: 1;
}

@media (max-width: 480px) {
  .dsgvo-modal-actions {
    flex-direction: column;
  }
}

/* External Media Blocked Placeholder */
.blocked-media-placeholder {
  background: var(--panel-bg);
  border: 2px dashed rgba(102, 252, 241, 0.4);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
  margin: 15px 0;
}

.blocked-media-content .blocked-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.blocked-media-content h4 {
  font-size: 16px;
  color: var(--neon-cyan);
  margin: 0 0 8px 0;
}

.blocked-media-content p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0 0 15px 0;
}

.no-scroll {
  overflow: hidden !important;
  touch-action: none !important;
}

/* SVG Icon Wrapper */
.svg-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.svg-icon-wrapper svg {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
}

/* ── Global Page UI Styles ── */
.page-container {
  background: var(--panel-bg);
  padding: 25px 15px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 95%;
  max-width: 800px;
  margin: 70px auto 40px;
  position: relative;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

@media (min-width: 600px) {
  .page-container {
    padding: 35px;
    margin-top: 80px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  }
}

.page-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 7vw, 36px);
  font-weight: 900;
  margin: 0 0 10px 0;
  letter-spacing: 3px;
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  text-shadow: 0 0 20px rgba(102, 252, 241, 0.2);
  line-height: 1.2;
}

/* ── Global Button Styles ── */
.btn {
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 600px) {
  .btn {
    padding: 16px 30px;
  }
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-start {
  background: var(--neon-green);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-start:hover {
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
  background: #27ae60;
}

.btn-info, .btn-secondary {
  background: #34495e;
  box-shadow: 0 4px 15px rgba(52, 73, 94, 0.3);
}

.btn-info:hover, .btn-secondary:hover {
  box-shadow: 0 6px 20px rgba(52, 73, 94, 0.5);
  background: #2c3e50;
}

.btn-primary {
  background: var(--neon-blue);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.btn-primary:hover {
  background: #2980b9;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

.btn-shop {
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(99,102,241,0.1));
  border: 1.5px solid rgba(168,85,247,0.6);
  color: #c084fc;
}

.btn-shop:hover {
  background: linear-gradient(135deg, rgba(168,85,247,0.35), rgba(99,102,241,0.2));
  border-color: #a855f7;
  box-shadow: 0 0 24px rgba(168,85,247,0.35);
  color: #e9d5ff;
}

/* ══════════════════════════════════════════════════════════════════
   EKNIRB NETWORK & DEVELOPER SEO FOOTER STYLES (SUBTLE & ORGANIC)
   ══════════════════════════════════════════════════════════════════ */
.eknirb-network-footer {
  margin-top: 22px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.network-row-dev {
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.subtle-link-dev {
  color: var(--neon-cyan);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.subtle-link-dev:hover {
  text-shadow: 0 0 8px rgba(102, 252, 241, 0.5);
  text-decoration: underline;
}

.network-row-games {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

.network-games-title {
  font-size: 11px;
  color: var(--text-muted);
  margin-right: 2px;
}

.network-pill-tag {
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 9px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.network-pill-tag:hover {
  background: rgba(102, 252, 241, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: translateY(-1px);
}

/* Sidebar network links styling (Subtle) */
.sidebar-network-subtle {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

.sidebar-network-subtle a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-network-subtle a:hover {
  color: var(--neon-cyan);
}

/* Accessibility Utility Class for Screen Readers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
