/* Define color variables */
:root {
    --primary-text: #FFFFFF; /* White for body text */
    --secondary-accent: #FF6200; /* Deep orange for headers and links */
    --background: #000000; /* Black background */
}

body {

	background-color: var(--background);
    color: var(--primary-text);
    font-family: 'Roboto', sans-serif;
    font-size: 18px; /* Increased for readability */
    line-height: 1.6;
    margin: 0; /* Remove default margin */
	cursor: url('assets/pixel-btc.png') 16 16, auto;

}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--secondary-accent);
    text-align: center;
}

h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--secondary-accent);
}

h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary-text);
}

/* Ensure mobile readability */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
}

a {
    color: var(--secondary-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    margin-bottom: 20px;
}

.hero h2 {
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Navigation styles */
.sticky-nav {
    position: sticky;
    top: 0;
    background-color: var(--background);
    padding: 10px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: var(--secondary-accent);
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s;
    text-transform: uppercase;
    font-weight: 700;
}

nav ul li a:hover {
    background-color: #2c2c2c;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: var(--secondary-accent);
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s;
}

.dropbtn:hover {
    background-color: #2c2c2c;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    color: var(--primary-text);
    padding: 12px 16px;
    display: block;
    text-transform: none;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: #333333;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Search bar styles */
#searchBar {
    padding: 5px;
    background-color: #333333;
    border: none;
    color: var(--primary-text);
    margin-left: 20px;
}

#searchBar::placeholder {
    color: #999999;
}

main {
    margin: 40px 20px; /* Increased margin for more whitespace */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section {
    margin-bottom: 30px; /* Increased spacing between sections */
}

.section-divider {
    border-top: 1px solid #333333; /* Subtle gray line */
    margin: 30px 0; /* Increased margin for more separation */
    padding-top: 20px;
}

footer {
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
    color: #e1e1e1;
    margin-top: 40px;
}

.footer-links a {
    color: var(--secondary-accent);
    margin: 0 10px;
}

.social-icons a {
    color: var(--secondary-accent);
    margin: 0 10px;
    display: inline-block;
    margin-top: 10px;
}

.open-source-badge a {
    display: inline-block;
    background-color: var(--secondary-accent);
    color: var(--background);
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 5px;
}

#ulbricht-pardon-article {
    font-weight: bold;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Two-column layout for merchandise page */
.columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    min-width: 300px;
}

.column h3 {
    font-size: 1.4em;
    color: var(--secondary-accent);
    margin-bottom: 10px;
}

.column p {
    margin-bottom: 15px;
}

.column ul {
    padding-left: 20px;
}

.column ul li {
    margin-bottom: 15px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .columns {
        flex-direction: column;
        gap: 20px;
    }

    .column {
        min-width: 100%;
    }
}
body {
  background-color: #0d0d0d;
  background-image:
    linear-gradient(0deg, rgba(255, 123, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 123, 0, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  animation: gridPulse 5s ease-in-out infinite;
}
#rabbit-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}

#white-rabbit {
  width: 42px;
  height: auto;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

#white-rabbit:hover {
  opacity: 1;
  transform: scale(1.2) rotate(6deg);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

#rabbit-popup {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 10px 12px;
  border-radius: 8px;
  width: 220px;
  font-family: monospace;
  font-size: 0.9em;
  line-height: 1.3;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

#rabbit-wrapper:hover #rabbit-popup {
  display: block;
}
.anon-page {
  background-color: #0d0d0d;
  color: white;
  font-family: monospace;
  padding: 40px;
}

.anon-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.anon-art-gallery {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

.anon-art-gallery img {
  width: 180px;
  height: auto;
  border: 2px solid #f7931a;
  box-shadow: 0 0 12px rgba(255, 123, 0, 0.3);
  transition: transform 0.3s ease;
}

.anon-art-gallery img:hover {
  transform: scale(1.05);
}
.terminal-shell {
  background-color: #0b0f0d;
  color: #00ff88;
  font-family: "Courier New", Courier, monospace;
  padding: 0;
  margin: 60px auto;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.terminal-header {
  background-color: #1a1a1a;
  padding: 10px 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.terminal-title {
  color: #cccccc;
  font-size: 0.85rem;
  margin-left: auto;
  font-weight: bold;
}

.terminal-body {
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  word-wrap: break-word;
  position: relative;
}

.blinking-cursor {
  font-weight: bold;
  font-size: 1rem;
  animation: blink 1s infinite step-start;
  color: #00ff88;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}


/* 🔶 Glowing animated site title */
.glow-header {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #f7931a, #ffae42, #f7931a);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 4s linear infinite;
  text-align: center;
  margin-top: 20px;
}

@keyframes shine {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* ₿ Bitcoin watermark background */
body::after {
  content: "₿";
  font-size: 300px;
  color: rgba(255, 123, 0, 0.02);
  position: fixed;
  bottom: 10%;
  right: 5%;
  z-index: 0;
  pointer-events: none;
  font-family: monospace;
}

/* 🧠 Section title styling */
.section-title {
  font-family: monospace;
  font-size: 1.4rem;
  color: #f7931a;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  padding-bottom: 6px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.founder-quote {
  margin-top: 30px;
  font-style: italic;
  font-size: 1.2rem;
  color: #00ff00;
  text-align: center;
  padding: 10px;
  border-left: 3px solid #00ff00;
  border-right: 3px solid #00ff00;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-in-out;
}
.sponsor-banner {
    text-align: center;
    margin: 25px auto;
    max-width: 820px;           /* slightly wider than banner for padding */
    padding: 12px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
}

.sponsor-label {
    font-size: 0.85em;
    color: #f7931a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.banner-slides {
    position: relative;
    height: 120px;
    overflow: hidden;
    background-color: #0a0a0a;
    border-radius: 6px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    max-height: 120px;
    width: auto;
    max-width: 100%;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 860px) {
    .sponsor-banner {
        max-width: 100%;
        margin: 20px 10px;
        padding: 10px;
    }
    .banner-slides {
        height: 100px;           /* smaller on tablets */
    }
    .banner-slide img {
        max-height: 100px;
    }
}

@media (max-width: 480px) {
    .banner-slides {
        height: 70px;            /* mobile friendly */
    }
    .banner-slide img {
        max-height: 70px;
    }
}

/* Old terminal style (no longer used)
.terminal-type {
  background-color: #000;
  color: #00ff88;
  font-family: "Courier New", Courier, monospace;
  padding: 20px;
  margin-top: 40px;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/*
/*body {
  background-color: #0d0d0d;
  background-image:
    linear-gradient(0deg, rgba(255, 123, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 123, 0, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  animation: gridPulse 5s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% {
    background-color: #0d0d0d;
  }
  50% {
    background-color: #111111;
  }
}
/*
