/* =========================================================
   MINEPOP - STYLE.CSS COMPLETO
   Tema: Azul / Network Minecraft / Painel próprio
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --mp-bg: #070b14;
    --mp-bg-2: #0b1220;
    --mp-card: #111827;
    --mp-card-2: #172033;
    --mp-border: rgba(255,255,255,0.08);

    --mp-blue: #3b82f6;
    --mp-blue-dark: #1e3a8a;
    --mp-blue-light: #60a5fa;
    --mp-discord: #5865f2;

    --mp-text: #ffffff;
    --mp-muted: #9ca3af;
    --mp-soft: #dbeafe;

    --mp-green: #22c55e;
    --mp-red: #ef4444;

    --mp-radius: 16px;
    --mp-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    background: var(--mp-bg);
    color: var(--mp-text);
    font-family: 'Montserrat', Arial, sans-serif;
    overflow-x: hidden;
}

body {
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.body-site {
    min-height: 100vh;
    background:
        radial-gradient(circle at top center, rgba(59,130,246,0.18), transparent 34%),
        radial-gradient(circle at top right, rgba(96,165,250,0.10), transparent 28%),
        var(--mp-bg);
}

/* CONTAINER */

.wrapper,
.content,
.mp-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* =========================================================
   HEADER GLOBAL MINEPOP
========================================================= */

.mp-header {
    width: 100%;
    position: relative;
    background: var(--mp-bg);
    color: var(--mp-text);
}

.mp-nav {
    height: 82px;
    width: 100%;
    padding: 0 30px;
    background: rgba(7, 11, 20, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(59,130,246,0.22);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mp-left {
    display: flex;
    align-items: center;
}

.mp-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(59,130,246,0.45));
}

.mp-center {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-center a {
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    font-weight: 800;
    padding: 12px 14px;
    border-radius: 12px;
    transition: 0.2s ease;
}

.mp-center a:hover {
    background: rgba(59,130,246,0.15);
    color: var(--mp-blue-light);
    text-shadow: 0 0 8px rgba(59,130,246,0.5);
}

.mp-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-box {
    min-height: 48px;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--mp-border);
    border-radius: 14px;
    padding: 8px 14px;
    cursor: pointer;
    color: var(--mp-text);

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: 0.2s ease;
}

.mp-box:hover {
    background: rgba(59,130,246,0.15);
    transform: translateY(-2px);
}

.mp-box strong {
    color: var(--mp-blue-light);
    font-size: 12px;
    font-weight: 900;
}

.mp-box small {
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    margin-top: 2px;
}

.mp-box.discord strong {
    color: var(--mp-discord);
}

/* BOTÕES LOGIN */

.mp-btn {
    height: 44px;
    padding: 0 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: var(--mp-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    transition: 0.2s ease;
}

.mp-btn:hover {
    transform: translateY(-2px);
    background: rgba(59,130,246,0.18);
}

.mp-btn.primary {
    background: linear-gradient(135deg, var(--mp-blue), var(--mp-blue-dark));
    box-shadow: 0 0 22px rgba(59,130,246,0.35);
}

.mp-btn.primary:hover {
    filter: brightness(1.1);
}

/* USUÁRIO LOGADO */

.mp-user {
    position: relative;
    height: 52px;
    padding: 6px 12px 6px 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--mp-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: 0.2s ease;
}

.mp-user:hover {
    background: rgba(59,130,246,0.15);
}

.mp-user img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    image-rendering: pixelated;
}

.mp-user span {
    color: var(--mp-text);
    font-size: 12px;
    font-weight: 800;
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mp-dropdown {
    display: none;
    position: absolute;
    top: 62px;
    right: 0;
    width: 220px;
    padding: 10px;
    background: #0f172a;
    border: 1px solid rgba(59,130,246,0.22);
    border-radius: 15px;
    box-shadow: var(--mp-shadow);
}

.mp-dropdown.active {
    display: block;
}

.mp-dropdown a {
    display: block;
    padding: 12px;
    border-radius: 10px;
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    font-weight: 700;
}

.mp-dropdown a:hover {
    background: rgba(59,130,246,0.15);
    color: var(--mp-blue-light);
}

/* HERO HEADER */

.mp-hero {
    height: 520px;
    position: relative;
    background:
        url('https://i.imgur.com/Ww5cP2u.jpg')
        center/cover no-repeat;
    overflow: hidden;
}

.mp-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(59,130,246,0.22), transparent 35%),
        linear-gradient(rgba(7,11,20,0.55), var(--mp-bg) 92%);
}

.mp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    height: 100%;
    margin: 0 auto;
    padding: 120px 22px 0;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.mp-status {
    justify-self: start;
    background: rgba(0,0,0,0.46);
    border-top: 3px solid var(--mp-blue);
    border-radius: 18px 18px 6px 6px;
    padding: 16px 22px;
    cursor: pointer;
    transition: 0.2s ease;
}

.mp-status:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 0 18px rgba(59,130,246,0.35));
}

.mp-status strong {
    display: block;
    color: var(--mp-blue-light);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.mp-status span {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 11px;
    margin-top: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.mp-hero-logo {
    width: 310px;
    max-width: 35vw;
    filter: drop-shadow(0 0 32px rgba(59,130,246,0.45));
    animation: mpLogoPulse 4s infinite ease-in-out;
}

@keyframes mpLogoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

.mp-discord-btn {
    justify-self: end;
    background: rgba(88,101,242,0.92);
    color: #fff;
    border-radius: 16px;
    padding: 16px 22px;
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s ease;
}

.mp-discord-btn:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 0 18px rgba(88,101,242,0.45));
}

.mp-discord-btn i {
    font-size: 22px;
}

/* =========================================================
   HOME
========================================================= */

.mp-home-hero {
    max-width: 1180px;
    margin: -70px auto 0;
    padding: 0 18px;
    position: relative;
    z-index: 3;
}

.mp-home-panel {
    background:
        linear-gradient(135deg, rgba(17,24,39,0.96), rgba(11,18,32,0.96)),
        radial-gradient(circle at top right, rgba(59,130,246,0.22), transparent 35%);
    border: 1px solid rgba(59,130,246,0.18);
    border-radius: 26px;
    padding: 48px;
    box-shadow: var(--mp-shadow);
}

.mp-home-panel h1,
.mp-home-content h1 {
    color: var(--mp-text);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.8px;
    margin-bottom: 16px;
}

.mp-home-panel h1 span,
.mp-home-content h1 span {
    color: var(--mp-blue-light);
}

.mp-home-panel p,
.mp-home-content p {
    color: var(--mp-muted);
    font-size: 16px;
    max-width: 680px;
    line-height: 1.8;
}

.mp-home-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.mp-btn-primary,
.mp-btn-secondary {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    transition: 0.2s ease;
}

.mp-btn-primary {
    background: linear-gradient(135deg, var(--mp-blue), var(--mp-blue-dark));
    color: #fff;
    box-shadow: 0 0 22px rgba(59,130,246,0.35);
}

.mp-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid var(--mp-border);
}

.mp-btn-primary:hover,
.mp-btn-secondary:hover {
    transform: translateY(-2px);
}

.mp-home-stats {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 0 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mp-stat {
    background: var(--mp-card);
    border: 1px solid var(--mp-border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}

.mp-stat strong {
    display: block;
    color: var(--mp-blue-light);
    font-size: 32px;
    font-weight: 900;
}

.mp-stat span {
    color: var(--mp-muted);
    font-size: 13px;
    font-weight: 700;
}

.mp-home-cards {
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 0 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mp-card {
    background: var(--mp-card);
    border: 1px solid var(--mp-border);
    border-radius: 22px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 14px 40px rgba(0,0,0,0.2);
    transition: 0.2s ease;
}

.mp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59,130,246,0.35);
}

.mp-card h3 {
    color: var(--mp-text);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 10px;
}

.mp-card p {
    color: var(--mp-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   LOJA
========================================================= */

.mp-shop-hero,
.mp-store-header {
    max-width: 1180px;
    margin: 58px auto 0;
    padding: 0 18px;
}

.mp-shop-hero-content,
.mp-store-header {
    background:
        linear-gradient(135deg, rgba(17,24,39,0.96), rgba(11,18,32,0.96)),
        radial-gradient(circle at top right, rgba(59,130,246,0.18), transparent 35%);
    border: 1px solid rgba(59,130,246,0.18);
    border-radius: 26px;
    padding: 48px;
    text-align: left;
    box-shadow: var(--mp-shadow);
}

.mp-shop-hero h1,
.mp-store-header h1 {
    color: var(--mp-text);
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1.4px;
    margin-bottom: 12px;
}

.mp-shop-hero p,
.mp-store-header p {
    color: var(--mp-muted);
    max-width: 680px;
    line-height: 1.7;
}

.mp-badge {
    display: inline-block;
    background: rgba(59,130,246,0.15);
    color: var(--mp-blue-light);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.mp-shop-wrapper {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 0 18px;
}

.mp-shop-server {
    margin-top: 28px;
}

.mp-shop-server-head {
    background: var(--mp-card);
    border: 1px solid var(--mp-border);
    border-radius: 22px;
    padding: 26px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}

.mp-shop-server-head span {
    color: var(--mp-blue-light);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.mp-shop-server-head h2 {
    color: var(--mp-text);
    font-size: 26px;
    font-weight: 900;
    margin-top: 6px;
}

.mp-shop-server-btn {
    background: rgba(59,130,246,0.15);
    color: var(--mp-blue-light);
    border-radius: 12px;
    padding: 13px 16px;
    font-weight: 900;
    font-size: 12px;
}

.mp-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 22px;
}

.mp-product-card {
    background: var(--mp-card);
    border: 1px solid var(--mp-border);
    border-radius: 22px;
    padding: 28px;
    text-align: left;
    box-shadow: 0 14px 40px rgba(0,0,0,0.2);
    transition: 0.2s ease;
}

.mp-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59,130,246,0.35);
}

.mp-product-tag {
    display: inline-block;
    background: rgba(59,130,246,0.15);
    color: var(--mp-blue-light);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 16px;
}

.mp-product-card h3 {
    color: var(--mp-text);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 900;
    min-height: 54px;
}

.mp-product-price {
    margin-top: 18px;
    color: var(--mp-blue-light);
    font-size: 30px;
    font-weight: 900;
}

.mp-product-list {
    margin: 20px 0;
    list-style: none;
}

.mp-product-list li {
    color: var(--mp-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.mp-product-list li::before {
    content: "✓";
    color: var(--mp-blue-light);
    font-weight: 900;
    margin-right: 8px;
}

.mp-product-form input {
    width: 100%;
    height: 48px;
    border: 1px solid var(--mp-border);
    border-radius: 12px;
    background: var(--mp-bg-2);
    color: var(--mp-text);
    padding: 0 14px;
    outline: none;
    margin-bottom: 12px;
}

.mp-product-form input:focus {
    border-color: var(--mp-blue);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.16);
}

.mp-product-form button {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mp-blue), var(--mp-blue-dark));
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 14px 26px rgba(59,130,246,0.22);
    transition: 0.2s ease;
}

.mp-product-form button:hover {
    transform: translateY(-2px);
}

/* =========================================================
   BENEFÍCIOS
========================================================= */

.mp-benefits-hero {
    max-width: 1180px;
    margin: 58px auto 0;
    padding: 0 18px;
}

.mp-benefits-content {
    background:
        linear-gradient(135deg, rgba(17,24,39,0.96), rgba(11,18,32,0.96)),
        radial-gradient(circle at top right, rgba(59,130,246,0.22), transparent 35%);
    border-radius: 28px;
    padding: 58px;
    text-align: left;
    box-shadow: var(--mp-shadow);
    border: 1px solid rgba(59,130,246,0.18);
}

.mp-benefits-content h1 {
    font-size: 48px;
    color: var(--mp-text);
    margin: 16px 0;
    font-weight: 900;
    letter-spacing: -2px;
    max-width: 720px;
}

.mp-benefits-content p {
    color: var(--mp-muted);
    font-size: 16px;
    line-height: 1.75;
    max-width: 680px;
}

.mp-benefits-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.mp-benefits-grid {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 0 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mp-benefit-card {
    background: var(--mp-card);
    border-radius: 22px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 14px 40px rgba(0,0,0,0.2);
    border: 1px solid var(--mp-border);
    transition: 0.2s ease;
}

.mp-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59,130,246,0.35);
}

.mp-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(59,130,246,0.15);
    color: var(--mp-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.mp-benefit-card h3 {
    color: var(--mp-text);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.mp-benefit-card p {
    color: var(--mp-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   PLAYER / PERFIL PÚBLICO
========================================================= */

.mp-player {
    max-width: 1180px;
    margin: 58px auto 0;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
}

.mp-player-card {
    background: var(--mp-card);
    border: 1px solid var(--mp-border);
    border-radius: 24px;
    padding: 34px;
    text-align: center;
    box-shadow: var(--mp-shadow);
}

.mp-player-card img {
    width: 110px;
    height: 110px;
    border-radius: 18px;
    image-rendering: pixelated;
    margin-bottom: 18px;
}

.mp-player-card h2 {
    color: var(--mp-text);
    font-size: 26px;
    font-weight: 900;
}

.mp-rank {
    display: inline-block;
    margin-top: 12px;
    background: rgba(59,130,246,0.15);
    color: var(--mp-blue-light);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 900;
}

.mp-player-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.mp-player-stats div {
    background: var(--mp-card);
    border: 1px solid var(--mp-border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}

.mp-player-stats strong {
    display: block;
    color: var(--mp-blue-light);
    font-size: 28px;
    font-weight: 900;
}

.mp-player-stats span {
    color: var(--mp-muted);
    font-size: 13px;
}

/* =========================================================
   FORMULÁRIOS / ERROS / PÁGINAS ANTIGAS
========================================================= */

input,
select,
textarea {
    background: var(--mp-bg-2);
    border: 1px solid var(--mp-border);
    color: var(--mp-text);
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--mp-blue);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
}

.error-block {
    max-width: 560px;
    margin: 80px auto;
    background: var(--mp-card);
    border: 1px solid var(--mp-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--mp-shadow);
}

.rules_name {
    background: linear-gradient(135deg, var(--mp-blue), var(--mp-blue-dark));
    color: #fff;
    padding: 16px 20px;
    font-weight: 900;
}

.error-panel {
    padding: 24px;
    color: var(--mp-muted);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: transparent;
    margin-top: 90px;
    padding: 0 18px 70px;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    max-width: 1140px;
    background: var(--mp-card);
    border: 1px solid var(--mp-border);
    border-radius: 22px;
    padding: 42px 46px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 42px;
    text-align: left;
    box-shadow: var(--mp-shadow);
}

.footer-col {
    color: var(--mp-muted);
}

.footer-logo img {
    max-height: 72px;
    max-width: 160px;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 16px rgba(59,130,246,0.35));
}

.footer-desc {
    font-size: 13px;
    color: var(--mp-muted);
    line-height: 1.6;
    max-width: 260px;
}

.footer-title {
    font-size: 15px;
    font-weight: 900;
    color: var(--mp-text);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    width: fit-content;
    font-size: 13px;
    color: var(--mp-muted);
    margin-bottom: 10px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: var(--mp-blue-light);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    padding: 8px 12px;
    background: rgba(59,130,246,0.15);
    border-radius: 8px;
    font-size: 12px;
    color: var(--mp-blue-light);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-payments img {
    height: 22px;
    max-width: 70px;
    object-fit: contain;
    background: rgba(255,255,255,0.08);
    padding: 6px 8px;
    border-radius: 6px;
}

/* remove footer antigo */
.logo-footer,
.logo-coop-payment,
.right-footer,
.logotype-footer,
.footer-coop,
.link-payment-logo {
    display: none !important;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1180px) {
    .mp-nav {
        padding: 0 18px;
    }
}

@media (max-width: 1050px) {
    .mp-center,
    .mp-box,
    .mp-user,
    .mp-btn {
        display: none;
    }

    .mp-nav {
        height: 74px;
    }

    .mp-logo {
        height: 48px;
    }

    .mp-hero {
        height: 500px;
    }

    .mp-hero-content {
        grid-template-columns: 1fr;
        place-items: center;
        text-align: center;
        padding-top: 110px;
    }

    .mp-status,
    .mp-discord-btn {
        justify-self: center;
    }

    .mp-hero-logo {
        max-width: 240px;
    }

    .mp-home-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-home-cards,
    .mp-benefits-grid,
    .mp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .mp-player {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .mp-hero {
        height: 470px;
    }

    .mp-hero-logo {
        max-width: 210px;
    }

    .mp-status,
    .mp-discord-btn {
        width: calc(100vw - 36px);
        justify-content: center;
        text-align: center;
    }

    .mp-home-panel,
    .mp-shop-hero-content,
    .mp-store-header,
    .mp-benefits-content {
        padding: 32px 24px;
    }

    .mp-home-panel h1,
    .mp-home-content h1,
    .mp-shop-hero h1,
    .mp-store-header h1,
    .mp-benefits-content h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .mp-home-stats,
    .mp-home-cards,
    .mp-benefits-grid,
    .mp-products-grid,
    .mp-player-stats {
        grid-template-columns: 1fr;
    }

    .mp-shop-server-head {
        display: block;
    }

    .mp-shop-server-btn {
        display: inline-block;
        margin-top: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
}

/* HEADER PADRÃO DO PAINEL */

.mp-panel-header {
    width: 100%;
    min-height: 76px;
    padding: 0 26px;
    background: rgba(7, 11, 20, 0.92);
    border-bottom: 1px solid rgba(59,130,246,0.22);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.mp-panel-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.mp-panel-logo img {
    height: 42px;
    filter: drop-shadow(0 0 14px rgba(59,130,246,0.45));
}

.mp-panel-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.mp-panel-nav a {
    color: #dbeafe;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s;
}

.mp-panel-nav a:hover {
    background: rgba(59,130,246,0.15);
    color: #60a5fa;
}

.mp-panel-nav .admin-link {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: #fff;
}

.mp-panel-user {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 7px 10px;
    border-radius: 14px;
}

.mp-panel-user img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    image-rendering: pixelated;
}

.mp-panel-user span {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.mp-panel-user a {
    color: #fca5a5;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 900px) {
    .mp-panel-header {
        display: block;
        padding: 16px;
    }

    .mp-panel-nav {
        margin: 14px 0;
    }

    .mp-panel-user {
        width: fit-content;
    }
}