.minecraft-page {
    --mc-bg: #101412;
    --mc-surface: #171d1a;
    --mc-surface-2: #202820;
    --mc-panel: #253026;
    --mc-border: rgba(166, 185, 154, 0.24);
    --mc-border-strong: rgba(166, 185, 154, 0.42);
    --mc-text: #f2f5ed;
    --mc-muted: #b8c3b0;
    --mc-soft: #d7dfcf;
    --mc-green: #72b35a;
    --mc-green-dark: #4e8c40;
    --mc-gold: #d2aa55;
    --mc-stone: #8e978d;
    --mc-copper: #c47b42;
    --mc-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    --mc-radius: 8px;
    background: var(--mc-bg);
    color: var(--mc-text);
}

.minecraft-page main {
    background:
        linear-gradient(180deg, rgba(114, 179, 90, 0.08), transparent 380px),
        var(--mc-bg);
}

.minecraft-page .container {
    width: min(1160px, 92vw);
    max-width: none;
}

.mc-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(16, 20, 18, 0.92);
    border-bottom: 1px solid var(--mc-border);
    backdrop-filter: blur(16px);
}

.mc-navbar {
    min-height: 72px;
    padding: 0.75rem 0;
}

.mc-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--mc-text);
    text-decoration: none;
    font-weight: 800;
}

.mc-brand:hover {
    color: var(--mc-soft);
}

.mc-brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background:
        linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.14) 50%),
        linear-gradient(180deg, #72b35a 0 50%, #8e978d 50% 100%);
    background-size: 17px 17px, 100% 100%;
    border: 2px solid rgba(242, 245, 237, 0.16);
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.mc-brand-text {
    font-family: "Bricolage Grotesque", "Inter", sans-serif;
    font-size: 1.1rem;
    line-height: 1.1;
}

.mc-menu-button {
    border-color: var(--mc-border);
    min-width: 44px;
    min-height: 44px;
}

.mc-menu-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(114, 179, 90, 0.25);
}

.mc-nav-link {
    color: var(--mc-muted);
    font-weight: 650;
    font-size: 0.94rem;
    padding: 0.6rem 0.85rem !important;
    border-radius: var(--mc-radius);
}

.mc-nav-link:hover,
.mc-nav-link:focus {
    color: var(--mc-text);
    background: rgba(114, 179, 90, 0.12);
}

.mc-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.75rem;
}

.mc-language-button,
.mc-nav-cta,
.mc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: var(--mc-radius);
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.mc-language-button {
    gap: 0.5rem;
    padding: 0.65rem 0.9rem;
    color: var(--mc-text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mc-border);
}

.mc-language-button:hover,
.mc-language-button:focus {
    color: var(--mc-gold);
    border-color: var(--mc-gold);
    background: rgba(210, 170, 85, 0.1);
}

.mc-language-menu {
    padding: 0.45rem;
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius);
    background: var(--mc-surface-2);
    box-shadow: var(--mc-shadow);
}

.mc-language-menu .dropdown-item {
    min-height: 40px;
    border-radius: 6px;
    color: var(--mc-text);
}

.mc-language-menu .dropdown-item:hover,
.mc-language-menu .dropdown-item:focus,
.mc-language-menu .dropdown-item.active {
    color: #0f160f;
    background: var(--mc-green);
}

.mc-nav-cta {
    padding: 0.65rem 1rem;
    color: #0f160f;
    background: var(--mc-green);
    border: 1px solid var(--mc-green);
}

.mc-nav-cta:hover,
.mc-button-primary:hover {
    color: #0f160f;
    background: #89c46f;
    border-color: #89c46f;
    transform: translateY(-1px);
}

.mc-home a:focus-visible,
.mc-header a:focus-visible,
.mc-footer a:focus-visible,
.mc-faq-item summary:focus-visible {
    outline: 3px solid rgba(210, 170, 85, 0.8);
    outline-offset: 4px;
}

.mc-section {
    padding: 5rem 0;
}

.mc-section-heading {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.mc-section-heading h2,
.mc-hero-copy h1,
.mc-pathing-box h2,
.mc-footer-column h2 {
    font-family: "Bricolage Grotesque", "Inter", sans-serif;
    letter-spacing: 0;
}

.mc-section-heading h2 {
    color: var(--mc-text);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.mc-section-heading p,
.mc-hero-subtitle,
.mc-info-card p,
.mc-step-content p,
.mc-pathing-box p,
.mc-note-panel p,
.mc-faq-item p,
.mc-footer p {
    color: var(--mc-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.mc-eyebrow {
    color: var(--mc-gold) !important;
    font-size: 0.78rem !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.mc-tool-section {
    padding-top: 2.5rem;
    background:
        linear-gradient(180deg, rgba(32, 40, 32, 0.8), rgba(16, 20, 18, 0.96)),
        var(--mc-bg);
}

.mc-tool-frame-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mc-border-strong);
    border-radius: var(--mc-radius);
    background: #0d0f0e;
    box-shadow: var(--mc-shadow);
}

.mc-tool-frame {
    display: block;
    width: 100%;
    height: 1040px;
    border: 0;
    background: #fff;
}

.mc-fullscreen-button {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--mc-radius);
    background: rgba(16, 20, 18, 0.9);
    color: var(--mc-text);
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.mc-fullscreen-button:hover,
.mc-fullscreen-button:focus {
    border-color: var(--mc-gold);
    color: var(--mc-gold);
}

.mc-tool-frame-shell:fullscreen {
    width: 100vw;
    height: 100vh;
    border: 0;
    border-radius: 0;
    background: #050706;
}

.mc-tool-frame-shell:fullscreen .mc-tool-frame {
    height: 100vh;
}

.mc-frame-fallback {
    margin: 1rem 0 0;
    color: var(--mc-muted);
    text-align: center;
}

.mc-frame-fallback a {
    color: var(--mc-gold);
    font-weight: 700;
}

.mc-hero {
    padding: 5rem 0;
    background:
        linear-gradient(135deg, rgba(114, 179, 90, 0.12), rgba(196, 123, 66, 0.08)),
        var(--mc-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 2rem;
    align-items: center;
}

.mc-hero-copy h1 {
    max-width: 780px;
    color: var(--mc-text);
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.mc-hero-subtitle {
    max-width: 720px;
    font-size: 1.12rem;
}

.mc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.mc-button {
    padding: 0.8rem 1.1rem;
}

.mc-button-primary {
    color: #0f160f;
    background: var(--mc-green);
    border: 1px solid var(--mc-green);
}

.mc-button-secondary {
    color: var(--mc-text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--mc-border);
}

.mc-button-secondary:hover {
    color: var(--mc-text);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--mc-border-strong);
}

.mc-hero-panel,
.mc-info-card,
.mc-step,
.mc-pathing-box,
.mc-note-panel,
.mc-faq-item {
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius);
    background: rgba(37, 48, 38, 0.8);
}

.mc-hero-panel {
    padding: 1.2rem;
    box-shadow: var(--mc-shadow);
}

.mc-highlight-row {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0.9rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(166, 185, 154, 0.16);
}

.mc-highlight-row:last-child {
    border-bottom: 0;
}

.mc-highlight-color {
    width: 28px;
    height: 28px;
    margin-top: 0.2rem;
    border-radius: 5px;
    background: var(--swatch);
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.mc-highlight-row h2 {
    color: var(--mc-text);
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
}

.mc-highlight-row p {
    color: var(--mc-muted);
    margin: 0;
}

.mc-video-section,
.mc-how-section,
.mc-faq-section {
    background: var(--mc-surface);
}

.mc-video-shell {
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius);
    background: #0b0d0c;
    aspect-ratio: 16 / 9;
    box-shadow: var(--mc-shadow);
}

.mc-video-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.mc-card-grid {
    display: grid;
    gap: 1rem;
}

.mc-card-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mc-info-card {
    position: relative;
    min-height: 230px;
    padding: 1.35rem;
}

.mc-card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 1rem;
    border-radius: 6px;
    background: rgba(114, 179, 90, 0.16);
    color: var(--mc-gold);
    font-weight: 900;
}

.mc-info-card h3,
.mc-step-content h3,
.mc-note-panel h3,
.mc-faq-item h3 {
    color: var(--mc-text);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.mc-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
}

.mc-step {
    padding: 1rem;
}

.mc-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 0.9rem;
    border-radius: 6px;
    background: var(--mc-green);
    color: #0f160f;
    font-weight: 900;
}

.mc-pathing-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
    margin-top: 2rem;
    padding: 1.5rem;
    background:
        linear-gradient(135deg, rgba(114, 179, 90, 0.12), rgba(210, 170, 85, 0.08)),
        var(--mc-panel);
}

.mc-pathing-box h2 {
    color: var(--mc-text);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 850;
    margin-bottom: 0.75rem;
}

.mc-pathing-box ul {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mc-pathing-box li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--mc-soft);
}

.mc-pathing-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--mc-gold);
}

.mc-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius);
    background: var(--mc-panel);
    box-shadow: var(--mc-shadow);
}

.mc-benefits-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: var(--mc-text);
}

.mc-benefits-table th,
.mc-benefits-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(166, 185, 154, 0.16);
    vertical-align: top;
}

.mc-benefits-table th {
    color: var(--mc-gold);
    background: rgba(16, 20, 18, 0.72);
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mc-benefits-table td {
    color: var(--mc-soft);
}

.mc-benefits-table tbody tr:last-child td {
    border-bottom: 0;
}

.mc-note-panel {
    margin-top: 1.25rem;
    padding: 1.35rem;
}

.mc-note-panel p {
    margin-bottom: 0;
}

.mc-faq-list {
    display: grid;
    gap: 0.85rem;
    max-width: 900px;
    margin: 0 auto;
}

.mc-faq-item {
    padding: 0;
}

.mc-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 64px;
    padding: 1rem 1.1rem;
    cursor: pointer;
    list-style: none;
}

.mc-faq-item summary::-webkit-details-marker {
    display: none;
}

.mc-faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--mc-gold);
    font-size: 1.5rem;
    font-weight: 800;
}

.mc-faq-item[open] summary::after {
    content: "-";
}

.mc-faq-item h3 {
    margin: 0;
    font-size: 1.03rem;
}

.mc-faq-item p {
    margin: 0;
    padding: 0 1.1rem 1.1rem;
}

.mc-footer {
    padding: 4rem 0 2rem;
    background: #0b0f0d;
    border-top: 1px solid var(--mc-border);
}

.mc-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
    gap: 2rem;
}

.mc-footer-brand p {
    max-width: 430px;
    margin-top: 1rem;
}

.mc-footer-column h2 {
    color: var(--mc-text);
    font-size: 1rem;
    font-weight: 850;
    margin-bottom: 1rem;
}

.mc-footer-column ul {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mc-footer-column a {
    color: var(--mc-muted);
    text-decoration: none;
}

.mc-footer-column a:hover {
    color: var(--mc-gold);
}

.mc-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(166, 185, 154, 0.16);
}

.mc-footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
}

@media (max-width: 991px) {
    .mc-navbar .navbar-collapse {
        padding: 1rem 0;
    }

    .mc-nav-actions {
        align-items: stretch;
        flex-direction: column;
        margin: 0.75rem 0 0;
    }

    .mc-language-button {
        width: 100%;
    }

    .mc-nav-cta {
        width: 100%;
    }

    .mc-hero-grid,
    .mc-pathing-box,
    .mc-footer-grid {
        grid-template-columns: 1fr;
    }

    .mc-card-grid-three,
    .mc-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mc-section,
    .mc-hero {
        padding: 3.5rem 0;
    }

    .mc-tool-section {
        padding-top: 1.5rem;
    }

    .mc-tool-frame {
        height: 1040px;
    }

    .mc-fullscreen-button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .mc-card-grid-three,
    .mc-steps {
        grid-template-columns: 1fr;
    }

    .mc-hero-actions {
        flex-direction: column;
    }

    .mc-button {
        width: 100%;
    }

    .mc-brand-text {
        font-size: 1rem;
    }
}
