* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --background-color: #000000;
    --surface-color: #0f0f0f;
    --primary-color: #4fc3f7; /* Light blue */
    --primary-dark: #0093c4;
    --primary-light: #8bf6ff;
    --error-color: #ff5252;
    --text-color: #f5f5f5;
    --text-secondary-color: #b0b0b0;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
  }
  
  #root {
    min-height: 100vh;
  }
  
  .app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header {
    padding: 20px 0;
    margin-bottom: 20px;
  }
  
  .site-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
  }
  
  .site-subtitle {
    font-size: 1rem;
    color: var(--text-secondary-color);
    text-align: center;
    margin-bottom: 20px;
  }
  
  .player-container {
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
  }
  
  .player-container:hover {
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.2);
  }
  
  .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
  }
  
  video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
  }
  
  .loading-overlay,
  .error-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--text-color);
    font-size: 1.2rem;
  }
  
  .error-overlay {
    color: var(--error-color);
  }
  
  .controls {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(15, 15, 15, 0.8);
    border-top: 1px solid rgba(79, 195, 247, 0.1);
  }
  
  .stream-status {
    display: flex;
    align-items: center;
    font-weight: 500;
  }
  
  .status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
  }
  
  .status-indicator.connected {
    background-color: #4CAF50;
  }
  
  .status-indicator.disconnected {
    background-color: #ff5252;
  }
  
  .status-indicator.live-delay {
    background-color: #FFC107;
  }
  
  .control-buttons {
    display: flex;
    gap: 10px;
  }
  
  .control-button {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
  }
  
  .control-button:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .control-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .live-button {
    background-color: var(--primary-dark);
    color: white;
  }
  
  .live-button:hover {
    background-color: var(--primary-color);
  }
  
  footer {
    margin-top: auto;
    padding: 20px 0;
    text-align: center;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
  }
  
  @media (max-width: 768px) {
    .site-title {
      font-size: 2rem;
    }
    
    .controls {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .control-buttons {
      margin-top: 10px;
      width: 100%;
      justify-content: space-between;
    }
  }
