body {
      margin: 0;
      font-family: "Orbitron", sans-serif;
      background: radial-gradient(circle at center, #0a0a0f 40%, #000 100%);
      color: #e0f7ff;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header {
      text-align: center;
      padding: 1rem;
      border-bottom: 2px solid #0ff;
      background: #020212;
    }

    header h1 {
      font-size: 2rem;
      color: #0ff;
      text-shadow: 0 0 10px #0ff;
    }

    main {
      display: flex;
      flex-wrap: wrap;
      flex: 1;
    }

    section {
      flex: 1 1 300px;
      min-height: 250px;
      padding: 1rem;
      margin: 0.5rem;
      border: 2px solid #0ff;
      border-radius: 12px;
      background: rgba(10, 20, 30, 0.85);
      box-shadow: 0 0 15px #0ff inset;
      overflow-y: auto;
      max-height: 80vh;
    }

    section h2 {
      color: #00e0ff;
      text-shadow: 0 0 5px #0ff;
      font-size: 1.4rem;
    }

    button {
      margin-top: 1rem;
      padding: 0.5rem 1rem;
      background: #0ff;
      border: none;
      border-radius: 6px;
      font-family: inherit;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover,
    button:focus {
      background: #00aacc;
      outline: none;
    }

    #movieResult, #movieList {
      margin-top: 1rem;
      font-size: 1.1rem;
      color: #fff;
      text-shadow: 0 0 8px #0ff;
    }

    footer {
      text-align: center;
      padding: 1rem;
      border-top: 2px solid #0ff;
      background: #020212;
      font-size: 0.9rem;
    }

    ul {
      list-style: none;
      padding: 0;
    }

    li {
      margin: 0.3rem 0;
    }

    /* Accessibility focus outline */
    :focus-visible {
      outline: 3px solid #ff0;
      outline-offset: 4px;
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 1.5rem;
      }
      section h2 {
        font-size: 1.2rem;
      }
    }