 :root {
        --primary: #582cd1;
        --bg-gradient: linear-gradient(135deg, #f8f7ff 0%, #ede9fe 100%);
        --card-bg: #ffffff;
        --text-main: #1e1b4b;
        --text-muted: #64748b;
        --border-color: rgba(88, 44, 209, 0.08);
      }

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

      body {
        background: var(--bg-gradient);
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--text-main);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        align-items: center;
      }

      .container {
        max-width: 500px;
        width: 100%;
        background: var(--card-bg);
        padding: 40px;
        border-radius: 32px;
        box-shadow: 0 25px 50px -12px rgba(88, 44, 209, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.8);
      }

      .logo-wrapper { display: flex; justify-content: center; margin-bottom: 24px; }
      .brand-logo { max-width: 100px; opacity: 0.85; }

      h1 { text-align: center; font-size: 26px; font-weight: 800; margin-bottom: 32px; color: var(--text-main); letter-spacing: -0.5px; }

      select {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
        font-weight: 600;
        border: 2px solid #e0e7ff;
        border-radius: 16px;
        background: #fafbff;
        color: var(--text-main);
        margin-bottom: 32px;
        cursor: pointer;
        outline: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        appearance: none;
      }

      .city {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 0;
        border-bottom: 1px solid var(--border-color);
      }

      .city:last-child { border-bottom: none; }
      h2 { font-size: 19px; font-weight: 700; margin-bottom: 2px; }
      .date { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
      .time { font-size: 30px; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--primary); }
      .time small { font-size: 15px; color: var(--text-muted); font-weight: 600; }

      #home-link { display: none; text-align: center; margin-top: 20px; font-weight: 600; color: var(--primary); text-decoration: none; font-size: 14px; cursor: pointer;}
      #home-link:hover { text-decoration: underline; }

      footer { margin-top: 40px; font-size: 12px; color: var(--text-muted); text-align: center; font-weight: 500; }