  /* Reset defaults */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      height: 100%;
    }
    body {
      /* Full-screen adaptive background image */
      background: url('/11212.jpg') no-repeat center center fixed;
      background-size: cover;
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    /* Container for vertical buttons and footer */
    .container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 90vw;
      max-width: 600px;
      z-index: 1;
    }
    /* Button styling applies only to direct child anchor tags (the buttons) */
    .container > a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(26, 58, 95, 0.8);
      color: #fff;
      text-decoration: none;
      font-size: 1.4em;
      padding: 20px;
      border-radius: 10px;
      border: 4px solid #fff;
      transition: background 0.3s ease, transform 0.3s ease;
      min-height: 150px;
    }
    .container > a:hover {
      background: rgba(36, 81, 122, 0.8);
      transform: scale(1.05);
    }
    /* Left-aligned text styling */
    .button-text {
      flex: 1;
      text-align: left;
    }
    /* Production-level arrow icon styling */
    .button-icon {
      margin-left: 20px;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }
    /* Footer styling for small links */
    .footer {
      text-align: center;
      margin-top: 20px;
    }
    .footer small a {
      text-decoration: none;
      color: #fff;
      margin: 0 5px;
      font-size: 0.8em;
    }