* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at 50% 50%, #110d18 0%, #06050a 50%, #020204 100%);
    background-attachment: fixed;
    color: #f1f5f9;
    overflow-x: hidden;
    position: relative;
}

/* Beautiful Ambient Glowing Blobs for a Cool Futuristic Minecraft look */
body::before, body::after {
    content: '';
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    z-index: -2;
    filter: blur(140px);
    opacity: 0.35;
    pointer-events: none;
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

body::before {
    background: radial-gradient(circle, rgba(255, 69, 0, 0.6) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

body::after {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 6s;
}

@keyframes pulseGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(80px, 50px) scale(1.2);
    }
}

/* FireMC-Inspired Premium Glowing Loader Architecture */
#loader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: #050507;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.loader-content {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fire-ring {
    width: 180px; height: 180px;
    border: 3px dashed #ff4500;
    border-radius: 50%;
    animation: rotateRing 2.5s linear infinite;
    position: absolute;
    top: -40px;
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.6));
}
.fire-ring-outer {
    width: 210px; height: 210px;
    border: 2px dotted #ffaa00;
    border-radius: 50%;
    animation: rotateRingRev 2s linear infinite;
    position: absolute;
    top: -55px;
    filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.4));
}
.loader-img-logo {
    width: 100px; height: 100px;
    object-fit: contain;
    position: absolute;
    top: 0px;
    filter: drop-shadow(0 0 25px rgba(255, 69, 0, 0.8));
    animation: pulseLogoScale 1.2s ease-in-out infinite alternate;
}
.loader-text {
    font-family: 'Teko', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 5px;
    color: #ffffff;
    margin-top: 180px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.8);
}
.loader-text span { color: #ff4500; }
.loading-bar-container {
    width: 240px; height: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255,69,0,0.2);
}
.loading-bar-fill {
    width: 0%; height: 100%;
    background: linear-gradient(90deg, #ff4500, #ffaa00, #ff0055);
    animation: fillProgress 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}
.loader-subtext {
    font-size: 0.72rem; color: #64748b; letter-spacing: 4px; font-weight: 700; text-transform: uppercase;
}

@keyframes rotateRing { to { transform: rotate(360deg); } }
@keyframes rotateRingRev { to { transform: rotate(-360deg); } }
@keyframes pulseLogoScale { from { transform: scale(0.93); } to { transform: scale(1.07); } }
@keyframes fillProgress { to { width: 100%; } }

#particleCanvas {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* FireMC Sleek Dark Card Component Architecture */
.firemc-card {
    background: linear-gradient(160deg, rgba(15, 15, 22, 0.85) 0%, rgba(8, 8, 12, 0.98) 100%);
    border: 1px solid rgba(255, 69, 0, 0.15);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}
.firemc-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.6), transparent);
    transform: translateX(-100%); transition: 0.6s;
}
.firemc-card:hover::before { transform: translateX(100%); }
.firemc-card:hover {
    border-color: rgba(255, 69, 0, 0.45);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.12);
    transform: translateY(-4px);
}

header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(5, 5, 8, 0.93);
    border-bottom: 2px solid rgba(255, 69, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
}
.nav-container {
    max-width: 1300px; margin: 0 auto; padding: 12px 25px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo-text-group { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-mini-logo { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 8px #ff4500); }
.logo-text { font-family: 'Teko', sans-serif; font-size: 2.2rem; font-weight: 700; color: #fff; letter-spacing: 2px; }
.logo-text span { color: #ff4500; }

#nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-link {
    text-decoration: none; color: #94a3b8; font-weight: 500; font-size: 0.9rem;
    letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: #ff4500; text-shadow: 0 0 10px rgba(255,69,0,0.5); }

.discord-btn {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(88, 101, 242, 0.3) 100%);
    padding: 6px 16px; border-radius: 4px; border: 1px solid #5865F2; color: #fff !important;
}
.discord-btn:hover { background: #5865F2 !important; box-shadow: 0 0 15px rgba(88,101,242,0.4); }
.login-nav-btn {
    background: #ff4500; color: #fff; border: none; padding: 8px 20px; font-family: 'Oxanium', sans-serif;
    border-radius: 4px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.login-nav-btn:hover { background: #e03e00; box-shadow: 0 0 15px rgba(255,69,0,0.4); }

.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: white; transition: 0.3s; }

/* Giant FireMC Style Hero Landing Block */
.hero {
    height: 100vh; display: flex; justify-content: center; align-items: center;
    text-align: center; position: relative; padding: 0 20px;
    background: radial-gradient(circle at center, rgba(255, 69, 0, 0.08) 0%, transparent 70%);
}
.hero-glow-effect {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 180px;
    background: linear-gradient(to top, #060608, transparent); z-index: 1;
}
.hero-content { position: relative; z-index: 5; max-width: 900px; }
.hero-logo-container { display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
.hero-main-logo-img {
    width: 190px; height: 190px; object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(255, 69, 0, 0.65));
    animation: firemcFloat 3.5s ease-in-out infinite alternate;
    margin-bottom: 10px;
}
@keyframes firemcFloat { from { transform: translateY(0px); } to { transform: translateY(-12px); } }

.main-logo {
    font-family: 'Teko', sans-serif; font-size: 6rem; font-weight: 700;
    letter-spacing: 5px; line-height: 1; text-shadow: 0 0 40px rgba(255, 69, 0, 0.7);
}
.main-logo span { color: #ff4500; }
.firemc-divider { width: 120px; height: 3px; background: #ff4500; margin-top: 5px; border-radius: 5px; box-shadow: 0 0 10px #ff4500; }

.hero-subtitle { font-family: 'Oxanium', sans-serif; font-size: 1.3rem; color: #cbd5e1; font-weight: 700; letter-spacing: 4px; margin-top: 15px; margin-bottom: 25px; }
.hero-status-pill {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 69, 0, 0.06); border: 1px solid rgba(255, 69, 0, 0.3);
    padding: 8px 22px; border-radius: 4px; font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; margin-bottom: 35px;
}
.status-dot { width: 9px; height: 9px; background: #00ffcc; border-radius: 50%; box-shadow: 0 0 12px #00ffcc; }

.btn {
    display: inline-flex; align-items: center; gap: 12px; padding: 16px 36px;
    border-radius: 4px; text-decoration: none; font-weight: 700; font-family: 'Oxanium', sans-serif;
    cursor: pointer; transition: all 0.3s; font-size: 1.05rem; letter-spacing: 1px;
}
.btn-primary.btn-fire {
    background: linear-gradient(90deg, #ff4500 0%, #ff0055 100%); color: white; border: none;
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.4);
}
.btn-primary.btn-fire:hover { transform: scale(1.04); box-shadow: 0 0 35px rgba(255, 69, 0, 0.7); }
.btn-secondary.btn-store-link {
    background: transparent; color: white; border: 2px solid rgba(255, 69, 0, 0.4);
}
.btn-secondary.btn-store-link:hover { background: rgba(255, 69, 0, 0.1); border-color: #ff4500; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

.toast {
    position: fixed; bottom: 45px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: #ff4500; color: white; padding: 14px 28px; border-radius: 4px;
    font-weight: 700; font-family: 'Oxanium'; z-index: 5000; opacity: 0; transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(255,69,0,0.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.section-container { max-width: 1200px; margin: 100px auto; padding: 0 25px; }
.section-title {
    font-family: 'Teko', sans-serif; font-size: 3rem; text-align: center; margin-bottom: 50px;
    letter-spacing: 3px; position: relative; color: #fff;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px; background: #ff4500; margin: 8px auto 0; box-shadow: 0 0 8px #ff4500;
}

.status-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.stat-row { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 1.05rem; }
.stat-row strong { color: #94a3b8; font-size: 0.95rem; display: inline-block; width: 180px; }
.clickable-ip { color: #ff4500; font-weight: 700; cursor: pointer; text-decoration: underline; }
.badge-lifesteal { background: rgba(255, 69, 0, 0.15); border: 1px solid rgba(255, 69, 0, 0.4); padding: 2px 10px; border-radius: 4px; color: #ff4500; font-weight: 700; font-size: 0.85rem; }
.text-online { color: #00ffcc; font-weight: 700; }

.mock-screenshot-firemc {
    background: #09090e; border-radius: 6px; border: 1px solid rgba(255,69,0,0.2);
    min-height: 250px; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.screenshot-overlay { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.server-adventure-logo { max-width: 110px; height: auto; filter: drop-shadow(0 0 15px rgba(255,69,0,0.5)); animation: firemcFloat 2.5s ease-in-out infinite alternate; }
.adventure-text { font-family: 'Oxanium'; font-weight: 700; font-size: 1rem; color: #94a3b8; letter-spacing: 2px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.feature-item { text-align: center; padding: 35px 25px; }
.feature-icon-wrapper {
    width: 70px; height: 70px; background: rgba(255, 69, 0, 0.08); border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.feature-icon { font-size: 2rem; color: #ff4500; filter: drop-shadow(0 0 5px #ff4500); }
.feature-item h3 { font-family: 'Oxanium'; font-size: 1.25rem; margin-bottom: 12px; color: #fff; letter-spacing: 1px; }
.feature-item p { font-size: 0.92rem; color: #64748b; line-height: 1.6; }

.ranks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.rank-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 250px; padding: 30px 20px; border-radius: 6px; }
.rank-badge { position: absolute; top: 15px; right: 15px; font-size: 0.7rem; font-family:'Oxanium'; background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 4px; color: #64748b; font-weight: 700; }
.rank-card h3 { font-family: 'Teko', sans-serif; font-size: 2rem; color: #ff4500; letter-spacing: 1px; margin-bottom: 8px; }
.rank-desc { font-size: 0.88rem; color: #94a3b8; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }

.btn-buy-firemc {
    display: block; width: 100%; text-align: center; background: rgba(255, 69, 0, 0.06);
    border: 1px solid rgba(255, 69, 0, 0.25); color: #fff; padding: 11px; border-radius: 4px;
    font-family: 'Oxanium'; font-weight: 700; letter-spacing: 1px; font-size: 0.9rem; cursor: pointer; text-decoration: none; transition: 0.3s;
}
.btn-buy-firemc:hover { background: #ff4500; border-color: #ff4500; box-shadow: 0 0 15px rgba(255,69,0,0.4); }

.highlight-firemc { border-color: rgba(255, 170, 0, 0.35); }
.highlight-firemc h3 { color: #ffaa00; }
.fire-badge { background: #ffaa00 !important; color: #000 !important; }
.supreme-firemc { border-color: rgba(255, 0, 85, 0.4); }
.supreme-firemc h3 { color: #ff0055; }
.god-badge { background: #ff0055 !important; color: #fff !important; }

.fire-rainbow-text {
    font-family: 'Oxanium'; font-weight: 800; font-size: 0.8rem; letter-spacing: 1px; display: block; text-align: center; margin-bottom: 15px;
    background: linear-gradient(90deg, #ff4500, #ffaa00, #ff0055, #ff4500); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: fireShift 3s linear infinite; background-size: 200% auto;
}
@keyframes fireShift { to { background-position: 200% center; } }

.glow-fire-btn { background: #ffaa00; color: #000; border: none; }
.glow-fire-btn:hover { background: #ffbb33; box-shadow: 0 0 20px rgba(255,170,0,0.5); }
.glow-god-btn { background: #ff0055; color: #fff; border: none; }
.glow-god-btn:hover { background: #ff2277; box-shadow: 0 0 20px rgba(255,0,85,0.5); }

/* Premium Store Section Card Style */
.store-teaser-card { text-align: center; padding: 60px 40px; max-width: 800px; margin: 0 auto; border-color: rgba(255, 69, 0, 0.3); }
.teaser-icon-fire { font-size: 4rem; color: #ff4500; margin-bottom: 20px; filter: drop-shadow(0 0 15px rgba(255,69,0,0.5)); }
.store-teaser-card h3 { font-family: 'Teko', sans-serif; font-size: 2.2rem; letter-spacing: 1px; margin-bottom: 12px; }
.store-teaser-card p { color: #94a3b8; font-size: 1rem; margin-bottom: 30px; line-height: 1.6; }
.view-store-fire-btn { padding: 16px 45px; font-family: 'Oxanium'; font-size: 1.1rem; letter-spacing: 1px; font-weight: 700; background: linear-gradient(90deg, #ff4500, #ff0055); border: none; border-radius: 4px; }
.view-store-fire-btn:hover { box-shadow: 0 0 25px rgba(255,69,0,0.6); }

/* Advanced Fullscreen Store Overlay Model */
.store-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 4, 6, 0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center; z-index: 5000;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease; padding: 20px;
}
.store-modal-overlay.active { opacity: 1; pointer-events: auto; }
.store-modal-content {
    width: 100%; max-width: 900px; max-height: 85vh; overflow-y: auto;
    border-color: rgba(255, 69, 0, 0.4); border-radius: 8px; animation: slideDown 0.4s ease forwards; padding: 40px;
}
@keyframes slideDown { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.store-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 15px; }
.store-modal-header h2 { font-family: 'Teko', sans-serif; font-size: 2.4rem; letter-spacing: 1px; }
.store-modal-header h2 span { color: #ff4500; }
.close-store-modal { font-size: 2.5rem; cursor: pointer; color: #64748b; transition: 0.3s; }
.close-store-modal:hover { color: #ff4500; }

.store-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 35px; }
.tab-btn {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); color: #94a3b8;
    padding: 12px 30px; border-radius: 4px; cursor: pointer; font-family:'Oxanium'; font-weight: 700; font-size: 0.95rem; transition: 0.3s;
}
.tab-btn.active, .tab-btn:hover { background: #ff4500; color: white; border-color: #ff4500; box-shadow: 0 0 15px rgba(255,69,0,0.3); }
.store-content-panel { display: none; }
.store-content-panel.active-panel { display: block; }

.store-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.inner-store-card { background: #0c0c12; border-color: rgba(255,255,255,0.03); }
.inner-store-card h3 { font-family: 'Oxanium'; font-size: 1.15rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 12px; }
.text-gold { color: #ffaa00; }
.text-cyan { color: #00ffff; }

.store-item-list { list-style: none; margin-top: 15px; }
.store-item-list li { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.03); font-weight: 500; }
.price-link-tag {
    color: #ff4500; font-weight: 700; font-family: 'Oxanium'; text-decoration: none; background: rgba(255,69,0,0.08);
    padding: 4px 14px; border-radius: 4px; border: 1px solid rgba(255,69,0,0.2); transition: 0.3s;
}
.price-link-tag:hover { background: #ff4500; color: white; }

.keys-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.key-pack-card { text-align: center; background: #0c0c12; border-color: rgba(255,255,255,0.03); padding: 25px 15px; }
.key-pack-card h4 { font-family: 'Oxanium'; font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 0.5px; }
.text-blue { color: #0088ff; } .text-purple { color: #b700ff; } .text-orange { color: #ff7700; }
.key-selector {
    width: 100%; background: #050508; border: 1px solid rgba(255,255,255,0.06); color: white;
    padding: 10px; border-radius: 4px; margin-bottom: 18px; outline: none; font-family: 'Ubuntu';
}
.btn-buy-modal {
    display: block; text-align: center; background: #ff4500; color: white; border-radius: 4px;
    padding: 9px; font-family: 'Oxanium'; font-weight: 700; text-decoration: none; font-size: 0.88rem; transition: 0.3s;
}
.btn-buy-modal:hover { background: #e03e00; box-shadow: 0 0 12px rgba(255,69,0,0.4); }
.dynamic-master-card { border-color: rgba(255, 69, 0, 0.3); background: rgba(255,69,0,0.02); }
.master-glow-btn { background: linear-gradient(90deg, #ff4500, #ff0055); border: none; }
.master-glow-btn:hover { box-shadow: 0 0 15px rgba(255,69,0,0.5); }

.vote-links-container { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
.vote-link-card { text-decoration: none; color: white; min-width: 220px; text-align: center; font-family:'Oxanium'; font-weight: 700; letter-spacing: 1px; padding: 20px; }
.vote-link-card i { color: #ff4500; margin-right: 8px; }

.modal-overlay {
    position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(4,4,6,0.95);
    display: flex; align-items: center; justify-content: center; z-index: 6000;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { width: 100%; max-width: 420px; padding: 35px 25px; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
.modal-header h3 { font-family: 'Teko'; font-size: 1.8rem; letter-spacing: 1px; }
.close-modal { font-size: 1.8rem; cursor: pointer; color: #64748b; }
.close-modal:hover { color: #ff4500; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; color: #94a3b8; font-weight: 500; margin-bottom: 6px; }
.form-group input {
    width: 100%; background: #050508; border: 1px solid rgba(255,255,255,0.07); color: white;
    padding: 12px; border-radius: 4px; outline: none; font-family: 'Ubuntu'; transition: 0.3s;
}
.form-group input:focus { border-color: #ff4500; }

footer { background: #030305; padding: 70px 25px 25px; border-top: 1px solid rgba(255,69,0,0.15); margin-top: 130px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-branding h3 { font-family: 'Teko', sans-serif; font-size: 2.4rem; margin-bottom: 15px; letter-spacing: 1px; }
.footer-branding h3 span { color: #ff4500; }
.footer-branding p { color: #64748b; font-size: 0.92rem; max-width: 340px; line-height: 1.6; }
.footer-links h4 { font-family: 'Oxanium'; font-size: 1rem; margin-bottom: 20px; color: #94a3b8; letter-spacing: 1px; }
.footer-links a { display: block; color: #64748b; text-decoration: none; margin-bottom: 12px; font-size: 0.92rem; transition: 0.3s; }
.footer-links a:hover { color: #ff4500; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.03); text-align: center; padding-top: 25px; margin-top: 50px; color: #475569; font-size: 0.82rem; }

@media(max-width: 768px) {
    #nav-menu {
        position: fixed; top: 70px; left: -100%; flex-direction: column;
        background: #050508; width: 100%; text-align: center; padding: 40px 0;
        transition: 0.3s; border-bottom: 2px solid rgba(255, 69, 0, 0.2);
    }
    #nav-menu.active { left: 0; }
    .menu-toggle { display: block; }
    .status-grid, .store-sub-grid { grid-template-columns: 1fr; }
    .main-logo { font-size: 4rem; }
    .stat-row strong { width: 130px; }
}
