body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background: #000; /* fallback if image fails */
  color: #fff;
  overflow-x: auto;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-repeat: repeat;
  background-position: top center;
  background-size: 1920px 1080px;
  z-index: -2;
  pointer-events: none;
}


/* Theme 1 ops */
body.t1::before {
  background-image: url('https://genxcapitalist.com/img/bg3-frame-ops.webp');
}

/* Theme 2 ADS */
body.t2::before {
  background-image: url('https://genxcapitalist.com/img/bg4-frame-ads.webp');
}

/* Theme 3 AI */
body.t3::before {
  background-image: url('https://genxcapitalist.com/img/bg5-frame-ai.webp');
}

/* Theme 4 - Doge */
body.t4::before {
  background-image: url('https://genxcapitalist.com/img/bg6-frame-doge.webp');
}


.gxctop {
  font-size: 24px;
  font-style: italic;
  font-weight: bold;
  color: #FFD700; /* gold */
  text-align: center;
  margin: 0;
  padding: 0;
}




.container {
  width: 1000px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

h1 {
  font-size: 2em;
  margin-top: 0;
  font-style: italic;
  text-align: left;
}

h2 {
  font-size: 1.8em;
  margin-top: 1em;
  font-weight: bold;
}

h3 {
  font-size: 1.4em;
  margin-top: 1em;
  font-weight: bold;
}

h4 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 2em;
}

p {
  font-size: 1em;
  line-height: 1.6;
  margin-top: 1em;
}

ps {
  font-size: 0.7em;
  display: block;
  margin-left: 40px;
}

.green {
  color: #00ff00;
}

.red {
  color: #ff3333;
}

.button-container {
    text-align: center; /* Centers the button horizontally */
}

.download-btn {
    background-color: #28a745;
    color: white;
    padding: 10px 50px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}


a, a:link {
  color: #00ff00; /* Green */
  text-decoration: underline;
}
a:visited {
  color: #00cc00; 
  text-decoration: underline;
}
a:hover {
  color: #00cc00; 
  text-decoration: none;
}
a:active {
  color: #00ff00; 
  text-decoration: underline;
}



