Changed around line 1
+
+
+
+
+
+
Bitocracy - A Novel+
+ :root {
+ --primary-color: #1a1a1a;
+ --accent-color: #00ff00;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Courier New', monospace;
+ background-color: var(--primary-color);
+ color: #ffffff;
+ line-height: 1.6;
+ }
+
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 2rem;
+ background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: repeating-linear-gradient(
+ 0deg,
+ rgba(0, 255, 0, 0.1) 0px,
+ rgba(0, 255, 0, 0) 1px,
+ rgba(0, 255, 0, 0) 2px
+ );
+ pointer-events: none;
+ animation: scan 8s linear infinite;
+ }
+
+ @keyframes scan {
+ 0% { transform: translateY(0); }
+ 100% { transform: translateY(100%); }
+ }
+
+ .content {
+ max-width: 1200px;
+ margin: 0 auto;
+ text-align: center;
+ position: relative;
+ z-index: 1;
+ }
+
+ .book-cover {
+ width: 300px;
+ height: 450px;
+ object-fit: cover;
+ margin-bottom: 2rem;
+ box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
+ }
+
+ .excerpt {
+ max-width: 600px;
+ margin: 2rem auto;
+ padding: 2rem;
+ border-left: 2px solid var(--accent-color);
+ text-align: left;
+ font-style: italic;
+ }
+
+ .order-section {
+ margin-top: 4rem;
+ }
+
+ .order-options {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .order-card {
+ background: rgba(0, 255, 0, 0.1);
+ padding: 2rem;
+ border: 1px solid var(--accent-color);
+ border-radius: 4px;
+ transition: transform 0.3s ease;
+ }
+
+ .order-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .crypto-address {
+ font-family: monospace;
+ background: rgba(0, 0, 0, 0.3);
+ padding: 0.5rem;
+ margin: 0.5rem 0;
+ border-radius: 4px;
+ font-size: 0.9rem;
+ cursor: pointer;
+ }
+
+ .btn {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background-color: var(--accent-color);
+ color: var(--primary-color);
+ text-decoration: none;
+ border-radius: 4px;
+ font-weight: bold;
+ margin-top: 1rem;
+ transition: all 0.3s ease;
+ }
+
+ .btn:hover {
+ background-color: #00cc00;
+ transform: scale(1.05);
+ }
+
+ .copied-toast {
+ position: fixed;
+ bottom: 20px;
+ left: 50%;
+ transform: translateX(-50%);
+ background: var(--accent-color);
+ color: var(--primary-color);
+ padding: 1rem 2rem;
+ border-radius: 4px;
+ display: none;
+ }
+
+
+
+
+
+
+
BITOCRACY
+
+
+
"I pledge allegiance, to the flags, of the United Countries of Bitocracy."
+
I can see myself, decades ago, upright alongside my classmates, shouting at the tops of our small innocent lungs.
+
Many of those classmates are now ash, scattered in the black smoldering ruins of the nuked city below.
+
"Sir, we need to be out of the air."
+
"Copy," I say, and I feel our droneship pivot.
+
+
+
+
Pre-order Now
+
+
+
+
Crypto Payment
+
+
+
3G9q4tRjkTSP8PP4eFVZuNLtXxKuERJcJr
+
+
0x1a7956d9c949AedaebD16634265133C1559b0f4B
+
+
+
+
0xAfe05766c3D8E223978B42C15f90469D69F5Ad11
+
+
0xCD9B6C7bca77f4A032cc1851722b3D7674795608
+
+
+
+
+
+
+
+
+
+
Address copied to clipboard!
+
+
+ document.querySelectorAll('.crypto-address').forEach(address => {
+ address.addEventListener('click', function() {
+ const text = this.dataset.address;
+ navigator.clipboard.writeText(text).then(() => {
+ const toast = document.querySelector('.copied-toast');
+ toast.style.display = 'block';
+ setTimeout(() => {
+ toast.style.display = 'none';
+ }, 2000);
+ });
+ });
+ });
+
+
+