html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: none;
    overflow: hidden;
    position: relative;
  }

  /* Dynamic animated gradient overlay */
  .dynamic-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: subtleMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    transition: background 0.6s ease;
  }

  @keyframes subtleMove {
    0%, 100% {
      opacity: 0.7;
      transform: translate(0, 0) scale(1);
    }
    50% {
      opacity: 1;
      transform: translate(-15px, -15px) scale(1.08);
    }
  }

  #header, #content, #rowTwo {
    position: relative;
    z-index: 10;
  }

  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1000;
    padding: 30px 0 35px 0;
    font-size: clamp(2rem, 6vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  }

  #content {
    width: 100vw;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-size: clamp(2.5rem, 10vw, 12rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 0 40px;
    padding-top: 80px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  #rowTwo {
    width: 100vw;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.8rem, 7vw, 9rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 0 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
  }

  /* Smooth fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #content, #rowTwo {
    animation: fadeIn 0.8s ease-out;
  }