/* ========== Base ========== */
body {
    font-family: 'Readex Pro', sans-serif;
    background-color: #1F1F41;
    color: #e0e0e0;
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.2s ease-in-out both;
  }
  
  .container {
    padding: 80px 20px 180px;
    animation: fadeInUp 1.4s ease-out both;
  }
  
  /* ========== Logo ========== */
  img.logo {
    max-width: 800px;
    height: auto;
    margin-bottom: 40px;
    animation: popIn 1s ease-out both;
  }
  
  /* ========== Text ========== */
  .coming-soon {
    font-size: 2.1em;
    color: #FAF9FE;
    margin-bottom: 1.5em;
    animation: fadeInUp 1.8s ease-out both;
  }
  
  /* ========== Links ========== */
  a {
    color: #81d4fa;
    text-decoration: none;
    font-weight: 500;
    margin: 0 12px;
    transition: color 0.2s ease;
  }
  
  a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  
  /* ========== Footer ========== */
  .bottom-bar {
    background: rgba(22, 22, 53, 0.6); /* transparent background */
    backdrop-filter: blur(12px);       /* glass blur effect */
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 18px 12px;
    text-align: center;
    font-size: 0.95em;
    color: #ddd;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    animation: slideUp 1.6s ease-out both;
    z-index: 100;
  }
  
  .bottom-bar a {
    color: #81d4fa;
  }
  
  .bottom-bar p {
    margin: 6px 0;
  }
  
  /* ========== Animations ========== */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes popIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
  }
  
  @keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }  