body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #000428, #004e92);
    color: #f0f0f0;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
  }
  
  .floating-text {
    position: fixed;
    top: -10%;
    left: 0;
    width: 100%;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    color: rgba(255, 255, 255, 0.03);
    animation: floatText 60s linear infinite;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
  }
  
  @keyframes floatText {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 16px;
    border: 3px solid;
    border-image: linear-gradient(45deg, gold, royalblue) 1;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  
  h1, h2 {
    color: gold;
    margin-top: 30px;
    border-left: 5px solid royalblue;
    padding-left: 15px;
  }
  
  ul {
    padding-left: 25px;
  }
  
  a {
    color: #00cfff;
    text-decoration: underline;
  }
  
  strong {
    color: gold;
  }
  