    * { box-sizing: border-box; }
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
      color: #eee;
      text-align: center;
      padding: 20px;
      min-height: 100vh;
    }
    h1 {
      color: #4CAF50;
      margin-bottom: 25px;
    }

    /* Styled Language Selector */
    .language-selector-container {
      display: flex;
      justify-content: center;
      margin-bottom: 25px;
    }

    #language-selector {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background: linear-gradient(135deg, #1e3a5f 0%, #16213e 100%);
      color: #fff;
      border: 2px solid #4CAF50;
      border-radius: 12px;
      padding: 14px 50px 14px 20px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      min-width: 280px;
      transition: all 0.3s ease;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 20px;
      box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    }

    #language-selector:hover {
      border-color: #66BB6A;
      box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
      transform: translateY(-2px);
    }

    #language-selector:focus {
      outline: none;
      border-color: #81C784;
      box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
    }

    #language-selector option {
      background: #1a1a2e;
      color: #fff;
      padding: 12px;
    }

    /* Mode indicator badges */
    .mode-badge {
      display: inline-block;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      margin-left: 10px;
      vertical-align: middle;
    }

    .mode-badge.single {
      background: linear-gradient(135deg, #2196F3, #1976D2);
    }

    .mode-badge.presentation {
      background: linear-gradient(135deg, #FF9800, #F57C00);
    }
    .original {
      background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.05) 100%);
      padding: 25px 30px;
      margin: 20px auto;
      max-width: 900px;
      border-radius: 16px;
      border-left: 5px solid #2196F3;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .translations {
      display: grid;
      gap: 20px;
      margin: 20px auto;
      max-width: 900px;
    }





    .translation-box {
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
      padding: 25px 30px;
      border-radius: 16px;
      border-left: 5px solid #4CAF50;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }


    .lang-label {
      font-weight: 700;
      color: #4CAF50;
      margin-bottom: 12px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .original .lang-label {
      color: #2196F3;
    }

    .text {
      font-size: 28px;
      line-height: 1.5;
      font-weight: 400;
    }

    .status {
      color: #888;
      font-size: 14px;
      margin-top: 15px;
      padding: 10px 20px;
      background: rgba(255,255,255,0.05);
      border-radius: 8px;
      display: inline-block;
    }

    .metrics {
      background: rgba(0, 0, 0, 0.4);
      padding: 18px 25px;
      margin: 25px auto;
      max-width: 900px;
      border-radius: 12px;
      font-size: 13px;
      color: #777;
      border: 1px solid rgba(255,255,255,0.1);
    }

    /* TV/Presentation optimizations */
    @media (min-width: 1400px) {


      .original .text {
        font-size: 28px;
      }
    }

    @media (max-width: 768px) {
      .translations.presentation-mode {
        grid-template-columns: 1fr;
      }

      #language-selector {
        min-width: 100%;
      }
    }