/**
 * SASHA - Stili globali della pagina
 * 
 * Stili opzionali per la pagina che ospita il player.
 * Il player stesso utilizza Shadow DOM con stili incapsulati.
 */

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

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-x: hidden;
  width: 100%;
}

.page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-width: 0;
}

.page-header {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 20px;
  opacity: 0.9;
  font-weight: 300;
}

.page-header .acronym {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* Player container */
.player-wrapper {
  margin-bottom: 40px;
}

/* Sezione informazioni */
.info-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.info-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.info-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.info-section ul {
  list-style: none;
  padding-left: 0;
}

.info-section li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #555;
}

.info-section li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: bold;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.feature-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  opacity: 0.9;
  color: white;
}

/* Footer */
.page-footer {
  text-align: center;
  color: white;
  margin-top: 40px;
  padding: 20px;
  opacity: 0.8;
}

.page-footer a {
  color: white;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 36px;
  }
  
  .page-header p {
    font-size: 16px;
  }
  
  .info-section {
    padding: 24px;
  }
  
  .info-section h2 {
    font-size: 24px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    padding: 8px;
  }
  
  .page-container {
    padding: 0;
    width: calc(100vw - 16px);
    max-width: 100%;
  }
  
  .page-header {
    margin-bottom: 20px;
    padding: 24px 12px;
  }
  
  .page-header h1 {
    font-size: 28px;
  }
  
  .info-section {
    padding: 20px 12px;
  }
  
  .code-section {
    padding: 20px 12px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
  
  .code-section h2 {
    font-size: 20px;
  }
  
  .code-section h3 {
    font-size: 16px;
  }
  
  .code-section pre {
    padding: 12px 8px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 8px;
  }
  
  .code-section code {
    font-size: 11px;
    line-height: 1.4;
  }
  
  .player-wrapper,
  .player-wrapper-ads,
  .player-wrapper-light,
  .player-wrapper-webvitals,
  .player-wrapper-waveform,
  .player-wrapper-sponsor,
  .player-wrapper-lazy,
  .player-wrapper-light-alt,
  .player-wrapper-genz {
    padding: 16px 10px;
    margin-bottom: 20px;
  }
  
  .waveform-type-section,
  .player-wrapper-waveform-line,
  .player-wrapper-waveform-blocks,
  .player-wrapper-waveform-mirrored,
  .player-wrapper-cache,
  .player-wrapper-cache-alt {
    padding: 16px 10px;
  }
}

/* Animazioni */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-container {
  animation: fadeIn 0.6s ease-out;
}

/* Code section */
.code-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  /* Previene overflow dai figli */
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.code-section h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1a1a2e;
}

.code-section h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #667eea;
}

.code-section pre {
  background: #2d2d2d;
  border-radius: 12px;
  padding: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
  /* Gestione mobile - forza contenimento */
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.code-section code {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #f8f8f2;
  display: inline-block;
  white-space: pre;
  overflow-wrap: normal;
  word-break: normal;
}

/* Mobile responsive per code */
@media (max-width: 768px) {
  .code-section {
    padding: 24px 20px;
  }
  
  .code-section h2 {
    font-size: 24px;
  }
  
  .code-section h3 {
    font-size: 18px;
  }
  
  .code-section pre {
    padding: 16px;
    border-radius: 8px;
  }
  
  .code-section code {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* Già gestito sopra - rimosso duplicato */

/* Utility classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 40px;
}

.mb-4 {
  margin-bottom: 40px;
}

/* Player wrapper variants */
.player-wrapper-ads {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 87, 34, 0.15));
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(255, 193, 7, 0.4);
}

.player-wrapper-light {
  background: linear-gradient(135deg, rgba(176, 247, 170, 0.15), rgba(144, 238, 144, 0.1));
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(176, 247, 170, 0.4);
}

.player-wrapper-webvitals {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.player-wrapper-waveform {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(219, 39, 119, 0.15));
  padding: 20px;
  border-radius: 16px;
  border: 2px solid rgba(147, 51, 234, 0.3);
  margin-bottom: 24px;
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  font-weight: 900;
}

.section-title-ads {
  color: #ffd54f;
}

.section-title-light {
  color: #b0f7aa;
}

.section-title-webvitals {
  color: #00d4ff;
}

.section-title-waveform {
  color: #e879f9;
}

.section-title-info {
  color: #ffc107;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Section descriptions */
.section-desc {
  text-align: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.section-desc-primary {
  color: rgba(255,255,255,0.9);
}

.section-desc-secondary {
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-size: 12px;
  font-style: italic;
}

.section-desc-waveform {
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

/* Info sections */
.info-section-ads {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 87, 34, 0.05));
  border-radius: 20px;
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.info-section-webvitals {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.08));
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.info-section-waveform {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.08), rgba(219, 39, 119, 0.08));
  border-radius: 20px;
  border: 2px solid rgba(147, 51, 234, 0.3);
}

.info-section-cache {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(59, 130, 246, 0.08));
  border-radius: 20px;
  border: 2px solid rgba(16, 185, 129, 0.3);
}

/* Version badge */
.version-badge {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 8px;
  margin-left: 6px;
}

.version-badge-new {
  color: #7dd3fc;
  background: rgba(0,212,255,0.2);
}

.version-badge-old {
  color: #ffc107;
  background: rgba(255,193,7,0.2);
}

.version-badge-plus {
  color: #7dd3fc;
  background: rgba(0,212,255,0.2);
}

/* Feature highlights */
.feature-highlight {
  background: rgba(0, 212, 255, 0.15);
  border-left: 4px solid #00d4ff;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
}

/* List styles */
.feature-list {
  font-size: 13px;
  line-height: 1.6;
  margin: 8px 0 0 20px;
}

.feature-list li {
  color: #ffffff;
}

/* Badges container */
.player-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.badge-lazy {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.badge-eager {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.badge-waveform {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.badge-ads {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.badge-light {
  background: linear-gradient(135deg, #b0f7aa, #86efac);
  color: #1a1a2e;
}

/* Demo header */
.demo-header {
  text-align: center;
  padding: 32px 20px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(147,51,234,.25), rgba(255,59,154,.2));
  border: 2px solid rgba(255,59,154,.35);
  box-shadow: 0 12px 40px rgba(147,51,234,.25) inset, 0 8px 24px rgba(0,0,0,.15);
}

.demo-header h1 {
  font-size: 52px;
  margin: 0 0 6px 0;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.demo-header p {
  margin: 0 0 8px 0;
  color: rgba(255,255,255,.9);
  font-size: 18px;
}

.demo-header .acronym {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo-header .version {
  margin: 8px 0 0 0;
  color: #d4ff00;
  font-weight: 800;
}

/* Player title header */
.player-title-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.player-title-header h3 {
  margin: 0;
}

.player-title-white {
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.player-title-orange {
  color: rgb(255, 150, 20);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.player-title-cyan {
  color: #38bdf8;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  font-weight: 900;
}

.player-title-green {
  color: #86efac;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  font-weight: 900;
}

/* Player description */
.player-desc {
  text-align: center;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
}

.player-desc-light {
  color: rgba(255,255,255,0.7);
}

.player-desc-bright {
  color: rgba(255,255,255,0.9);
}

/* Badge small variants */
.badge-small {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
}

.badge-above-fold {
  background: #00d4ff;
  color: #1a1a2e;
}

.badge-below-fold {
  background: #ef4444;
  color: white;
}

.badge-skeleton {
  background: #9333ea;
  color: white;
  text-transform: none;
}

.badge-immediate {
  background: #16a34a;
  color: white;
  text-transform: none;
}

.badge-sponsor {
  background: #f59e0b;
  color: white;
  text-transform: none;
}

.badge-lazy-load {
  background: #eab308;
  color: #1a1a2e;
  text-transform: none;
}

.badge-observer {
  background: #8b5cf6;
  color: white;
  text-transform: none;
}

.badge-webvitals {
  background: #06b6d4;
  color: white;
  text-transform: none;
}

.badge-minimal {
  background: #10b981;
  color: white;
  text-transform: none;
}

/* Player wrapper sponsor variant */
.player-wrapper-sponsor {
  background: linear-gradient(135deg, rgba(123, 105, 162, 0.2), rgba(255, 150, 20, 0.1));
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(255, 150, 20, 0.3);
}

.player-wrapper-lazy {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 193, 7, 0.15));
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.4);
}

.player-wrapper-light-alt {
  background: linear-gradient(135deg, rgba(176, 247, 170, 0.15), rgba(255, 255, 255, 0.1));
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(176, 247, 170, 0.4);
}

/* Waveform type sections */
.waveform-type-section {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 20px;
  border: 2px solid;
}

.waveform-type-bar {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
  border-color: rgba(139, 92, 246, 0.3);
}

.waveform-type-mirrored {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(219, 39, 119, 0.05));
  border-color: rgba(236, 72, 153, 0.3);
}

.waveform-type-line {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(8, 145, 178, 0.05));
  border-color: rgba(6, 182, 212, 0.3);
}

.waveform-type-blocks {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
  border-color: rgba(245, 158, 11, 0.3);
}

.waveform-type-gradient {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
  border-color: rgba(16, 185, 129, 0.3);
}

/* Waveform type titles */
.waveform-type-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.waveform-title-purple { color: #a78bfa; }
.waveform-title-pink { color: #f472b6; }
.waveform-title-cyan { color: #22d3ee; }
.waveform-title-yellow { color: #fbbf24; }
.waveform-title-green { color: #34d399; }

/* Flex helpers */
.flex-gap-8 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* Text variants */
.text-desc-light {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  font-size: 13px;
}

.text-desc-bright {
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.text-desc-center {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.text-link-yellow {
  color: #d4ff00;
  font-weight: 800;
  text-decoration: none;
}

.text-muted {
  color: rgba(255,255,255,.5);
}

.text-dim {
  margin: 0 0 6px 0;
  color: rgba(255,255,255,.9);
}

/* Layout utils */
.max-width-900 {
  max-width: 900px;
  margin: 0 auto;
}

.mt-24 {
  margin-top: 24px;
}

.mt-40 {
  margin-top: 40px;
}

.m-0 {
  margin: 0;
}

/* Info section variants */
.info-section-purple {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.08), rgba(255, 59, 154, 0.05));
  border-radius: 20px;
  border: 2px solid rgba(147, 51, 234, 0.3);
}

.info-section-cyan-yellow {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 193, 7, 0.05));
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.demo-footer {
  margin-top: 40px;
  text-align: center;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(147,51,234,.2), rgba(255,59,154,.15));
  border: 2px solid rgba(147,51,234,.35);
  box-shadow: 0 8px 24px rgba(0,0,0,.15) inset;
}

/* Gen-Z theme wrapper */
.player-wrapper-genz {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(255, 59, 154, 0.15));
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(212, 255, 0, 0.4);
}

.player-title-genz {
  color: #e5ff33;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  font-weight: 900;
  text-transform: uppercase;
}

.badge-custom-theme {
  background: #ec4899;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: bold;
}

/* Section titles variants */
.section-title-cyan-alt {
  color: #7dd3fc;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
  font-weight: 800;
}

.section-title-purple-alt {
  color: #c084fc;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
  font-weight: 800;
}

/* Highlight boxes */
.highlight-box {
  background: rgba(0, 212, 255, 0.15);
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid #00d4ff;
  margin-bottom: 20px;
}

/* Code inline */
code.inline-code {
  background: rgba(0,0,0,0.3);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Badge variants */
.badge-default {
  background: #10b981;
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: bold;
}

.badge-pro {
  background: #8b5cf6;
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: bold;
}

/* Player wrapper cache variant */
.player-wrapper-cache {
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
  padding: 24px;
  border-radius: 20px;
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.player-wrapper-cache-alt {
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
  padding: 24px;
  border-radius: 20px;
  border: 2px solid rgba(139, 92, 246, 0.3);
}

/* Waveform type specific titles */
.waveform-title-line-alt {
  color: #67e8f9;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.waveform-title-pink-alt {
  color: #f9a8d4;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Badge type specific */
.badge-cyan {
  background: #06b6d4;
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: bold;
}

.badge-yellow {
  background: #f59e0b;
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: bold;
}

.badge-pink {
  background: #ec4899;
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: bold;
}

/* Player wrapper waveform types */
.player-wrapper-waveform-line {
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(8, 145, 178, 0.05));
  padding: 24px;
  border-radius: 20px;
  border: 2px solid rgba(6, 182, 212, 0.3);
}

.player-wrapper-waveform-blocks {
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
  padding: 24px;
  border-radius: 20px;
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.player-wrapper-waveform-mirrored {
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(219, 39, 119, 0.05));
  padding: 24px;
  border-radius: 20px;
  border: 2px solid rgba(236, 72, 153, 0.3);
}

/* Highlight boxes variants */
.highlight-box-purple {
  background: rgba(147, 51, 234, 0.15);
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid #9333ea;
  margin-top: 30px;
}

.highlight-box-cyan {
  background: rgba(6, 182, 212, 0.15);
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  margin-top: 16px;
}

/* Inline emphasis */
.text-cyan-bold {
  color: #00d4ff;
  font-weight: bold;
}

.text-footer-muted {
  color: rgba(255,255,255,.5);
}

/* Responsive */
@media (max-width: 768px) {
  .demo-header h1 {
    font-size: 36px;
  }
  
  .demo-header p {
    font-size: 16px;
  }
  
  .player-wrapper-ads,
  .player-wrapper-light,
  .player-wrapper-webvitals,
  .player-wrapper-waveform,
  .player-wrapper-sponsor,
  .player-wrapper-lazy,
  .player-wrapper-light-alt {
    padding: 20px;
  }
  
  .info-section-ads,
  .info-section-webvitals,
  .info-section-waveform,
  .info-section-cache,
  .info-section-purple,
  .info-section-cyan-yellow {
    padding: 24px;
  }
  
  .waveform-type-section {
    padding: 20px;
  }
  
  .player-title-header {
    gap: 8px;
  }
}

