/* === REICHSTREAM — WWII Swastika Theme === */
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&family=IM+Fell+English+SC&family=Cinzel:wght@400;700;900&family=Special+Elite&family=Marcellus+SC&display=swap');

:root {
  --reich-red: #B30000;
  --reich-darkred: #7A0000;
  --reich-black: #0a0a0a;
  --reich-darkgray: #1a1a1a;
  --reich-gray: #2a2a2a;
  --reich-lightgray: #3a3a3a;
  --reich-white: #e8e0d0;
  --reich-gold: #c4a44a;
  --reich-darkgold: #8a6e2a;
  --reich-cream: #f5f0e0;
  --font-gothic: 'Marcellus SC', 'Cinzel', serif;
  --font-display: 'Marcellus SC', 'Cinzel', serif;
  --font-cinzel: 'Cinzel', serif;
  --font-mono: 'Special Elite', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: var(--reich-black);
  color: var(--reich-cream);
  font-family: 'Georgia', 'Times New Roman', serif;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(179,0,0,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(179,0,0,0.05) 0%, transparent 50%);
}

/* === HEADER === */
.site-header {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  border-bottom: 3px solid var(--reich-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(179,0,0,0.3);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px 8px;
  gap: 20px;
}

.reich-eagle, .header-accent {
  font-size: 28px;
  color: var(--reich-gold);
  text-shadow: 0 0 10px rgba(196,164,74,0.5);
}

.swastika-rotate { display: inline-block; }

.site-title {
  font-family: var(--font-gothic);
  font-size: clamp(28px, 5vw, 48px);
  color: var(--reich-white);
  letter-spacing: 6px;
  text-shadow: 0 0 30px rgba(179,0,0,0.6), 0 2px 4px rgba(0,0,0,0.8);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 6px 20px 12px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--reich-gold);
  text-decoration: none;
  padding: 6px 16px;
  transition: all 0.3s;
  letter-spacing: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--reich-white);
  text-shadow: 0 0 15px var(--reich-red);
  background: rgba(179,0,0,0.15);
  border-radius: 2px;
}

.nav-link.active {
  border-bottom: 2px solid var(--reich-red);
}

.nav-divider {
  color: var(--reich-red);
  font-weight: bold;
  opacity: 0.5;
}

.iron-cross-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 4px 0;
  width: 100%;
}

.cross-arm {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--reich-red), transparent);
  flex: 1;
  max-width: 300px;
}

.iron-cross {
  font-size: 18px;
  color: var(--reich-gold);
  text-shadow: 0 0 10px rgba(196,164,74,0.4);
}

/* === HERO BANNER === */
.hero-banner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
  overflow: hidden;
  border-bottom: 2px solid var(--reich-red);
}

.hero-swastika-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.giant-swastika {
  font-size: clamp(200px, 40vw, 500px);
  color: rgba(179,0,0,0.06);
  user-select: none;
}

.giant-swastika-dark {
  font-size: clamp(80px, 15vw, 150px);
  color: rgba(179,0,0,0.1);
  display: block;
  text-align: center;
  margin: 30px 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.hero-title {
  font-family: var(--font-gothic);
  font-size: clamp(36px, 8vw, 72px);
  color: var(--reich-white);
  letter-spacing: 8px;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(179,0,0,0.7), 0 4px 8px rgba(0,0,0,0.9);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--reich-gold);
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(180deg, var(--reich-red) 0%, var(--reich-darkred) 100%);
  color: var(--reich-white);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(179,0,0,0.4);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #cc0000 0%, #990000 100%);
  box-shadow: 0 6px 25px rgba(179,0,0,0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--reich-gold);
  border: 1px solid var(--reich-gold);
  box-shadow: 0 0 10px rgba(196,164,74,0.1);
}

.btn-secondary:hover {
  background: rgba(196,164,74,0.1);
  box-shadow: 0 0 20px rgba(196,164,74,0.3);
  transform: translateY(-2px);
}

.btn-danger {
  background: linear-gradient(180deg, #8B0000 0%, #4a0000 100%);
  color: var(--reich-white);
  border: 1px solid rgba(255,0,0,0.2);
  box-shadow: 0 2px 10px rgba(139,0,0,0.3);
}

.btn-danger:hover {
  box-shadow: 0 4px 20px rgba(139,0,0,0.5);
}

.btn-logout {
  background: transparent;
  color: var(--reich-red);
  border: 1px solid var(--reich-red);
  padding: 8px 20px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  cursor: pointer;
}

.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* === HOME CONTENT === */
.home-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 20px 0;
}

.grid-section {}
.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--reich-gold);
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.swastika-small { font-size: 18px; color: var(--reich-red); }

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.poster-card {
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s;
}

.poster-card:hover {
  border-color: var(--reich-red);
  box-shadow: 0 0 15px rgba(179,0,0,0.3);
  transform: translateY(-3px);
}

.poster-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-title {
  font-size: 12px;
  color: var(--reich-gold);
  padding: 8px;
  text-align: center;
  font-family: var(--font-mono);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--reich-lightgray);
  font-style: italic;
}

.vod-list { display: flex; flex-direction: column; gap: 12px; }

.vod-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  border-radius: 2px;
  transition: all 0.3s;
}

.vod-item:hover {
  border-color: var(--reich-gold);
  background: var(--reich-gray);
}

.vod-thumb {
  width: 60px;
  height: 34px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--reich-lightgray);
}

.vod-play-icon { color: var(--reich-red); font-size: 12px; }

.vod-title {
  color: var(--reich-gold);
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 14px;
}

.vod-title:hover { color: var(--reich-white); }

.vod-date {
  font-size: 11px;
  color: var(--reich-lightgray);
  margin-top: 4px;
}

/* === ABOUT SECTION === */
.about-section {
  padding: 40px 0;
}

.about-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  border-radius: 2px;
}

.about-block h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--reich-gold);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.about-block p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--reich-cream);
  margin-bottom: 12px;
  opacity: 0.85;
}

.about-motto {
  font-family: var(--font-gothic);
  font-size: 22px;
  color: var(--reich-red);
  letter-spacing: 6px;
  margin-top: 20px !important;
  text-shadow: 0 0 20px rgba(179,0,0,0.5);
}

/* === FOOTER === */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  background: #0a0a0a;
  border-top: 2px solid var(--reich-red);
  margin-top: 40px;
}

.footer-text {
  font-family: var(--font-display);
  color: var(--reich-gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.footer-small {
  font-size: 10px;
  color: var(--reich-lightgray);
  margin-top: 6px;
}

/* === LIVE PAGE === */
.live-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px;
  height: calc(100vh - 140px);
}

.live-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 10px;
  height: 100%;
}

.stream-section {
  display: flex;
  flex-direction: column;
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  border-radius: 2px;
  overflow: hidden;
}

.stream-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--reich-black);
  border-bottom: 1px solid var(--reich-red);
}

.live-badge {
  background: var(--reich-red);
  color: white;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 3px 10px;
  letter-spacing: 2px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.stream-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--reich-white);
  flex: 1;
}

.viewer-count {
  font-size: 12px;
  color: var(--reich-lightgray);
  font-family: var(--font-mono);
}

.stream-player {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
  min-height: 400px;
}

.stream-offline {
  text-align: center;
  padding: 40px;
}

.offline-text {
  font-family: var(--font-gothic);
  font-size: 32px;
  color: var(--reich-lightgray);
  letter-spacing: 6px;
  margin-bottom: 10px;
}

.offline-sub {
  font-size: 14px;
  color: var(--reich-lightgray);
  opacity: 0.5;
}

.stream-active { width: 100%; height: 100%; }

.stream-active video { width: 100%; height: 100%; object-fit: contain; }

/* === CHAT === */
.chat-section {
  display: flex;
  flex-direction: column;
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  border-radius: 2px;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--reich-black);
  border-bottom: 1px solid var(--reich-red);
}

.chat-header h3 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--reich-gold);
}

.chat-icon { color: var(--reich-gold); }

.user-list-panel {
  padding: 10px 12px;
  border-bottom: 1px solid var(--reich-lightgray);
  background: rgba(0,0,0,0.3);
  max-height: 140px;
  overflow-y: auto;
}
.user-list-panel h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--reich-gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.user-list-panel ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.user-list-panel li {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--reich-cream);
  background: rgba(179,0,0,0.15);
  padding: 2px 8px;
  border-radius: 2px;
}
.user-list-panel::-webkit-scrollbar { width: 4px; }
.user-list-panel::-webkit-scrollbar-thumb { background: var(--reich-red); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 100%;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: var(--reich-black);
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--reich-red);
  border-radius: 3px;
}

.chat-msg {
  padding: 4px 8px;
  font-size: 13px;
  line-height: 1.4;
  word-break: break-word;
}

.chat-msg .sender {
  font-weight: bold;
  margin-right: 6px;
}

.chat-msg .sender.admin-msg { color: var(--reich-red); }
.chat-msg .sender.user-msg { color: var(--reich-gold); }

.chat-msg .time {
  font-size: 10px;
  color: var(--reich-lightgray);
  margin-left: 6px;
}

.chat-compose, .chat-login {
  display: flex;
  gap: 4px;
  padding: 10px;
  border-top: 1px solid var(--reich-lightgray);
  background: var(--reich-black);
}

.chat-input {
  flex: 1;
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  color: var(--reich-white);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
}

.chat-input:focus { border-color: var(--reich-red); }

.chat-input::placeholder { color: var(--reich-lightgray); }

.chat-send-btn, .chat-join-btn {
  padding: 10px 20px;
  font-size: 13px;
}

/* === ADMIN === */
.admin-main {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.admin-login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.admin-login-box {
  background: var(--reich-darkgray);
  border: 2px solid var(--reich-red);
  border-radius: 2px;
  padding: 50px 40px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 0 40px rgba(179,0,0,0.2);
}

.admin-login-box h2 {
  font-family: var(--font-gothic);
  font-size: 36px;
  color: var(--reich-white);
  letter-spacing: 5px;
  margin-bottom: 8px;
}

.login-subtitle {
  color: var(--reich-gold);
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.login-error {
  color: #ff4444;
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 16px;
  padding: 8px;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.3);
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--reich-black);
  border: 1px solid var(--reich-lightgray);
  color: var(--reich-white);
  font-family: var(--font-mono);
  font-size: 14px;
  outline: none;
}

.admin-input:focus { border-color: var(--reich-red); }
.admin-input::placeholder { color: var(--reich-lightgray); }

.admin-panel { display: flex; flex-direction: column; gap: 20px; }

.admin-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-red);
}

.admin-header-bar h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--reich-gold);
  letter-spacing: 3px;
}

.admin-section { margin-bottom: 10px; }

.admin-section-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--reich-red);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.admin-card {
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-card p { font-size: 14px; color: var(--reich-cream); }

.text-live { color: #44ff44; font-weight: bold; }
.text-offline { color: var(--reich-lightgray); }

.admin-form { display: flex; flex-direction: column; gap: 12px; }
.admin-form-inline { display: flex; gap: 10px; align-items: center; }
.admin-input-inline {
  padding: 8px 12px;
  background: var(--reich-black);
  border: 1px solid var(--reich-lightgray);
  color: var(--reich-white);
  font-family: var(--font-mono);
  font-size: 13px;
  flex: 1;
}

.admin-btn-group {
  display: flex;
  gap: 12px;
}

.admin-link {
  color: var(--reich-gold);
  font-family: var(--font-mono);
  font-size: 13px;
  text-decoration: none;
}

.admin-link:hover { color: var(--reich-white); }

/* === POSTERS PAGE === */
.posters-main, .archive-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.page-header {
  text-align: center;
  padding: 30px 0 20px;
}

.page-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--reich-gold);
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.upload-section {
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-red);
  padding: 20px;
  margin-bottom: 30px;
}

.upload-section h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--reich-gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.upload-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.file-upload-wrap { margin: 8px 0; }

.file-input {
  color: var(--reich-lightgray);
  font-family: var(--font-mono);
  font-size: 13px;
}

.poster-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.poster-gallery-item {
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s;
}

.poster-gallery-item:hover {
  border-color: var(--reich-red);
  box-shadow: 0 0 20px rgba(179,0,0,0.2);
}

.poster-frame-lg {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}

.poster-frame-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-info {
  padding: 14px;
}

.poster-info h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--reich-gold);
  letter-spacing: 1px;
}

.poster-info p {
  font-size: 13px;
  color: var(--reich-cream);
  margin-top: 6px;
  opacity: 0.75;
}

.poster-date {
  font-size: 11px;
  color: var(--reich-lightgray);
  margin-top: 8px;
  font-family: var(--font-mono);
}

.delete-form {
  padding: 0 14px 14px;
}

/* === ARCHIVE PAGE === */
.vod-archive {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vod-archive-item {
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  border-radius: 2px;
  padding: 20px;
}

.vod-player-wrapper {
  margin-bottom: 16px;
}

.vod-video {
  width: 100%;
  max-height: 500px;
  background: #000;
  border: 1px solid var(--reich-lightgray);
}

.vod-details h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--reich-gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.vod-desc {
  font-size: 14px;
  color: var(--reich-cream);
  margin-bottom: 8px;
  opacity: 0.75;
}

.vod-details .vod-date {
  font-size: 11px;
  color: var(--reich-lightgray);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .live-container { grid-template-columns: 1fr; height: auto; }
  .chat-section { max-height: 400px; }
  .content-grid { grid-template-columns: 1fr; }
  .stream-player { min-height: 250px; }
  .admin-main { padding: 10px; }
}

@media (max-width: 600px) {
  .site-title { font-size: 22px; letter-spacing: 3px; }
  .hero-title { font-size: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .nav-link { font-size: 13px; padding: 4px 10px; }
  .poster-gallery { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .user-list-panel { max-height: 120px; }
}

/* === DONATE PAGE === */
.donate-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.donate-subtitle {
  color: var(--reich-gold);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 8px;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.donate-card {
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.donate-card:hover {
  border-color: var(--reich-red);
  box-shadow: 0 0 25px rgba(179,0,0,0.25);
}

.donate-card.featured {
  border-color: var(--reich-red);
  box-shadow: 0 0 30px rgba(179,0,0,0.3);
  transform: scale(1.02);
}

.donate-tier-header {
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid;
}

.donate-tier-header.bronze {
  background: linear-gradient(180deg, #3d2b1f 0%, #2a1a10 100%);
  border-color: #8b6914;
}

.donate-tier-header.bronze h3 { color: #cd7f32; }

.donate-tier-header.silver {
  background: linear-gradient(180deg, #2a2a30 0%, #1a1a20 100%);
  border-color: #888;
}

.donate-tier-header.silver h3 { color: #c0c0c0; }

.donate-tier-header.gold {
  background: linear-gradient(180deg, #3d2a00 0%, #2a1a00 100%);
  border-color: #c4a44a;
}

.donate-tier-header.gold h3 { color: var(--reich-gold); }

.donate-tier-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.tier-amount {
  font-family: var(--font-gothic);
  font-size: 32px;
  color: var(--reich-white);
  text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.tier-perks {
  list-style: none;
  padding: 20px;
  flex: 1;
}

.tier-perks li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--reich-cream);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  opacity: 0.8;
}

.tier-perks li::before {
  content: '✠ ';
  color: var(--reich-red);
  font-size: 10px;
}

.donate-form {
  padding: 0 20px 20px;
}

.custom-donate {
  text-align: center;
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-red);
  padding: 30px;
  border-radius: 2px;
}

.custom-donate h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--reich-gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.custom-donate p {
  font-size: 14px;
  color: var(--reich-cream);
  opacity: 0.7;
  margin-bottom: 20px;
}

.custom-donate-form { margin-top: 10px; }

.custom-amount-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.crypto-section {
  text-align: center;
  padding: 20px;
  background: var(--reich-darkgray);
  border: 1px solid var(--reich-lightgray);
  border-radius: 2px;
}

.crypto-section h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--reich-gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.crypto-section p {
  font-size: 13px;
  color: var(--reich-cream);
  opacity: 0.7;
  margin-bottom: 16px;
}

.crypto-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.crypto-badge {
  background: var(--reich-black);
  border: 1px solid var(--reich-gold);
  color: var(--reich-gold);
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
}

.success-banner {
  background: rgba(0,255,0,0.08);
  border: 1px solid rgba(0,255,0,0.3);
  color: #44ff44;
  padding: 20px;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 2px;
  margin-bottom: 30px;
}
