/* =============================================
   MINECRAFT HOSTING - Premium Glass Theme
   Shared by minecraft.html & minecraft-amd.html
   ============================================= */

/* === Hero Overrides === */
.mc-hero {
    padding-top: 120px !important;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mc-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 700px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.mc-hero .container {
    position: relative;
    z-index: 2;
    display: block !important;
    grid-template-columns: none !important;
    text-align: center;
}

.mc-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Animated badge */
.mc-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid;
}

.mc-live-badge .ping-dot {
    position: relative;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

.mc-live-badge .ping-dot span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: mc-ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
    opacity: 0.75;
}

.mc-live-badge .ping-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

@keyframes mc-ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* CPU Switch (page links styled as toggle) */
.mc-cpu-switch {
    display: inline-flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 5px;
    gap: 4px;
}

.mc-cpu-switch a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--color-text-secondary);
    transition: all 0.25s ease;
}

.mc-cpu-switch a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.mc-cpu-switch a.active-intel {
    background: #3c83f6;
    color: #fff;
    box-shadow: 0 0 16px rgba(60,131,246,0.4);
}

.mc-cpu-switch a.active-amd {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    box-shadow: 0 0 16px rgba(239,68,68,0.4);
}

.mc-cpu-switch svg {
    width: 16px;
    height: 16px;
}

.mc-cpu-sub {
    font-size: 0.7rem;
    opacity: 0.75;
    font-weight: 400;
}

/* Hero title */
.mc-hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.mc-hero-sub {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

/* === Plans Grid === */
.mc-plans-section {
    padding: 5rem 0 4rem;
}

.mc-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid;
}

.mc-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.mc-section-sub {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.mc-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

/* Glass card */
.mc-card {
    position: relative;
    background: rgba(15, 18, 28, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.mc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.14);
}

.mc-card.intel:hover { box-shadow: 0 0 30px rgba(60,131,246,0.15); border-color: rgba(60,131,246,0.3); }
.mc-card.amd:hover   { box-shadow: 0 0 30px rgba(239,68,68,0.15);  border-color: rgba(239,68,68,0.3); }

/* Card plan image - centered at top */
.mc-card-bg-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 110px;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.mc-card-bg-icon img {
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
    transition: transform 0.35s ease;
}
.mc-card:hover .mc-card-bg-icon img {
    transform: translateY(-6px) scale(1.07);
}

/* Card top row - remove padding since image is above it now */
.mc-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-right: 0;
}


.mc-card-name {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 4px;
}

.mc-card-tier {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.tier-starter  { background: rgba(255,255,255,0.08); color: #a8b3cf; }
.tier-popular  { background: rgba(60,131,246,0.18); color: #60a5fa; border: 1px solid rgba(60,131,246,0.25); }
.tier-value    { background: rgba(46,229,157,0.12); color: #34d399; border: 1px solid rgba(46,229,157,0.2); }
.tier-advanced { background: rgba(255,255,255,0.08); color: #a8b3cf; }
.tier-premium  { background: rgba(168,85,247,0.15); color: #c084fc; border: 1px solid rgba(168,85,247,0.2); }
.tier-enterprise { background: rgba(251,191,36,0.12); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.tier-network  { background: rgba(99,102,241,0.15); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.3); }
.tier-beast    { background: rgba(139,92,246,0.15); color: #d8b4fe; border: 1px solid rgba(139,92,246,0.3); }
.tier-ultra    { background: rgba(249,115,22,0.15); color: #fb923c; border: 1px solid rgba(249,115,22,0.3); }

.mc-card-price {
    text-align: right;
}
.mc-card-price .amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.mc-card-price .amount sup {
    font-size: 0.9rem;
    vertical-align: super;
}
.mc-card-price .period {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
}

/* Features list */
.mc-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.mc-feat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #c9d4e8;
}

.mc-feat svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.mc-feat strong { color: #fff; }

/* CTA button */
.mc-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.mc-card-btn.btn-intel-default {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.08);
    color: #fff;
}
.mc-card-btn.btn-intel-default:hover, 
.mc-card:hover .mc-card-btn.btn-intel-default {
    background: #3c83f6;
    border-color: #3c83f6;
    box-shadow: 0 0 18px rgba(60,131,246,0.35);
    transform: translateY(-2px);
}

.mc-card-btn.btn-intel-primary {
    background: #3c83f6;
    color: #fff;
    box-shadow: 0 0 18px rgba(60,131,246,0.3);
}
.mc-card-btn.btn-intel-primary:hover { background: #2563eb; box-shadow: 0 0 24px rgba(60,131,246,0.5); transform: translateY(-2px); }

.mc-card-btn.btn-amd-default {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.08);
    color: #fff;
}
.mc-card-btn.btn-amd-default:hover,
.mc-card:hover .mc-card-btn.btn-amd-default {
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-color: transparent;
    box-shadow: 0 0 18px rgba(239,68,68,0.35);
    transform: translateY(-2px);
}

.mc-card-btn.btn-amd-primary {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    box-shadow: 0 0 18px rgba(239,68,68,0.3);
}
.mc-card-btn.btn-amd-primary:hover { box-shadow: 0 0 24px rgba(239,68,68,0.5); transform: translateY(-2px); }

.mc-card-btn svg { width: 16px; height: 16px; }

/* === Features Strip === */
.mc-features-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    padding: 3rem 0;
}

.mc-feat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.2s;
}

.mc-feat-card:hover { border-color: rgba(255,255,255,0.12); }

.mc-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mc-feat-icon svg { width: 22px; height: 22px; }
.mc-feat-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: #fff; }
.mc-feat-card p  { font-size: 0.85rem; color: var(--color-text-secondary); line-height: 1.55; margin: 0; }

/* === CPU Comparison === */
.mc-compare {
    background: linear-gradient(135deg, rgba(255,255,255,0.025) 0%, transparent 60%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 0 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.mc-compare-text { flex: 1; min-width: 260px; }
.mc-compare-text h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.75rem; }
.mc-compare-text p  { color: var(--color-text-secondary); margin-bottom: 1.25rem; line-height: 1.6; font-size: 0.95rem; }

.mc-check-list { display: flex; flex-direction: column; gap: 0.6rem; }
.mc-check-list li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.9rem; color: #c9d4e8; list-style: none;
}
.mc-check-list li svg { width: 18px; height: 18px; color: #34d399; flex-shrink: 0; }

.mc-compare-chips { flex: 1; min-width: 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.mc-cpu-chip {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.mc-cpu-chip .chip-glow {
    position: absolute; inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.mc-cpu-chip-head { display: flex; align-items: center; gap: 0.6rem; }
.mc-cpu-chip-head .chip-logo {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.mc-cpu-chip-head .chip-logo svg { width: 18px; height: 18px; }
.mc-cpu-chip-head h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin: 0; }
.mc-cpu-chip-head span { font-size: 0.7rem; color: var(--color-text-tertiary); }

.mc-bar-row { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.72rem; }
.mc-bar-row-top { display: flex; justify-content: space-between; }
.mc-bar-row-top span:first-child { color: var(--color-text-tertiary); }
.mc-bar-row-top span:last-child  { color: #fff; font-weight: 600; }
.mc-bar-track { height: 5px; background: rgba(255,255,255,0.08); border-radius: 9999px; overflow: hidden; }
.mc-bar-fill  { height: 100%; border-radius: 9999px; }

/* === CTA Banner === */
.mc-cta-banner {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}
.mc-cta-banner h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 0.6rem; }
.mc-cta-banner p  { color: var(--color-text-secondary); max-width: 500px; margin: 0 auto 1.5rem; font-size: 0.95rem; }

/* === Supported Server Software === */
.mc-section-head {
    text-align: center;
    margin-bottom: 2rem;
}
.mc-section-head .mc-section-badge {
    margin-bottom: 0.75rem;
}
.mc-section-head h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.mc-section-head p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
}
.mc-software-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 0 2.5rem;
}
/* Scroller: overflow + fade edges */
.mc-software-scroller {
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
    mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}
.mc-software-scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    width: max-content;
    padding: 0.35rem 0;
}
.mc-software-scroller:hover .mc-software-scroller__inner {
    animation-play-state: paused;
}
/* Row 1: left to right (content moves right) */
.mc-software-scroller.mc-scroll-ltr .mc-software-scroller__inner {
    animation: mc-scroll-ltr 45s linear infinite;
}
@keyframes mc-scroll-ltr {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
/* Row 2: right to left (content moves left) */
.mc-software-scroller.mc-scroll-rtl .mc-software-scroller__inner {
    animation: mc-scroll-rtl 45s linear infinite;
}
@keyframes mc-scroll-rtl {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.mc-software-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}
.mc-software-pill:hover {
    background: rgba(96,165,250,0.12);
    border-color: rgba(96,165,250,0.35);
    color: #fff;
}
.mc-software-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}
.mc-software-pill i { width: 14px; height: 14px; opacity: 0.8; }

@media (prefers-reduced-motion: reduce) {
    .mc-software-scroller .mc-software-scroller__inner { animation: none; }
    .mc-software-scroller__inner { flex-wrap: wrap; justify-content: center; }
}

/* === Additional Features: Panel images strip (right-to-left) + Lightbox === */
.mc-panel-images-scroller {
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 12%, white 88%, transparent);
    mask: linear-gradient(90deg, transparent, white 12%, white 88%, transparent);
    margin-bottom: 2rem;
}
.mc-panel-images-scroller:hover .mc-panel-images-scroller__inner {
    animation-play-state: paused;
}
.mc-panel-images-scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 1rem;
    width: max-content;
    padding: 0.5rem 0;
}
.mc-panel-slide {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    max-width: 200px;
}
.mc-panel-caption {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(226, 232, 240, 0.88);
    text-align: center;
    line-height: 1.25;
}
.mc-panel-images-scroller.mc-scroll-rtl .mc-panel-images-scroller__inner {
    animation: mc-scroll-rtl 50s linear infinite;
}
.mc-panel-thumb {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.mc-panel-thumb:hover {
    border-color: rgba(96,165,250,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    transform: translateY(-2px);
}
.mc-panel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (prefers-reduced-motion: reduce) {
    .mc-panel-images-scroller .mc-panel-images-scroller__inner { animation: none; }
    .mc-panel-images-scroller__inner { flex-wrap: wrap; justify-content: center; }
}

/* Lightbox: fullscreen image, close on X or click outside */
.mc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mc-lightbox.mc-lightbox--open {
    opacity: 1;
    visibility: visible;
}
.mc-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.mc-lightbox__close:hover {
    background: rgba(239,68,68,0.6);
}
.mc-lightbox__close i {
    width: 24px;
    height: 24px;
}
.mc-lightbox__prev,
.mc-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, opacity 0.2s ease;
    z-index: 1;
}
.mc-lightbox__prev { left: 1.5rem; }
.mc-lightbox__next { right: 1.5rem; }
.mc-lightbox__prev:hover,
.mc-lightbox__next:hover {
    background: rgba(96,165,250,0.5);
}
.mc-lightbox__prev i,
.mc-lightbox__next i {
    width: 28px;
    height: 28px;
}
.mc-lightbox__content {
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mc-lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* === Control Panel Section === */
.mc-panel-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 50%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}
.mc-panel-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mc-panel-section h3 i { width: 24px; height: 24px; color: #60a5fa; }
.mc-panel-section > p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.55;
}
.mc-panel-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.mc-panel-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    transition: all 0.2s ease;
}
.mc-panel-item:hover {
    background: rgba(96,165,250,0.08);
    border-color: rgba(96,165,250,0.25);
}
.mc-panel-item i { width: 18px; height: 18px; color: #60a5fa; flex-shrink: 0; }
.mc-panel-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.mc-panel-advanced .mc-feat-card {
    margin: 0;
}
.mc-panel-advanced .mc-feat-icon { width: 40px; height: 40px; }
.mc-panel-advanced .mc-feat-icon svg { width: 20px; height: 20px; }
.mc-panel-advanced .mc-feat-card h4 { font-size: 0.95rem; }
.mc-panel-advanced .mc-feat-card p { font-size: 0.8rem; }

/* === Responsive === */
@media (max-width: 768px) {
    .mc-plans-grid { grid-template-columns: 1fr; }
    .mc-compare { flex-direction: column; gap: 1.5rem; }
    .mc-compare-chips { grid-template-columns: 1fr 1fr; }
    .mc-hero-title { font-size: 2.2rem; }
    .mc-panel-section { padding: 1.5rem; }
    .mc-panel-features { grid-template-columns: repeat(2, 1fr); }
    .mc-software-pill { font-size: 0.75rem; padding: 0.4rem 0.85rem; }
    .mc-software-scroller__inner { gap: 0.5rem; }
}

@media (max-width: 480px) {
    .mc-compare-chips { grid-template-columns: 1fr; }
    .mc-cpu-switch a { padding: 8px 14px; font-size: 0.78rem; }
    .mc-panel-features { grid-template-columns: 1fr; }
    .mc-panel-advanced { grid-template-columns: 1fr; }
}
