  #changelog.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
  }

  .changelog-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 2rem;
    text-align: center;
  }

  .changelog-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4a90e2, #67b5ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.4);
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .changelog-icon svg {
    color: white;
  }

  .changelog-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4a90e2, #67b5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .changelog-message {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #b8c5d6;
  }

  .changelog-apology {
    font-size: 1.1rem;
    color: #67b5ff;
    font-weight: 600;
    margin-bottom: 3rem;
  }

  .changelog-info {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
  }

  .info-card {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid #4a90e2;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
  }

  .info-card svg {
    color: #67b5ff;
    flex-shrink: 0;
  }

  .info-card p {
    margin: 0;
    color: #e8edf5;
    font-weight: 500;
  }

  .changelog-cta {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
  }

  .changelog-cta > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #8899ab;
  }

  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
  }

  .btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-primary {
    background: linear-gradient(135deg, #4a90e2, #67b5ff);
    color: white;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
  }

  .btn-secondary {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid #4a90e2;
    color: #67b5ff;
  }

  .btn-secondary:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
  }

  /* Responsive styles for changelog page */
  @media (max-width: 768px) {
    .changelog-icon {
      width: 80px;
      height: 80px;
    }

    .changelog-icon svg {
      width: 50px;
      height: 50px;
    }

    .changelog-container h1 {
      font-size: 2rem;
    }

    .info-card {
      flex-direction: column;
      text-align: center;
    }

    .changelog-message {
      font-size: 1rem;
    }

    .changelog-apology {
      font-size: 1rem;
    }

    .changelog-cta > p {
      font-size: 1rem;
    }

    .cta-buttons {
      flex-direction: column;
    }

    .btn {
      width: 100%;
    }
  }
