/* ==========================================================================
   De Blockertjes - Minecraft Community Stylesheet
   Geïnspireerd op Minecraft pixel art & Katholieke kerkesthetiek
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800;900&family=Press+Start+2P&display=swap');

:root {
  /* De Blockertjes & Minecraft palette */
  --mc-dirt: #4a321f;
  --mc-dirt-light: #6a4a2f;
  --mc-stone: #3a3f47;
  --mc-stone-dark: #24282f;
  --mc-stone-light: #4e555f;
  --mc-cobble: #2f343d;
  --mc-grass: #48b84d;
  --mc-grass-dark: #328336;
  --mc-diamond: #4deeea;
  --mc-gold: #ffb82e;
  --mc-wood: #a0744a;
  --mc-wood-dark: #6e4e30;
  --mc-redstone: #ff3838;
  --mc-sky-dark: #0c1017;
  --mc-sky-blue: #1b263b;

  /* Katholieke & gewijde accentkleuren */
  --catholic-gold: #fdb813;
  --catholic-ruby: #c92a2a;
  --catholic-sapphire: #1971c2;
  --catholic-amber: #d97706;

  --color-orange: #ff6b1a;
  --color-orange-hover: #e55a10;
  --color-cyan: #30b1e6;
  --color-white: #ffffff;
  --color-text-light: #e6edf3;
  --color-text-muted: #9aa7b5;

  --font-pixel: 'Press Start 2P', monospace;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text-light);
  background-color: var(--mc-sky-dark);
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(253, 184, 19, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(48, 177, 230, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #090d14 0%, #121822 50%, #1a2330 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.65;
  font-size: 1.05rem;
  overflow-x: hidden;
}

/* ==========================================================================
   Stained Glass Ribbon (Gebrandschilderd Glas Bovenrand)
   ========================================================================== */
.mc-stained-glass-ribbon {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, 
    #b91c1c 0%, #b91c1c 14%, 
    #ea580c 14%, #ea580c 28%, 
    #eab308 28%, #eab308 42%, 
    #16a34a 42%, #16a34a 57%, 
    #0284c7 57%, #0284c7 71%, 
    #7c3aed 71%, #7c3aed 85%, 
    #db2777 85%, #db2777 100%
  );
  box-shadow: 0 0 14px rgba(234, 179, 8, 0.45);
}

/* ==========================================================================
   Pixel Art Bevel & Borders
   ========================================================================== */
.mc-box {
  background: var(--mc-cobble);
  border: 4px solid var(--mc-stone-dark);
  box-shadow: 
    inset 3px 3px 0px rgba(255, 255, 255, 0.15),
    inset -3px -3px 0px rgba(0, 0, 0, 0.4),
    0 12px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.mc-box--accent {
  border-color: #213242;
  background: linear-gradient(165deg, #223142 0%, #17222f 100%);
}

.mc-box--grass {
  border-top: 8px solid var(--mc-grass);
  box-shadow: 
    inset 0 4px 0 var(--mc-grass-dark),
    0 12px 30px rgba(0, 0, 0, 0.5);
}

.mc-box--gold {
  border: 4px solid #8d6711;
  box-shadow: 
    inset 3px 3px 0px rgba(255, 230, 140, 0.3),
    inset -3px -3px 0px rgba(0, 0, 0, 0.5),
    0 12px 35px rgba(253, 184, 19, 0.15);
}

/* ==========================================================================
   Header & Topbar
   ========================================================================== */
.mc-topbar {
  background: rgba(12, 16, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 4px solid #1f2a38;
  position: sticky;
  top: 0;
  z-index: 100;
}

.mc-topbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mc-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--color-white);
}

.mc-brand__logo {
  width: 42px;
  height: 42px;
  image-rendering: pixelated;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
  transition: transform 0.2s ease;
}

.mc-brand:hover .mc-brand__logo {
  transform: rotate(-8deg) scale(1.08);
}

.mc-brand__titles {
  display: flex;
  flex-direction: column;
}

.mc-brand__name {
  font-family: var(--font-pixel);
  font-size: 0.95rem;
  color: var(--catholic-gold);
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 0 #000;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mc-brand__sub {
  font-size: 0.8rem;
  color: var(--color-cyan);
  font-weight: 700;
}

.mc-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-nav-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.mc-nav-links a:hover {
  color: var(--catholic-gold);
}

.mc-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #202c3a;
  border: 2px solid #35475c;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  color: #c9d8e6 !important;
}

.mc-btn-back:hover {
  background: #2e3e52;
  border-color: var(--color-cyan);
  color: #fff !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.mc-hero {
  max-width: 1100px;
  margin: 2.5rem auto 3.5rem;
  padding: 0 1.25rem;
}

.mc-hero__card {
  padding: 3rem 2.5rem;
  border-radius: 6px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 4px solid #364659;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(253, 184, 19, 0.14) 0%, transparent 65%),
    linear-gradient(180deg, #182432 0%, #121a24 100%);
  box-shadow: 
    inset 0 4px 0 rgba(255, 255, 255, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.6);
}

.mc-hero__badge-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.mc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-pixel);
  font-size: 0.68rem;
  background: rgba(253, 184, 19, 0.15);
  color: var(--catholic-gold);
  border: 2px solid var(--catholic-gold);
  padding: 0.4rem 0.8rem;
  text-transform: uppercase;
  border-radius: 3px;
}

.mc-hero__badge--parochie {
  background: rgba(48, 177, 230, 0.15);
  color: var(--color-cyan);
  border-color: var(--color-cyan);
}

.mc-hero__cube-wrap {
  margin: 0 auto 1.5rem;
  width: 90px;
  height: 90px;
  position: relative;
}

.mc-hero__cube {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5));
  animation: mc-float 3.5s ease-in-out infinite alternate;
}

@keyframes mc-float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(3deg); }
}

.mc-hero__title {
  font-family: var(--font-pixel);
  font-size: 1.75rem;
  line-height: 1.45;
  color: #ffffff;
  text-shadow: 3px 3px 0 #000, 0 0 25px rgba(253, 184, 19, 0.3);
  margin: 0 0 1.2rem;
  letter-spacing: -0.5px;
}

.mc-hero__title span {
  color: var(--catholic-gold);
  display: inline-block;
}

.mc-hero__cross {
  color: var(--catholic-gold);
  margin: 0 0.35rem;
  text-shadow: 0 0 15px rgba(253, 184, 19, 0.6);
}

.mc-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-style: italic;
  font-size: 0.98rem;
  color: #f7e3af;
  background: rgba(253, 184, 19, 0.08);
  padding: 0.6rem 1.4rem;
  border-left: 4px solid var(--catholic-gold);
  border-right: 4px solid var(--catholic-gold);
  border-radius: 4px;
  margin-bottom: 2rem;
}

.mc-hero__lead {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  color: #cbd8e5;
  line-height: 1.75;
}

/* ==========================================================================
   Server Connection Box (Hero CTA)
   ========================================================================== */
.mc-server-card {
  max-width: 680px;
  margin: 0 auto;
  background: #0f151e;
  border: 3px solid #2e3e50;
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.6);
}

.mc-server-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mc-server-card__label {
  font-family: var(--font-pixel);
  font-size: 0.75rem;
  color: var(--catholic-gold);
  text-transform: uppercase;
}

/* Status indicator badge */
.mc-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  background: rgba(72, 184, 77, 0.15);
  border: 1px solid var(--mc-grass);
  color: #79e37e;
}

.mc-status-badge--offline {
  background: rgba(255, 56, 56, 0.15);
  border-color: var(--mc-redstone);
  color: #ff7878;
}

.mc-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mc-grass);
  box-shadow: 0 0 8px var(--mc-grass);
  animation: pulse-dot 1.8s infinite;
}

.mc-status-badge--offline .mc-status-dot {
  background: var(--mc-redstone);
  box-shadow: 0 0 8px var(--mc-redstone);
  animation: none;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.mc-ip-row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.mc-ip-display {
  flex: 1;
  background: #080c12;
  border: 2px solid #2a394a;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-pixel);
  font-size: 1rem;
  color: var(--mc-diamond);
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  overflow-x: auto;
  white-space: nowrap;
  user-select: all;
  border-radius: 4px;
}

/* Minecraft Button Style */
.mc-btn {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  color: #ffffff;
  background: #3e5066;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  border-radius: 4px;
  box-shadow: 
    inset 2px 2px 0px rgba(255, 255, 255, 0.35),
    inset -2px -2px 0px rgba(0, 0, 0, 0.45),
    0 4px 0 #18222d;
  transition: all 0.1s ease;
}

.mc-btn:hover {
  background: #4a607a;
  transform: translateY(-1px);
  box-shadow: 
    inset 2px 2px 0px rgba(255, 255, 255, 0.4),
    inset -2px -2px 0px rgba(0, 0, 0, 0.5),
    0 5px 0 #18222d;
}

.mc-btn:active {
  transform: translateY(3px);
  box-shadow: 
    inset 2px 2px 0px rgba(0, 0, 0, 0.6),
    0 1px 0 #18222d;
}

.mc-btn--primary {
  background: var(--color-orange);
  box-shadow: 
    inset 2px 2px 0px rgba(255, 255, 255, 0.4),
    inset -2px -2px 0px rgba(0, 0, 0, 0.4),
    0 4px 0 #8f3807;
}

.mc-btn--primary:hover {
  background: #ff7d38;
  box-shadow: 
    inset 2px 2px 0px rgba(255, 255, 255, 0.5),
    inset -2px -2px 0px rgba(0, 0, 0, 0.45),
    0 5px 0 #8f3807;
}

.mc-btn--gold {
  background: #d97706;
  color: #fff;
  box-shadow: 
    inset 2px 2px 0px rgba(255, 240, 160, 0.45),
    inset -2px -2px 0px rgba(0, 0, 0, 0.45),
    0 4px 0 #78350f;
}

.mc-btn--gold:hover {
  background: #f59e0b;
}

.mc-btn--green {
  background: var(--mc-grass);
  box-shadow: 
    inset 2px 2px 0px rgba(255, 255, 255, 0.4),
    inset -2px -2px 0px rgba(0, 0, 0, 0.4),
    0 4px 0 #1e5a22;
}

.mc-btn--green:hover {
  background: #56c95b;
}

.mc-server-card__info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.mc-server-card__info strong {
  color: var(--color-text-light);
}

/* ==========================================================================
   Church Showcase & Status Callout (NEW)
   ========================================================================== */
.mc-status-callout {
  background: #171f2b;
  border: 3px solid #d97706;
  border-left: 8px solid var(--catholic-gold);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.mc-status-callout__icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.mc-status-callout__content h3 {
  font-family: var(--font-pixel);
  font-size: 0.95rem;
  color: var(--catholic-gold);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.mc-status-callout__content p {
  margin: 0;
  color: #c9d8e6;
  font-size: 1.05rem;
  line-height: 1.65;
}

.mc-blueprint-showcase {
  background: #111722;
  border: 4px solid #2f4055;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 3.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.mc-blueprint-header {
  background: #182332;
  border-bottom: 3px solid #2f4055;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mc-blueprint-title {
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
}

.mc-blueprint-tag {
  background: rgba(253, 184, 19, 0.15);
  color: var(--catholic-gold);
  border: 1px solid var(--catholic-gold);
  padding: 0.3rem 0.75rem;
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  border-radius: 4px;
}

.mc-blueprint-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.mc-blueprint-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.mc-blueprint-image-wrap:hover .mc-blueprint-image {
  transform: scale(1.02);
}

.mc-blueprint-caption {
  padding: 1.5rem 1.75rem;
  background: #151d28;
  border-top: 3px solid #233040;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.mc-blueprint-caption p {
  margin: 0;
  color: #cbd8e5;
  font-size: 1.05rem;
  line-height: 1.65;
}

.mc-jesus-guide {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #0f1620;
  border: 2px solid #2f4155;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.mc-jesus-guide img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.mc-jesus-guide span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fce79f;
}

/* ==========================================================================
   Content Sections & Catholic Pillars
   ========================================================================== */
.mc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.mc-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.mc-section-header__tag {
  font-family: var(--font-pixel);
  font-size: 0.72rem;
  color: var(--catholic-gold);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.mc-section-header__title {
  font-family: var(--font-pixel);
  font-size: 1.4rem;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 2px 2px 0 #000;
  margin: 0 0 0.75rem;
}

.mc-section-header__desc {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* Grid Layouts */
.mc-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.mc-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.mc-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* Cards */
.mc-card {
  padding: 2rem 1.75rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.mc-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.mc-card__title {
  font-family: var(--font-pixel);
  font-size: 0.92rem;
  color: var(--catholic-gold);
  line-height: 1.5;
  margin: 0 0 0.85rem;
}

.mc-card__text {
  color: #cbd8e5;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* Church Project Showcase Banner */
.mc-church-banner {
  background: 
    linear-gradient(135deg, rgba(253, 184, 19, 0.12) 0%, rgba(48, 177, 230, 0.12) 100%),
    #172330;
  border: 4px solid #33485e;
  border-radius: 6px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.mc-church-banner__text h3 {
  font-family: var(--font-pixel);
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 0.85rem;
  line-height: 1.5;
}

.mc-church-banner__text p {
  color: #cbd8e5;
  margin: 0 0 1.25rem;
  line-height: 1.75;
}

.mc-block-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mc-block-tag {
  background: #0f1721;
  border: 2px solid #2d3e52;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--catholic-gold);
  border-radius: 4px;
}

.mc-cross-art {
  font-size: 4.5rem;
  line-height: 1;
  color: var(--catholic-gold);
  text-shadow: 0 0 30px rgba(253, 184, 19, 0.5);
  padding: 1rem;
}

/* Liturgy / Church Elements Cards */
.mc-liturgy-card {
  background: #141c26;
  border: 3px solid #2b394a;
  border-top: 5px solid var(--catholic-gold);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
}

.mc-liturgy-card__title {
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mc-liturgy-card__desc {
  color: #a9bacb;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Connection Steps */
.mc-step-card {
  background: #141c26;
  border: 3px solid #283747;
  border-radius: 6px;
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mc-step-num {
  font-family: var(--font-pixel);
  font-size: 1.2rem;
  color: var(--catholic-gold);
  background: #2a2010;
  border: 2px solid var(--catholic-gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 4px;
}

.mc-step-title {
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.mc-step-desc {
  font-size: 0.98rem;
  color: #a9bacb;
  margin: 0;
  line-height: 1.65;
}

.mc-step-desc code {
  background: #0a0e14;
  color: var(--mc-diamond);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-family: var(--font-pixel);
  font-size: 0.75rem;
}

/* Server Rules */
.mc-rule-card {
  background: #151d27;
  border: 2px solid #253342;
  border-left: 6px solid var(--catholic-gold);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
}

.mc-rule-card__title {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mc-rule-card__desc {
  margin: 0;
  font-size: 0.95rem;
  color: #9cb0c3;
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.mc-footer {
  background: #080b10;
  border-top: 4px solid #1c2533;
  padding: 3.5rem 1.25rem 2rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.mc-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.mc-footer__title {
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  color: #fff;
  margin: 0 0 1rem;
}

.mc-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mc-footer__links a {
  color: #9cb0c3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}

.mc-footer__links a:hover {
  color: var(--catholic-gold);
}

.mc-footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #1e2938;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.mc-disclaimer {
  max-width: 600px;
  color: #6a7c90;
  font-size: 0.8rem;
}

/* ==========================================================================
   Toast Notification (Copy Feedback)
   ========================================================================== */
.mc-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #111822;
  border: 3px solid var(--mc-grass);
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1000;
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.2s ease;
  pointer-events: none;
}

.mc-toast.is-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 768px) {
  .mc-hero__title {
    font-size: 1.25rem;
  }

  .mc-hero__card {
    padding: 2rem 1.25rem;
  }

  .mc-ip-row {
    flex-direction: column;
  }

  .mc-status-callout {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .mc-blueprint-caption {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mc-church-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem;
  }

  .mc-cross-art {
    display: none;
  }

  .mc-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .mc-topbar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .mc-nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
  }
}
