/* =========================================================
   VARIÁVEIS
   ========================================================= */

:root {
    --mp-bg:#071410;
    --mp-surface:#10251d;
    --mp-green:#1f8f68;
    --mp-green-light:#36b889;
    --mp-gold:#d9b66f;
    --mp-white:#f7f8f5;
    --mp-text:#d8dfda;
    --mp-muted:#87978f;
    --mp-border:rgba(255,255,255,.08);
    --mp-container:1180px;
    --mp-font:"DM Sans",sans-serif;
    --mp-display:"Manrope",sans-serif
}

/* =========================================================
   RESET E BASE
   ========================================================= */

* {
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    margin:0;
    background:var(--mp-bg);
    color:var(--mp-text);
    font-family:var(--mp-font);
    -webkit-font-smoothing:antialiased
}

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

button {
    font:inherit
}

.mp-container {
    width:min(calc(100% - 40px),var(--mp-container));
    margin:auto
}

/* =========================================================
   CABEÇALHO E MENU
   ========================================================= */

.mp-header {
    position:fixed;
    z-index:1000;
    top:0;
    left:0;
    right:0;
    border-bottom:1px solid transparent;
    transition:.25s
}

.mp-header.is-scrolled {
    background:rgba(7,20,16,.9);
    border-color:var(--mp-border);
    backdrop-filter:blur(18px)
}

.mp-navbar {
    height:82px;
    display:flex;
    align-items:center;
    gap:45px
}

.mp-logo {
    display:inline-flex;
    align-items:center;
    gap:11px;
    flex-shrink:0
}

.mp-logo-symbol {
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(217,182,111,.45);
    border-radius:12px;
    color:var(--mp-gold);
    font-family:var(--mp-display);
    font-weight:800;
    font-size:19px
}

.mp-logo-text {
    display:flex;
    align-items:baseline;
    gap:5px
}

.mp-logo-text strong {
    color:var(--mp-white);
    font-family:var(--mp-display);
    font-size:17px;
    letter-spacing:1.5px
}

.mp-logo-text small {
    color:var(--mp-gold);
    font-family:var(--mp-display);
    font-weight:700;
    font-size:10px;
    letter-spacing:2px
}

.mp-nav {
    display:flex;
    align-items:center;
    gap:30px;
    margin-left:auto
}

.mp-nav a {
    color:#aebbb4;
    font-size:14px;
    font-weight:500
}

.mp-nav a:hover {
    color:white
}

.mp-nav-actions {
    display:flex;
    align-items:center;
    gap:20px
}

.mp-login-link {
    color:white;
    font-size:14px;
    font-weight:600
}

/* =========================================================
   BOTÕES
   ========================================================= */

.mp-btn {
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 24px;
    border-radius:12px;
    font-weight:700;
    font-size:14px;
    transition:.2s
}

.mp-btn:hover {
    transform:translateY(-2px)
}

.mp-btn-primary {
    background:var(--mp-green);
    color:white
}

.mp-btn-primary:hover {
    background:var(--mp-green-light)
}

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

.mp-btn-nav {
    min-height:42px;
    padding:0 19px;
    background:white;
    color:#0c1c16
}

.mp-btn-light {
    background:white;
    color:#102019
}

.mp-mobile-toggle {
    width:42px;
    height:42px;
    display:none;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    margin-left:auto;
    border:1px solid var(--mp-border);
    border-radius:10px;
    background:transparent;
    cursor:pointer
}

.mp-mobile-toggle span {
    width:18px;
    height:2px;
    background:white
}

/* =========================================================
   HERO / DESTAQUE PRINCIPAL
   ========================================================= */

.mp-hero {
    min-height:780px;
    display:flex;
    align-items:center;
    padding:150px 0 90px;
    overflow:hidden;
    background:radial-gradient(circle at 75% 45%,rgba(31,143,104,.14),transparent 35%),var(--mp-bg)
}

.mp-hero-grid {
    display:grid;
    grid-template-columns:1fr .9fr;
    gap:80px;
    align-items:center
}

.mp-eyebrow {
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:25px;
    color:var(--mp-gold);
    font-size:11px;
    font-weight:700;
    letter-spacing:2px
}

.mp-live-dot {
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--mp-green-light);
    box-shadow:0 0 12px var(--mp-green-light)
}

.mp-hero h1 {
    margin:0;
    color:white;
    font-family:var(--mp-display);
    font-size:clamp(52px,6vw,82px);
    line-height:.98;
    letter-spacing:-4px
}

.mp-hero h1 span {
    color:var(--mp-gold)
}

.mp-hero-description {
    max-width:590px;
    margin:30px 0;
    color:#9eada5;
    font-size:17px;
    line-height:1.75
}

.mp-hero-actions {
    display:flex;
    gap:12px
}

.mp-hero-features {
    display:flex;
    gap:38px;
    margin-top:48px
}

.mp-hero-features div {
    display:flex;
    flex-direction:column
}

.mp-hero-features strong {
    color:white;
    font-size:14px
}

.mp-hero-features span {
    margin-top:3px;
    color:var(--mp-muted);
    font-size:12px
}

/* =========================================================
   CARTAS / PRÉVIA DO JOGO
   ========================================================= */

.mp-game-preview {
    position:relative;
    height:510px
}

.mp-table-glow {
    position:absolute;
    top:50%;
    left:50%;
    width:390px;
    height:390px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:radial-gradient(circle,rgba(32,132,98,.22),rgba(12,48,37,.08) 50%,transparent 70%)
}

.mp-card {
    position:absolute;
    width:170px;
    height:240px;
    border-radius:17px;
    box-shadow:0 30px 60px rgba(0,0,0,.38)
}

.mp-card-back {
    top:110px;
    left:105px;
    transform:rotate(-16deg);
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#173f31,#0e271e);
    border:5px solid #e8e4d8
}

.mp-card-pattern {
    width:calc(100% - 18px);
    height:calc(100% - 18px);
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(217,182,111,.35);
    border-radius:10px;
    color:rgba(217,182,111,.55);
    font-family:var(--mp-display);
    font-size:60px;
    font-weight:800
}

.mp-card-white {
    padding:18px;
    background:#f8f6ef;
    color:#17231e
}

.mp-card-two {
    top:135px;
    left:210px;
    transform:rotate(2deg)
}

.mp-card-three {
    top:100px;
    left:310px;
    transform:rotate(15deg)
}

.mp-card-number {
    font-family:Georgia,serif;
    font-size:34px;
    font-weight:bold
}

.mp-card-suit {
    margin-top:-5px;
    font-size:30px
}

.red {
    color:#a73535
}

.mp-game-badge {
    position:absolute;
    right:0;
    bottom:45px;
    display:flex;
    align-items:center;
    gap:13px;
    padding:14px 18px;
    border:1px solid var(--mp-border);
    border-radius:15px;
    background:rgba(13,35,27,.92)
}

.mp-game-badge-icon {
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:rgba(217,182,111,.1);
    color:var(--mp-gold);
    font-size:22px
}

.mp-game-badge div {
    display:flex;
    flex-direction:column
}

.mp-game-badge small {
    color:var(--mp-muted);
    font-size:9px;
    letter-spacing:1.4px
}

.mp-game-badge strong {
    color:white;
    font-size:13px
}

/* =========================================================
   RECURSOS
   ========================================================= */

.mp-section {
    padding:120px 0;
    border-top:1px solid var(--mp-border);
    background:#091712
}

.mp-section-heading {
    max-width:650px
}

.mp-section-heading>span,.mp-section-label {
    color:var(--mp-gold);
    font-size:11px;
    font-weight:700;
    letter-spacing:2px
}

.mp-section-heading h2,.mp-community-content h2 {
    margin:15px 0 20px;
    color:white;
    font-family:var(--mp-display);
    font-size:clamp(38px,4vw,56px);
    line-height:1.08;
    letter-spacing:-2.2px
}

.mp-section-heading p,.mp-community-content p {
    color:var(--mp-muted);
    font-size:16px;
    line-height:1.75
}

.mp-feature-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:60px
}

.mp-feature-card {
    min-height:270px;
    padding:30px;
    border:1px solid var(--mp-border);
    border-radius:18px;
    background:rgba(255,255,255,.018);
    transition:.25s
}

.mp-feature-card:hover {
    transform:translateY(-6px);
    border-color:rgba(217,182,111,.18);
    background:rgba(255,255,255,.035)
}

.mp-feature-icon {
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:42px;
    border-radius:13px;
    background:rgba(217,182,111,.08);
    color:var(--mp-gold);
    font-size:21px
}

.mp-feature-card h3 {
    margin:0 0 12px;
    color:white;
    font-family:var(--mp-display);
    font-size:18px
}

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

/* =========================================================
   COMUNIDADE
   ========================================================= */

.mp-community {
    padding:130px 0;
    border-top:1px solid var(--mp-border)
}

.mp-community-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center
}

.mp-community-visual {
    position:relative;
    height:430px;
    border:1px solid var(--mp-border);
    border-radius:32px;
    background:radial-gradient(circle at center,rgba(31,143,104,.12),transparent 45%),#0a1b15
}

.mp-community-center {
    position:absolute;
    top:50%;
    left:50%;
    width:125px;
    height:125px;
    transform:translate(-50%,-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(217,182,111,.2);
    border-radius:50%;
    color:white
}

.mp-community-center span {
    font-size:11px;
    letter-spacing:2px
}

.mp-community-center strong {
    color:var(--mp-gold);
    font-size:22px
}

.mp-profile-card {
    position:absolute;
    min-width:175px;
    display:flex;
    align-items:center;
    gap:11px;
    padding:13px;
    border:1px solid var(--mp-border);
    border-radius:14px;
    background:#10261e
}

.mp-profile-one {
    top:50px;
    left:45px
}

.mp-profile-two {
    top:90px;
    right:35px
}

.mp-profile-three {
    bottom:55px;
    left:90px
}

.mp-avatar {
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1d4d3b;
    color:white;
    font-weight:700
}

.mp-profile-card>div:last-child {
    display:flex;
    flex-direction:column
}

.mp-profile-card strong {
    color:white;
    font-size:13px
}

.mp-profile-card span {
    margin-top:4px;
    color:var(--mp-muted);
    font-size:10px
}

.mp-profile-card span i {
    width:6px;
    height:6px;
    display:inline-block;
    margin-right:4px;
    border-radius:50%;
    background:var(--mp-green-light)
}

.mp-text-link {
    display:inline-block;
    margin-top:20px;
    color:var(--mp-gold);
    font-size:14px;
    font-weight:700
}

/* =========================================================
   CHAMADA FINAL
   ========================================================= */

.mp-final-cta {
    padding:40px 0 120px
}

.mp-final-box {
    padding:80px 30px;
    border-radius:30px;
    text-align:center;
    background:radial-gradient(circle at top,rgba(74,174,135,.18),transparent 50%),#12382b;
    border:1px solid rgba(255,255,255,.07)
}

.mp-final-box>span {
    color:#ead09a;
    font-size:10px;
    font-weight:700;
    letter-spacing:2px
}

.mp-final-box h2 {
    margin:18px 0;
    color:white;
    font-family:var(--mp-display);
    font-size:clamp(40px,5vw,62px);
    line-height:1.05;
    letter-spacing:-2px
}

.mp-final-box p {
    margin-bottom:30px;
    color:#a9beb4
}

/* =========================================================
   RODAPÉ
   ========================================================= */

.mp-footer {
    padding:70px 0 30px;
    border-top:1px solid var(--mp-border);
    background:#050e0b
}

.mp-footer-main {
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    padding-bottom:60px
}

.mp-footer-brand p {
    margin-top:20px;
    color:var(--mp-muted);
    font-size:13px;
    line-height:1.7
}

.mp-footer-column {
    display:flex;
    flex-direction:column;
    gap:12px
}

.mp-footer-column strong {
    margin-bottom:5px;
    color:white;
    font-size:13px
}

.mp-footer-column a {
    color:var(--mp-muted);
    font-size:13px
}

.mp-footer-column a:hover {
    color:white
}

.mp-footer-bottom {
    display:flex;
    justify-content:space-between;
    padding-top:25px;
    border-top:1px solid var(--mp-border);
    color:#627168;
    font-size:11px
}

.mp-footer-status {
    display:flex;
    align-items:center;
    gap:7px
}

.mp-footer-status i {
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--mp-green-light)
}

/* =========================================================
   RESPONSIVO — TABLET
   ========================================================= */

@media (max-width: 980px) {
    .mp-nav,.mp-nav-actions {
        display:none
    }

    .mp-mobile-toggle {
        display:flex
    }

    .mp-nav.is-open {
        position:absolute;
        top:82px;
        right:20px;
        left:20px;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:12px;
        border:1px solid var(--mp-border);
        border-radius:16px;
        background:#0c2119
    }

    .mp-nav.is-open a {
        padding:14px
    }

    .mp-hero-grid {
        grid-template-columns:1fr
    }

    .mp-game-preview {
        display:none
    }

    .mp-hero {
        min-height:auto
    }

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

    .mp-community-grid {
        grid-template-columns:1fr;
        gap:60px
    }

    .mp-footer-main {
        grid-template-columns:2fr 1fr 1fr
    }

}

/* =========================================================
   RESPONSIVO — MOBILE
   ========================================================= */

@media (max-width: 650px) {
    .mp-container {
        width:min(calc(100% - 28px),var(--mp-container))
    }

    .mp-navbar {
        height:70px
    }

    .mp-nav.is-open {
        top:70px;
        right:14px;
        left:14px
    }

    .mp-hero {
        padding:125px 0 75px
    }

    .mp-hero h1 {
        font-size:52px;
        letter-spacing:-3px
    }

    .mp-hero-actions {
        flex-direction:column
    }

    .mp-hero-actions .mp-btn {
        width:100%
    }

    .mp-hero-features {
        gap:18px;
        justify-content:space-between
    }

    .mp-section,.mp-community {
        padding:85px 0
    }

    .mp-feature-grid {
        grid-template-columns:1fr
    }

    .mp-community-visual {
        height:360px
    }

    .mp-profile-card {
        min-width:145px
    }

    .mp-profile-one {
        left:15px
    }

    .mp-profile-two {
        right:15px
    }

    .mp-profile-three {
        left:35px
    }

    .mp-final-cta {
        padding-bottom:80px
    }

    .mp-final-box {
        padding:60px 20px
    }

    .mp-footer-main {
        grid-template-columns:1fr 1fr
    }

    .mp-footer-brand {
        grid-column:1/-1
    }

    .mp-footer-bottom {
        flex-direction:column;
        gap:12px
    }

}

.mp-logo-image {
    display: block;
    width: auto;
    height: 58px;
    object-fit: contain;
}

.mp-footer .mp-logo-image {
    height: 68px;
}

@media (max-width: 650px) {
    .mp-logo-image {
        height: 48px;
    }

    .mp-footer .mp-logo-image {
        height: 58px;
    }

}

/* =========================================================
   PÁGINAS INSTITUCIONAIS / TERMOS
   ========================================================= */

.mp-legal-page {
    background:
        radial-gradient(circle at 50% 0%, rgba(31, 143, 104, 0.10), transparent 28%),
        var(--mp-bg);
}

.mp-legal-main {
    min-height: 100vh;
}

.mp-legal-hero {
    padding: 160px 0 70px;
    border-bottom: 1px solid var(--mp-border);
    text-align: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(217, 182, 111, 0.07), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.mp-legal-hero .mp-container {
    max-width: 850px;
}

.mp-legal-hero h1 {
    margin: 14px 0 18px;
    color: var(--mp-white);
    font-family: var(--mp-display);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.mp-legal-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #9eada5;
    font-size: 16px;
    line-height: 1.8;
}

.mp-legal-update {
    display: inline-flex;
    align-items: center;
    margin-top: 26px;
    padding: 9px 14px;
    border: 1px solid var(--mp-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--mp-muted);
    font-size: 12px;
}

.mp-legal-content {
    padding: 75px 0 120px;
}

.mp-legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 760px);
    justify-content: center;
    gap: 80px;
    align-items: start;
}

.mp-legal-nav {
    position: sticky;
    top: 115px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--mp-border);
    border-radius: 18px;
    background: rgba(16, 37, 29, 0.55);
    backdrop-filter: blur(12px);
}

.mp-legal-nav strong {
    margin-bottom: 13px;
    color: var(--mp-gold);
    font-size: 10px;
    letter-spacing: 1.8px;
}

.mp-legal-nav a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
    color: #8fa097;
    font-size: 12px;
    line-height: 1.35;
    transition: 0.2s;
}

.mp-legal-nav a:last-child {
    border-bottom: 0;
}

.mp-legal-nav a:hover {
    padding-left: 5px;
    color: var(--mp-white);
}

.mp-legal-article {
    min-width: 0;
}

.mp-legal-article section {
    position: relative;
    padding: 0 0 54px;
    margin: 0 0 54px;
    border-bottom: 1px solid var(--mp-border);
    scroll-margin-top: 120px;
}

.mp-legal-article section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.mp-legal-number {
    display: block;
    margin-bottom: 10px;
    color: var(--mp-gold);
    font-family: var(--mp-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mp-legal-article h2 {
    margin: 0 0 22px;
    color: var(--mp-white);
    font-family: var(--mp-display);
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.mp-legal-article p {
    margin: 0 0 17px;
    color: #a9b6af;
    font-size: 15px;
    line-height: 1.85;
}

.mp-legal-article p:last-child {
    margin-bottom: 0;
}

.mp-legal-article a:not(.mp-btn) {
    color: var(--mp-gold);
    text-decoration: underline;
    text-decoration-color: rgba(217, 182, 111, 0.35);
    text-underline-offset: 4px;
}

.mp-legal-highlight {
    margin: 28px 0;
    padding: 24px 26px;
    border: 1px solid rgba(217, 182, 111, 0.18);
    border-left: 3px solid var(--mp-gold);
    border-radius: 0 16px 16px 0;
    background: rgba(217, 182, 111, 0.055);
}

.mp-legal-highlight strong {
    display: block;
    margin-bottom: 8px;
    color: var(--mp-gold);
    font-size: 13px;
}

.mp-legal-highlight p {
    margin: 0;
    color: #c4ccc7;
}

@media (max-width: 980px) {
    .mp-legal-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mp-legal-nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 24px;
    }

    .mp-legal-nav strong {
        grid-column: 1 / -1;
    }

    .mp-legal-article {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .mp-legal-hero {
        padding: 120px 0 55px;
        text-align: left;
    }

    .mp-legal-hero h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .mp-legal-hero p {
        font-size: 14px;
    }

    .mp-legal-content {
        padding: 45px 0 80px;
    }

    .mp-legal-nav {
        display: none;
    }

    .mp-legal-layout {
        display: block;
    }

    .mp-legal-article section {
        padding-bottom: 38px;
        margin-bottom: 38px;
    }

    .mp-legal-article h2 {
        font-size: 24px;
    }

    .mp-legal-article p {
        font-size: 14px;
        line-height: 1.8;
    }

    .mp-legal-highlight {
        padding: 20px;
    }
}

/* =========================================================
   CONTATO
   ========================================================= */

.mp-contact-section {
    padding: 80px 0 120px;
    border-top: 1px solid var(--mp-border);
}

.mp-contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

.mp-contact-info {
    padding-top: 28px;
}

.mp-contact-info h2 {
    margin: 14px 0 18px;
    color: var(--mp-white);
    font-family: var(--mp-display);
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.mp-contact-info > p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 15px;
    line-height: 1.8;
}

.mp-contact-topics {
    display: flex;
    flex-direction: column;
    margin-top: 42px;
}

.mp-contact-topic {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--mp-border);
}

.mp-contact-topic > span {
    color: var(--mp-gold);
    font-family: var(--mp-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.mp-contact-topic > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mp-contact-topic strong {
    color: var(--mp-white);
    font-size: 14px;
}

.mp-contact-topic small {
    color: var(--mp-muted);
    font-size: 12px;
    line-height: 1.5;
}

.mp-contact-card {
    padding: 38px;
    border: 1px solid var(--mp-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(31, 143, 104, 0.08), transparent 32%),
        rgba(16, 37, 29, 0.55);
}

.mp-contact-card-head {
    margin-bottom: 32px;
}

.mp-contact-card-head > span {
    color: var(--mp-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.mp-contact-card-head h2 {
    margin: 9px 0 8px;
    color: var(--mp-white);
    font-family: var(--mp-display);
    font-size: 27px;
    letter-spacing: -0.8px;
}

.mp-contact-card-head p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 13px;
}

.mp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.mp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mp-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mp-form-group label {
    color: #c8d1cc;
    font-size: 12px;
    font-weight: 600;
}

.mp-form-group input,
.mp-form-group select,
.mp-form-group textarea {
    width: 100%;
    border: 1px solid var(--mp-border);
    border-radius: 11px;
    outline: none;
    background: rgba(4, 15, 11, 0.65);
    color: var(--mp-white);
    font-family: var(--mp-font);
    font-size: 14px;
    transition: 0.2s;
}

.mp-form-group input,
.mp-form-group select {
    height: 50px;
    padding: 0 15px;
}

.mp-form-group textarea {
    min-height: 165px;
    padding: 15px;
    resize: vertical;
    line-height: 1.6;
}

.mp-form-group input::placeholder,
.mp-form-group textarea::placeholder {
    color: #596a61;
}

.mp-form-group input:focus,
.mp-form-group select:focus,
.mp-form-group textarea:focus {
    border-color: rgba(217, 182, 111, 0.45);
    box-shadow: 0 0 0 3px rgba(217, 182, 111, 0.05);
}

.mp-form-group select option {
    background: #0b1d16;
    color: var(--mp-white);
}

.mp-form-helper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #65766d;
    font-size: 10px;
}

.mp-contact-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--mp-muted);
    font-size: 11px;
    line-height: 1.6;
    cursor: pointer;
}

.mp-contact-check input {
    flex: 0 0 auto;
    margin-top: 3px;
    accent-color: var(--mp-green);
}

.mp-contact-check a {
    color: var(--mp-gold);
}

.mp-contact-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

@media (max-width: 980px) {
    .mp-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 720px;
    }

    .mp-contact-info {
        padding-top: 0;
    }

    .mp-contact-topics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 25px;
    }
}

@media (max-width: 650px) {
    .mp-contact-section {
        padding: 45px 0 80px;
    }

    .mp-contact-info h2 {
        font-size: 31px;
    }

    .mp-contact-topics {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .mp-contact-card {
        padding: 25px 20px;
        border-radius: 18px;
    }

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

    .mp-form-helper {
        flex-direction: column;
        gap: 5px;
    }
}

/* Mensagens do formulário de contato */
.mp-contact-alert {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
    padding: 15px 17px;
    border-radius: 11px;
    font-size: 12px;
    line-height: 1.5;
}

.mp-contact-alert strong {
    color: var(--mp-white);
    font-size: 13px;
}

.mp-contact-alert-success {
    border: 1px solid rgba(54, 184, 137, 0.25);
    background: rgba(54, 184, 137, 0.08);
    color: #9fd8c1;
}

.mp-contact-alert-error {
    border: 1px solid rgba(196, 91, 91, 0.25);
    background: rgba(196, 91, 91, 0.08);
    color: #d8aaaa;
}

/* =========================================================
   AUTENTICAÇÃO — CADASTRO / LOGIN
   ========================================================= */

.mp-auth-main {
    min-height: 100vh;
}

.mp-auth-section {
    padding: 155px 0 110px;
    background:
        radial-gradient(circle at 18% 30%, rgba(31, 143, 104, 0.09), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(217, 182, 111, 0.05), transparent 24%);
}

.mp-auth-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.mp-auth-intro h1 {
    margin: 17px 0 23px;
    color: var(--mp-white);
    font-family: var(--mp-display);
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.03;
    letter-spacing: -2.8px;
}

.mp-auth-intro > p {
    max-width: 470px;
    margin: 0;
    color: var(--mp-muted);
    font-size: 15px;
    line-height: 1.85;
}

.mp-auth-benefits {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.mp-auth-benefits > div {
    display: flex;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid var(--mp-border);
}

.mp-auth-benefits span {
    flex: 0 0 auto;
    color: var(--mp-gold);
    font-family: var(--mp-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.mp-auth-benefits p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 12px;
    line-height: 1.6;
}

.mp-auth-benefits strong {
    color: #dce4df;
}

.mp-auth-card {
    padding: 40px;
    border: 1px solid var(--mp-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(31, 143, 104, 0.08), transparent 30%),
        rgba(16, 37, 29, 0.58);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}

.mp-auth-card-head {
    margin-bottom: 27px;
}

.mp-auth-card-head > span {
    color: var(--mp-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.mp-auth-card-head h2 {
    margin: 9px 0 7px;
    color: var(--mp-white);
    font-family: var(--mp-display);
    font-size: 28px;
    letter-spacing: -0.9px;
}

.mp-auth-card-head p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 13px;
}

.mp-google-button-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    overflow: hidden;
}

.mp-auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 26px 0;
    color: #65766d;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mp-auth-divider::before,
.mp-auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--mp-border);
}

.mp-auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mp-field-note {
    color: #65766d;
    font-size: 10px;
    line-height: 1.5;
}

.mp-auth-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.mp-auth-login {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--mp-border);
    color: var(--mp-muted);
    font-size: 12px;
    text-align: center;
}

.mp-auth-login a {
    margin-left: 4px;
    color: var(--mp-gold);
    font-weight: 600;
}

@media (max-width: 980px) {
    .mp-auth-layout {
        grid-template-columns: 1fr;
        gap: 55px;
        max-width: 720px;
    }

    .mp-auth-intro {
        text-align: center;
    }

    .mp-auth-intro > p {
        margin-right: auto;
        margin-left: auto;
    }

    .mp-auth-benefits {
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }
}

@media (max-width: 650px) {
    .mp-auth-section {
        padding: 120px 0 70px;
    }

    .mp-auth-layout {
        gap: 38px;
    }

    .mp-auth-intro h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .mp-auth-card {
        padding: 27px 20px;
        border-radius: 18px;
    }

    .mp-auth-card-head h2 {
        font-size: 25px;
    }
}

/* =========================================================
   ÁREA INTERNA — LOBBY / PRINCIPAL
   ========================================================= */

.mp-app-body {
    min-height:100vh;
    background:
        radial-gradient(circle at 80% 0%,rgba(31,143,104,.08),transparent 28%),
        var(--mp-bg);
}

.mp-app-header {
    position:sticky;
    z-index:1000;
    top:0;
    border-bottom:1px solid var(--mp-border);
    background:rgba(7,20,16,.94);
    backdrop-filter:blur(18px);
}

.mp-app-navbar {
    min-height:78px;
    display:flex;
    align-items:center;
    gap:30px;
}

.mp-app-brand {
    flex:0 0 auto;
}

.mp-app-brand .mp-logo-image {
    height:52px;
}

.mp-app-nav {
    display:flex;
    align-items:center;
    gap:7px;
    margin-left:25px;
}

.mp-app-nav a {
    padding:10px 13px;
    border-radius:10px;
    color:#9eada5;
    font-size:13px;
    font-weight:600;
    transition:.2s;
}

.mp-app-nav a:hover,
.mp-app-nav a.is-active {
    background:rgba(255,255,255,.045);
    color:var(--mp-white);
}

.mp-app-nav a.is-active {
    color:var(--mp-gold);
}

.mp-app-account {
    display:flex;
    align-items:center;
    gap:13px;
    margin-left:auto;
}

.mp-app-coins {
    display:flex;
    align-items:center;
    gap:8px;
    min-height:40px;
    padding:0 13px;
    border:1px solid rgba(217,182,111,.16);
    border-radius:11px;
    background:rgba(217,182,111,.05);
    color:var(--mp-gold);
    font-size:12px;
    font-weight:700;
}

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

.mp-app-avatar {
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border:1px solid rgba(217,182,111,.22);
    border-radius:50%;
    background:#173c2f;
    color:var(--mp-white);
    font-size:13px;
    font-weight:800;
}

.mp-app-avatar img {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.mp-app-user-text {
    display:flex;
    flex-direction:column;
    gap:2px;
}

.mp-app-user-text strong {
    max-width:150px;
    overflow:hidden;
    color:var(--mp-white);
    font-size:12px;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.mp-app-user-text span {
    color:var(--mp-muted);
    font-size:10px;
}

.mp-app-logout {
    padding:8px 10px;
    color:#7f9188;
    font-size:11px;
    transition:.2s;
}

.mp-app-logout:hover {
    color:var(--mp-white);
}

.mp-app-mobile-toggle {
    width:42px;
    height:42px;
    display:none;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    margin-left:auto;
    border:1px solid var(--mp-border);
    border-radius:10px;
    background:transparent;
    cursor:pointer;
}

.mp-app-mobile-toggle span {
    width:18px;
    height:2px;
    background:var(--mp-white);
}

.mp-app-main {
    padding:55px 0 100px;
}

.mp-dashboard-welcome {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:35px;
    margin-bottom:35px;
}

.mp-dashboard-eyebrow {
    display:block;
    margin-bottom:9px;
    color:var(--mp-gold);
    font-size:10px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.mp-dashboard-welcome h1 {
    margin:0;
    color:var(--mp-white);
    font-family:var(--mp-display);
    font-size:clamp(34px,4vw,50px);
    line-height:1.08;
    letter-spacing:-1.8px;
}

.mp-dashboard-welcome p {
    max-width:610px;
    margin:12px 0 0;
    color:var(--mp-muted);
    font-size:14px;
    line-height:1.7;
}

.mp-dashboard-status {
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:8px;
    padding:9px 13px;
    border:1px solid var(--mp-border);
    border-radius:999px;
    color:#91a39a;
    font-size:11px;
}

.mp-dashboard-status i {
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--mp-green-light);
    box-shadow:0 0 10px rgba(54,184,137,.5);
}

.mp-dashboard-grid {
    display:grid;
    grid-template-columns:minmax(0,1.55fr) minmax(290px,.75fr);
    gap:18px;
    align-items:start;
}

.mp-dashboard-main {
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mp-dashboard-side {
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mp-dashboard-card {
    border:1px solid var(--mp-border);
    border-radius:20px;
    background:rgba(16,37,29,.52);
}

.mp-play-card {
    position:relative;
    min-height:300px;
    overflow:hidden;
    padding:38px;
    background:
        radial-gradient(circle at 80% 50%,rgba(31,143,104,.18),transparent 34%),
        linear-gradient(135deg,rgba(16,49,37,.92),rgba(9,24,18,.95));
}

.mp-play-card::after {
    content:"♠";
    position:absolute;
    right:45px;
    bottom:-58px;
    color:rgba(217,182,111,.055);
    font-family:Georgia,serif;
    font-size:260px;
    line-height:1;
    transform:rotate(10deg);
}

.mp-play-content {
    position:relative;
    z-index:1;
    max-width:520px;
}

.mp-play-content > span {
    color:var(--mp-gold);
    font-size:10px;
    font-weight:700;
    letter-spacing:1.8px;
}

.mp-play-content h2 {
    margin:13px 0 12px;
    color:var(--mp-white);
    font-family:var(--mp-display);
    font-size:36px;
    letter-spacing:-1.3px;
}

.mp-play-content p {
    margin:0 0 27px;
    color:#9dada4;
    font-size:14px;
    line-height:1.7;
}

.mp-play-actions {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.mp-dashboard-shortcuts {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.mp-shortcut {
    min-height:145px;
    padding:22px;
    border:1px solid var(--mp-border);
    border-radius:17px;
    background:rgba(255,255,255,.018);
    transition:.22s;
}

.mp-shortcut:hover {
    transform:translateY(-3px);
    border-color:rgba(217,182,111,.17);
    background:rgba(255,255,255,.03);
}

.mp-shortcut-icon {
    width:39px;
    height:39px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    border-radius:11px;
    background:rgba(217,182,111,.08);
    color:var(--mp-gold);
    font-size:18px;
}

.mp-shortcut strong {
    display:block;
    margin-bottom:6px;
    color:var(--mp-white);
    font-size:13px;
}

.mp-shortcut span {
    color:var(--mp-muted);
    font-size:11px;
    line-height:1.5;
}

.mp-dashboard-section {
    padding:25px;
}

.mp-dashboard-section-head {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:20px;
}

.mp-dashboard-section-head h2 {
    margin:0;
    color:var(--mp-white);
    font-family:var(--mp-display);
    font-size:18px;
}

.mp-dashboard-section-head a {
    color:var(--mp-gold);
    font-size:11px;
    font-weight:700;
}

.mp-empty-state {
    padding:30px 18px;
    border:1px dashed rgba(255,255,255,.08);
    border-radius:14px;
    color:var(--mp-muted);
    font-size:12px;
    line-height:1.65;
    text-align:center;
}

.mp-player-card {
    padding:25px;
}

.mp-player-card-top {
    display:flex;
    align-items:center;
    gap:14px;
    padding-bottom:21px;
    border-bottom:1px solid var(--mp-border);
}

.mp-player-card-top .mp-app-avatar {
    width:54px;
    height:54px;
    font-size:16px;
}

.mp-player-card-top div:last-child {
    min-width:0;
}

.mp-player-card-top strong {
    display:block;
    overflow:hidden;
    color:var(--mp-white);
    font-family:var(--mp-display);
    font-size:16px;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.mp-player-card-top span {
    display:block;
    margin-top:4px;
    overflow:hidden;
    color:var(--mp-muted);
    font-size:11px;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.mp-player-meta {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1px;
    margin-top:20px;
    overflow:hidden;
    border:1px solid var(--mp-border);
    border-radius:13px;
    background:var(--mp-border);
}

.mp-player-meta div {
    padding:15px;
    background:#0c1f18;
}

.mp-player-meta small {
    display:block;
    margin-bottom:5px;
    color:var(--mp-muted);
    font-size:9px;
    letter-spacing:.8px;
    text-transform:uppercase;
}

.mp-player-meta strong {
    color:var(--mp-white);
    font-size:13px;
}

.mp-stats-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.mp-stat-card {
    min-height:95px;
    padding:17px;
    border:1px solid var(--mp-border);
    border-radius:14px;
    background:rgba(255,255,255,.018);
}

.mp-stat-card span {
    display:block;
    margin-bottom:9px;
    color:var(--mp-muted);
    font-size:10px;
}

.mp-stat-card strong {
    color:var(--mp-white);
    font-family:var(--mp-display);
    font-size:20px;
}

.mp-stat-card small {
    display:block;
    margin-top:4px;
    color:#607269;
    font-size:9px;
}

.mp-dashboard-note {
    padding:19px 21px;
    border:1px solid rgba(217,182,111,.13);
    border-radius:15px;
    background:rgba(217,182,111,.035);
    color:#9caaA3;
    font-size:11px;
    line-height:1.65;
}

@media (max-width:980px) {
    .mp-app-nav {
        position:absolute;
        top:78px;
        right:20px;
        left:20px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:2px;
        margin:0;
        padding:12px;
        border:1px solid var(--mp-border);
        border-radius:16px;
        background:#0b2018;
        box-shadow:0 20px 50px rgba(0,0,0,.3);
    }

    .mp-app-nav.is-open {
        display:flex;
    }

    .mp-app-mobile-toggle {
        display:flex;
    }

    .mp-app-account {
        margin-left:0;
    }

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

    .mp-dashboard-side {
        display:grid;
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:700px) {
    .mp-app-navbar {
        min-height:70px;
    }

    .mp-app-brand .mp-logo-image {
        height:45px;
    }

    .mp-app-nav {
        top:70px;
        right:14px;
        left:14px;
    }

    .mp-app-coins,
    .mp-app-user-text,
    .mp-app-logout {
        display:none;
    }

    .mp-app-account {
        margin-left:auto;
    }

    .mp-app-mobile-toggle {
        margin-left:0;
    }

    .mp-app-main {
        padding:35px 0 70px;
    }

    .mp-dashboard-welcome {
        align-items:flex-start;
        flex-direction:column;
        gap:17px;
    }

    .mp-dashboard-welcome h1 {
        font-size:34px;
    }

    .mp-play-card {
        min-height:280px;
        padding:27px 22px;
    }

    .mp-play-content h2 {
        font-size:30px;
    }

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

    .mp-shortcut {
        min-height:auto;
    }

    .mp-shortcut-icon {
        margin-bottom:16px;
    }

    .mp-dashboard-side {
        display:flex;
    }
}

/* =========================================================
   PERFIL / CONTA
   ========================================================= */
.mp-app-header{position:sticky;top:0;z-index:1000;border-bottom:1px solid var(--mp-border);background:rgba(7,20,16,.94);backdrop-filter:blur(18px)}
.mp-app-navbar{min-height:78px;display:flex;align-items:center;gap:32px}
.mp-app-brand{display:flex;align-items:center;flex:0 0 auto}
.mp-app-brand .mp-logo-image{height:50px}
.mp-app-nav{display:flex;align-items:center;gap:8px;margin-left:20px}
.mp-app-nav a{padding:10px 12px;border-radius:9px;color:#9baba3;font-size:12px;font-weight:600}
.mp-app-nav a:hover{background:rgba(255,255,255,.035);color:var(--mp-white)}
.mp-app-account{position:relative;margin-left:auto}
.mp-account-trigger{display:flex;align-items:center;gap:10px;padding:5px 8px 5px 5px;border:1px solid transparent;border-radius:12px;background:transparent;color:inherit;cursor:pointer}
.mp-account-trigger:hover,.mp-account-trigger[aria-expanded="true"]{border-color:var(--mp-border);background:rgba(255,255,255,.025)}
.mp-app-avatar{width:40px;height:40px;display:flex;align-items:center;justify-content:center;overflow:hidden;border:1px solid rgba(217,182,111,.2);border-radius:50%;background:#173d30;color:var(--mp-white);font-weight:800}
.mp-app-avatar img{width:100%;height:100%;display:block;object-fit:cover}
.mp-app-user-text{display:flex;min-width:100px;flex-direction:column;align-items:flex-start}
.mp-app-user-text strong{max-width:145px;overflow:hidden;color:var(--mp-white);font-size:12px;text-overflow:ellipsis;white-space:nowrap}
.mp-app-user-text small{margin-top:2px;color:var(--mp-muted);font-size:9px}
.mp-account-chevron{color:var(--mp-muted);font-size:15px}
.mp-account-menu{position:absolute;top:calc(100% + 10px);right:0;width:235px;display:none;padding:8px;border:1px solid var(--mp-border);border-radius:15px;background:#0b2018;box-shadow:0 22px 55px rgba(0,0,0,.38)}
.mp-account-menu.is-open{display:block}
.mp-account-menu-head{padding:12px 12px 14px;margin-bottom:5px;border-bottom:1px solid var(--mp-border)}
.mp-account-menu-head strong,.mp-account-menu-head span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.mp-account-menu-head strong{color:var(--mp-white);font-size:12px}
.mp-account-menu-head span{margin-top:4px;color:var(--mp-muted);font-size:10px}
.mp-account-menu a{display:block;padding:11px 12px;border-radius:9px;color:#aebbb4;font-size:11px}
.mp-account-menu a:hover{background:rgba(255,255,255,.04);color:var(--mp-white)}
.mp-account-menu-separator{height:1px;margin:5px 7px;background:var(--mp-border)}
.mp-account-menu .mp-account-menu-exit{color:#d9a2a2}
.mp-profile-page-head{display:flex;align-items:flex-end;justify-content:space-between;gap:25px;margin-bottom:28px}
.mp-profile-page-head h1{margin:5px 0 7px;color:var(--mp-white);font-family:var(--mp-display);font-size:40px;letter-spacing:-1.5px}
.mp-profile-page-head p{margin:0;color:var(--mp-muted);font-size:13px}
.mp-profile-layout{display:grid;grid-template-columns:320px minmax(0,1fr);gap:18px}
.mp-profile-main-card{padding:32px;text-align:center}
.mp-profile-big-avatar{width:112px;height:112px;display:flex;align-items:center;justify-content:center;overflow:hidden;margin:0 auto 20px;border:2px solid rgba(217,182,111,.2);border-radius:50%;background:#173d30;color:var(--mp-white);font-family:var(--mp-display);font-size:34px;font-weight:800}
.mp-profile-big-avatar img{width:100%;height:100%;object-fit:cover}
.mp-profile-main-card h2{margin:0;color:var(--mp-white);font-family:var(--mp-display);font-size:22px}
.mp-profile-main-card p{margin:6px 0 0;color:var(--mp-muted);font-size:12px}
.mp-profile-info-card,.mp-settings-card{padding:28px}
.mp-profile-info-card h2,.mp-settings-card h2{margin:0 0 20px;color:var(--mp-white);font-family:var(--mp-display);font-size:18px}
.mp-profile-info-row{display:grid;grid-template-columns:180px 1fr;gap:20px;padding:16px 0;border-bottom:1px solid var(--mp-border)}
.mp-profile-info-row:last-child{border-bottom:0}
.mp-profile-info-row span{color:var(--mp-muted);font-size:11px}
.mp-profile-info-row strong{color:var(--mp-white);font-size:12px;font-weight:600}
.mp-account-page{max-width:850px}
.mp-settings-card .mp-auth-form{max-width:650px}
.mp-settings-actions{display:flex;gap:10px;margin-top:25px}
.mp-account-success{margin-bottom:20px;padding:13px 15px;border:1px solid rgba(54,184,137,.25);border-radius:10px;background:rgba(54,184,137,.07);color:#9bd8bf;font-size:12px}
.mp-settings-empty{margin:0;color:var(--mp-muted);font-size:13px;line-height:1.8}
.mp-settings-empty strong{color:var(--mp-gold)}
@media(max-width:800px){.mp-profile-layout{grid-template-columns:1fr}.mp-profile-page-head{align-items:flex-start;flex-direction:column}.mp-profile-info-row{grid-template-columns:1fr;gap:6px}}
@media(max-width:700px){.mp-app-user-text,.mp-account-chevron{display:none}.mp-account-menu{position:fixed;top:72px;right:14px}.mp-settings-actions{flex-direction:column}.mp-settings-actions .mp-btn{width:100%}}
