/* =============================================
   SKLEP MINECRAFT — VANILLA THEME
   ============================================= */

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

:root {
    /* Minecraft Palette */
    --mc-grass:      #5D8A3C;
    --mc-grass-top:  #79C05A;
    --mc-dirt:       #866043;
    --mc-stone:      #7F7F7F;
    --mc-diamond:    #4AECDC;
    --mc-gold:       #FECD36;
    --mc-emerald:    #17DD62;
    --mc-lapis:      #1D69A8;
    --mc-redstone:   #C91919;
    --mc-netherite:  #4A3B3B;
    --mc-creeper:    #5A7C1A;

    /* UI Colors */
    --bg-dark:       #0F0F0F;
    --bg-card:       #1A1A1A;
    --bg-card-hover: #222222;
    --bg-border:     #2E2E2E;
    --bg-overlay:    rgba(0,0,0,0.85);

    --text-primary:  #F0F0F0;
    --text-secondary:#A0A0A0;
    --text-muted:    #666666;

    --accent:        #79C05A;
    --accent-hover:  #5D8A3C;
    --accent-glow:   rgba(121, 192, 90, 0.3);
    --gold-glow:     rgba(254, 205, 54, 0.3);

    /* Spacing */
    --radius-sm:     4px;
    --radius-md:     8px;
    --radius-lg:     12px;

    /* Pixel border */
    --pixel-border: 3px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ---- PIXEL FONT HELPERS ---- */
.pixel-text     { font-family: 'Press Start 2P', monospace; }
.pixel-text-sm  { font-family: 'Press Start 2P', monospace; font-size: 0.7rem; }

/* ---- PARTICLES ---- */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--mc-grass-top);
    opacity: 0;
    animation: float-particle linear infinite;
    image-rendering: pixelated;
}

@keyframes float-particle {
    0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ---- HEADER ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(12px);
    border-bottom: var(--pixel-border) solid var(--bg-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }

.logo-icon { position: relative; }

.creeper-face {
    width: 44px;
    height: 44px;
    background: var(--mc-creeper);
    border-radius: 2px;
    display: grid;
    place-items: center;
    box-shadow: inset -4px -4px 0 rgba(0,0,0,0.3), 0 0 16px var(--accent-glow);
    padding: 6px;
    position: relative;
}

.creeper-eye {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #111;
    border-radius: 1px;
    top: 10px;
}
.creeper-eye.left  { left: 8px; }
.creeper-eye.right { right: 8px; }

.creeper-mouth {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.cm-row { display: flex; gap: 1px; }
.cm-row span { width: 5px; height: 5px; border-radius: 1px; }
.cm-row .b { background: #111; }
.cm-row .w { background: transparent; }

.logo-text   { display: flex; flex-direction: column; }
.logo-title  { font-family: 'Press Start 2P', monospace; font-size: 0.65rem; color: var(--mc-grass-top); line-height: 1.4; letter-spacing: 1px; }
.logo-sub    { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
}
.header-nav::-webkit-scrollbar { display: none; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
    border-color: var(--bg-border);
}

.nav-link.active {
    color: var(--mc-grass-top);
    background: rgba(121,192,90,0.1);
    border-color: var(--mc-grass);
}

.nav-icon { font-size: 0.9rem; }

/* ---- HERO ---- */
.hero {
    position: relative;
    padding: 80px 24px 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #111 0%, #0F0F0F 100%);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(121,192,90,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(121,192,90,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    line-height: 1.6;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.8);
}

.hero-highlight {
    color: var(--mc-grass-top);
    text-shadow: 0 0 30px var(--accent-glow), 4px 4px 0 var(--mc-grass);
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.badge {
    padding: 6px 14px;
    background: var(--bg-card);
    border: 2px solid var(--bg-border);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: 'VT323', monospace;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Dekoracyjne bloki */
.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-block {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    image-rendering: pixelated;
    opacity: 0.15;
    animation: float-block ease-in-out infinite;
}

.block-grass  { background: var(--mc-grass);   top: 20%; left: 5%;  animation-duration: 4s;  animation-delay: 0s; }
.block-diamond{ background: var(--mc-diamond);  top: 60%; left: 10%; animation-duration: 5s;  animation-delay: 1s; }
.block-gold   { background: var(--mc-gold);     top: 30%; right:8%;  animation-duration: 3.5s;animation-delay: 0.5s; }
.block-tnt    { background: var(--mc-redstone); top: 70%; right:5%;  animation-duration: 6s;  animation-delay: 2s; }

@keyframes float-block {
    0%,100% { transform: translateY(0)    rotate(0deg); }
    50%      { transform: translateY(-16px) rotate(8deg); }
}

/* ---- TOAST ---- */
.toast {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 200;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    animation: toast-in 0.4s ease, toast-out 0.4s ease 4.6s forwards;
    max-width: 400px;
    border: 2px solid;
}

.toast-success { background: rgba(23,221,98,0.15); border-color: var(--mc-emerald); color: #7FFFC0; }
.toast-error   { background: rgba(201,25,25,0.15); border-color: var(--mc-redstone); color: #FF8080; }

@keyframes toast-in  { from { transform: translateX(120%); opacity:0; } to { transform:translateX(0); opacity:1; } }
@keyframes toast-out { from { opacity:1; } to { opacity:0; } }

/* ---- MAIN ---- */
.shop-main { position: relative; z-index: 1; padding: 40px 0 80px; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---- EMPTY STATE ---- */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    max-width: 600px;
    margin: 0 auto;
}
.empty-icon { font-size: 4rem; margin-bottom: 20px; }
.empty-state h2 { font-family: 'Press Start 2P', monospace; font-size: 1rem; margin-bottom: 12px; color: var(--mc-gold); }
.empty-state p  { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.empty-state code {
    background: var(--bg-card);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    color: var(--mc-diamond);
}

.setup-guide {
    margin-top: 36px;
    background: var(--bg-card);
    border: 2px solid var(--bg-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: left;
}
.setup-guide h3 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--mc-gold);
}
.setup-guide ol {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.setup-guide li { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }
.setup-guide strong { color: var(--text-primary); }

/* ---- CATEGORY SECTION ---- */
.category-section { margin-bottom: 60px; }

.category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-border);
}

.category-title-wrap { display: flex; align-items: flex-start; gap: 14px; }

.category-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 2px solid var(--bg-border);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.category-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.category-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

.category-count {
    flex-shrink: 0;
    padding: 4px 12px;
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ---- PACKAGES GRID ---- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* ---- PACKAGE CARD ---- */
.package-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--bg-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: var(--mc-grass);
    box-shadow: 0 12px 40px rgba(121,192,90,0.15);
}

.package-card.featured {
    border-color: var(--mc-gold);
    box-shadow: 0 0 20px var(--gold-glow);
}
.package-card.featured:hover {
    border-color: var(--mc-gold);
    box-shadow: 0 12px 40px var(--gold-glow);
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 4px 10px;
    background: var(--mc-gold);
    color: #1A1000;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 3px;
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 0.5px;
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    padding: 4px 10px;
    background: var(--mc-redstone);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 3px;
    font-family: 'Press Start 2P', monospace;
    animation: pulse-badge 1.5s ease-in-out infinite;
}

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

/* Package Image */
.package-image-wrap {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #1A1A1A 0%, #111 100%);
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.package-card:hover .package-image { transform: scale(1.05); }

.package-image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1E1E1E 0%, #141414 100%);
}

.placeholder-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 0 16px rgba(255,255,255,0.1));
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.image-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Package Body */
.package-body {
    flex: 1;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-name {
    font-family: 'VT323', monospace;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: var(--text-primary);
}

.package-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--bg-border);
    margin-top: auto;
}

/* Price */
.price-block { display: flex; flex-direction: column; align-items: flex-start; }

.price-main {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.85rem;
    color: var(--mc-grass-top);
    text-shadow: 0 0 10px var(--accent-glow);
}

.featured .price-main { color: var(--mc-gold); text-shadow: 0 0 10px var(--gold-glow); }

.price-old {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-family: 'VT323', monospace;
}

/* Buy Button */
.btn-buy {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--mc-grass);
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 3px 0 var(--mc-grass);
    position: relative;
    top: 0;
    font-family: 'Inter', sans-serif;
}

.btn-buy:hover {
    background: var(--mc-grass-top);
    transform: translateY(-2px);
    box-shadow: 0 5px 0 var(--mc-grass);
}

.btn-buy:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--mc-grass);
}

.featured .btn-buy {
    background: var(--mc-gold);
    color: #1A1000;
    box-shadow: 0 3px 0 #B8942A;
}
.featured .btn-buy:hover { background: #FFD84D; }

/* ---- MODAL ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(6px);
}

.modal-overlay.open { display: flex; animation: overlay-in 0.25s ease; }

@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }

.modal {
    background: #1A1A1A;
    border: 2px solid #2E2E2E;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8);
    position: relative;
    animation: modal-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-in {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to   { transform: scale(1)   translateY(0);    opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--bg-border);
    border: none;
    color: var(--text-secondary);
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    display: grid;
    place-items: center;
    transition: all 0.2s;
}
.modal-close:hover { background: var(--mc-redstone); color: #fff; }

.modal-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--bg-border);
}

.modal-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.modal-package-name {
    font-family: 'VT323', monospace;
    font-size: 1.4rem;
    color: var(--mc-grass-top);
    margin-bottom: 4px;
}

.modal-price {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    color: var(--mc-gold);
}

.modal-body { padding: 24px 28px 28px; }

.input-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 500;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.mc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-border);
    border: 2px solid var(--bg-border);
    image-rendering: pixelated;
    transition: border-color 0.2s;
}

.mc-avatar img { width: 100%; height: 100%; object-fit: cover; image-rendering: pixelated; }

.player-input {
    flex: 1;
    background: #0F0F0F;
    border: 2px solid var(--bg-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.2s;
}

.player-input:focus { border-color: var(--mc-grass); }
.player-input:focus + .mc-avatar,
.input-wrap:focus-within .mc-avatar { border-color: var(--mc-grass); }

.input-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-checkout {
    width: 100%;
    padding: 14px 24px;
    background: var(--mc-grass);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 0 var(--mc-grass);
    transition: all 0.2s;
    margin-bottom: 16px;
    position: relative;
    top: 0;
}

.btn-checkout:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-checkout:not(:disabled):hover {
    background: var(--mc-grass-top);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--mc-grass);
}

.btn-checkout:not(:disabled):active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--mc-grass);
}

.btn-arrow { font-size: 1.2rem; transition: transform 0.2s; }
.btn-checkout:not(:disabled):hover .btn-arrow { transform: translateX(4px); }

.secure-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

/* ---- FOOTER ---- */
.site-footer {
    background: #0A0A0A;
    border-top: 2px solid var(--bg-border);
    padding: 40px 24px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-logo { font-size: 0.7rem; color: var(--mc-grass); }

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-info a { color: var(--mc-grass); text-decoration: none; }
.footer-info a:hover { text-decoration: underline; }

.footer-note { font-size: 0.72rem; color: #444; max-width: 500px; line-height: 1.6; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--mc-grass); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .header-inner { height: auto; padding: 12px 16px; flex-direction: column; gap: 10px; }
    .header-nav { width: 100%; justify-content: flex-start; }
    .nav-link { padding: 5px 10px; font-size: 0.75rem; }

    .hero { padding: 50px 16px 40px; }
    .hero-title { font-size: 1rem; }
    .hero-decoration { display: none; }

    .container { padding: 0 16px; }

    .packages-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }

    .category-header { flex-direction: column; }
    .modal { max-width: 100%; }
    .modal-header, .modal-body { padding: 20px; }

    .floating-block { display: none; }
}

@media (max-width: 480px) {
    .packages-grid { grid-template-columns: 1fr; }
    .logo-title { font-size: 0.55rem; }
    .hero-title { font-size: 0.85rem; }
}

/* ---- ERROR BOX ---- */
.error-box {
    background: rgba(201,25,25,0.12);
    border: 2px solid var(--mc-redstone);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 16px 0 24px;
    font-size: 0.82rem;
    color: #fca5a5;
    text-align: left;
    line-height: 1.7;
}
.error-box code {
    background: rgba(0,0,0,0.3);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.78rem;
    word-break: break-all;
    color: #f87171;
}

/* ---- SETUP STEPS ---- */
.setup-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--bg-border);
    text-align: left;
}
.setup-step:last-child { border-bottom: none; }

.step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--mc-grass);
    color: #fff;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    border-radius: 4px;
    display: grid;
    place-items: center;
    box-shadow: 0 3px 0 var(--mc-grass);
    margin-top: 2px;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: block;
    margin-top: 4px;
}

.step-desc a { color: var(--mc-grass-top); }

.code-block {
    background: #0a0a0a;
    border: 1px solid var(--bg-border);
    border-radius: 4px;
    padding: 12px 14px;
    font-family: monospace;
    font-size: 0.78rem;
    color: #4ade80;
    margin-top: 8px;
    overflow-x: auto;
    white-space: pre;
}

.setup-guide { padding: 4px 0; }
