/* Shared mobile-first presentation for Brazil guide pages. */
.pt-guide {
    --guide-bg: #07080d;
    --guide-surface: #101017;
    --guide-surface-2: #17151d;
    --guide-line: #332d39;
    --guide-text: #f7f8fa;
    --guide-muted: #b8b3bd;
    --guide-gold: #ffd400;
    --guide-red: #ed1c2e;
    --guide-green: #26c768;
    --guide-blue: #52c7ea;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--guide-text);
    background: var(--guide-bg);
}

.pt-guide .header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    min-height: 64px;
    padding: 10px 16px;
    background: #07080d;
    border-bottom: 1px solid var(--guide-line);
    backdrop-filter: none;
}

.pt-guide .header-container {
    width: min(100%, 1120px);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 auto;
}

.pt-guide .logo {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--guide-text);
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: 0;
    text-decoration: none;
}

.pt-guide .brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 8px;
    object-fit: cover;
}

.pt-guide .logo-text {
    display: grid;
    gap: 0;
    overflow: visible;
    color: var(--guide-text);
    background: none;
    -webkit-text-fill-color: currentColor;
    font-size: 1.125rem;
    line-height: .92;
    white-space: normal;
}

.pt-guide .logo-text strong {
    display: block;
    font-weight: 900;
}

.pt-guide .header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pt-guide .market-pill {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    color: var(--guide-text);
    font-size: .875rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    background: #101017;
    border: 1px solid #393240;
    border-radius: 6px;
}

.pt-guide .market-pill img:first-child {
    width: 24px;
    height: 18px;
}

.pt-guide .icon-invert {
    filter: invert(1);
}

.pt-guide .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 8px;
    background: transparent;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}

.pt-guide .menu-close-icon {
    display: none;
}

.pt-guide .menu-toggle[aria-expanded="true"] .menu-open-icon {
    display: none;
}

.pt-guide .menu-toggle[aria-expanded="true"] .menu-close-icon {
    display: block;
}

.pt-guide .primary-nav {
    width: min(100%, 1120px);
    display: grid;
    margin: 0 auto;
    padding: 6px 16px 16px;
    background: #07080d;
}

.pt-guide .primary-nav[hidden] {
    display: none;
}

.pt-guide .primary-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 4px;
    color: #fff;
    font-size: .9375rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #26212d;
}

.pt-guide .menu-toggle:focus-visible,
.pt-guide .market-pill:focus-visible,
.pt-guide .btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.pt-guide .dropdown-toggle {
    min-height: 40px;
    padding: 8px 10px;
    color: var(--guide-text);
    font-family: inherit;
    font-size: .8125rem;
    font-weight: 700;
    background: #121821;
    border: 1px solid var(--guide-line);
    border-radius: 8px;
    backdrop-filter: none;
}

.pt-guide .dropdown-menu {
    min-width: 170px;
    padding: 6px;
    background: #141a24;
    border: 1px solid #3a4558;
    border-radius: 8px;
    backdrop-filter: none;
}

.pt-guide .dropdown-menu li a {
    min-height: 42px;
    padding: 10px;
    border-radius: 6px;
}

.pt-guide .main {
    padding-top: 64px;
    padding-bottom: 0;
}

.pt-guide .article-hero {
    padding: 24px 16px 30px;
    background: #0b0b11;
    border-bottom: 1px solid var(--guide-line);
}

.pt-guide .breadcrumb {
    gap: 7px;
    margin-bottom: 22px;
    color: #8f9aab;
    font-size: .75rem;
    line-height: 1.45;
}

.pt-guide .breadcrumb a {
    color: var(--guide-gold);
    font-weight: 700;
}

.pt-guide .article-hero-grid {
    gap: 22px;
}

.pt-guide .article-eyebrow {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 8px;
    color: #07080d;
    font-size: .6875rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--guide-gold);
    border-radius: 5px;
}

.pt-guide .hero-title {
    max-width: 17ch;
    margin-bottom: 12px;
    color: var(--guide-text);
    font-family: inherit;
    font-size: clamp(2rem, 10vw, 3.6rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.pt-guide .article-lead {
    max-width: 62ch;
    color: var(--guide-muted);
    font-size: .9375rem;
    line-height: 1.65;
}

.pt-guide .article-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
}

.pt-guide .btn {
    min-height: 50px;
    border-radius: 8px;
    font-family: inherit;
    font-size: .9375rem;
    font-weight: 800;
    letter-spacing: 0;
}

.pt-guide .btn-gold {
    color: #07080d;
    background: var(--guide-gold);
    border: 1px solid #ffe56c;
    box-shadow: none;
}

.pt-guide .btn-primary,
.pt-guide .btn-bonus {
    color: #fff;
    background: var(--guide-red);
    border: 1px solid #ff5262;
    box-shadow: none;
}

.pt-guide .article-partner-note {
    display: block;
    margin-top: 9px;
    color: #8f9aab;
    font-size: .6875rem;
    line-height: 1.45;
}

.pt-guide .quick-facts {
    position: relative;
    overflow: hidden;
    padding: 16px;
    background: var(--guide-surface);
    border: 1px solid #393240;
    border-top: 3px solid var(--guide-gold);
    border-radius: 8px;
    box-shadow: none;
}

.pt-guide .quick-facts::before {
    display: block;
    width: calc(100% + 32px);
    min-height: 150px;
    margin: -16px -16px 16px;
    content: "";
    background-color: #111016;
    background-image: url("./assets/pt/fortune-dragon-hero-mobile.avif");
    background-position: 50% 28%;
    background-size: cover;
    border-bottom: 1px solid #393240;
}

.pt-guide .quick-badge {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 8px;
    color: #080b10;
    font-size: .6875rem;
    font-weight: 900;
    background: var(--guide-gold);
    border-radius: 5px;
}

.pt-guide .quick-facts li {
    gap: 14px;
    min-height: 46px;
    padding: 10px 0;
    border-bottom: 1px solid var(--guide-line);
}

.pt-guide .quick-facts li:last-child {
    border-bottom: 0;
}

.pt-guide .quick-facts li span {
    color: #97a2b3;
    font-size: .75rem;
}

.pt-guide .quick-facts li strong {
    max-width: 62%;
    color: var(--guide-text);
    font-size: .75rem;
    line-height: 1.4;
}

.pt-guide .article-content {
    padding: 34px 16px 46px;
    background: var(--guide-bg);
}

.pt-guide .article-layout {
    gap: 34px;
}

.pt-guide .article-stack {
    gap: 0;
}

.pt-guide .article-panel {
    padding: 26px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #2d2832;
    border-radius: 0;
    box-shadow: none;
}

.pt-guide .article-panel:first-child {
    padding-top: 0;
}

.pt-guide .article-panel h2,
.pt-guide .article-faq .section-title {
    margin-bottom: 12px;
    color: var(--guide-text);
    font-family: inherit;
    font-size: clamp(1.35rem, 6vw, 1.9rem);
    line-height: 1.22;
    letter-spacing: 0;
}

.pt-guide .article-panel h3 {
    margin: 20px 0 8px;
    color: var(--guide-gold);
    font-family: inherit;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.pt-guide .article-panel p,
.pt-guide .article-panel li {
    color: var(--guide-muted);
    font-size: .9375rem;
    line-height: 1.72;
}

.pt-guide .article-panel p + p {
    margin-top: 14px;
}

.pt-guide .article-panel ul,
.pt-guide .article-panel ol {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.pt-guide .article-panel ul {
    list-style: disc;
}

.pt-guide .article-panel ol {
    list-style: decimal;
}

.pt-guide .article-panel table {
    display: block;
    width: 100%;
    overflow-x: auto;
    color: var(--guide-text);
    border-collapse: collapse;
    -webkit-overflow-scrolling: touch;
}

.pt-guide .article-panel th,
.pt-guide .article-panel td {
    min-width: 130px;
    padding: 10px;
    border-bottom: 1px solid var(--guide-line);
    text-align: left;
}

.pt-guide .article-faq {
    padding: 34px 0 0;
    background: transparent;
}

.pt-guide .faq-accordion {
    display: grid;
    gap: 8px;
}

.pt-guide .faq-item {
    overflow: hidden;
    background: var(--guide-surface);
    border: 1px solid #393240;
    border-radius: 8px;
    box-shadow: none;
}

.pt-guide .faq-question {
    min-height: 54px;
    padding: 14px 16px;
    color: var(--guide-text);
    font-family: inherit;
    font-size: .875rem;
    font-weight: 800;
}

.pt-guide .faq-answer p {
    padding: 0 16px 16px;
    color: var(--guide-muted);
    font-size: .875rem;
    line-height: 1.65;
}

.pt-guide .article-sidebar {
    gap: 10px;
}

.pt-guide .article-nav,
.pt-guide .article-cta {
    padding: 18px;
    background: var(--guide-surface);
    border: 1px solid #393240;
    border-radius: 8px;
    box-shadow: none;
}

.pt-guide .article-nav strong {
    display: block;
    margin-bottom: 10px;
    color: var(--guide-gold);
    font-size: .75rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pt-guide .article-nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    color: #d5dce6;
    font-size: .8125rem;
    border-bottom: 1px solid var(--guide-line);
}

.pt-guide .article-nav a:last-child {
    border-bottom: 0;
}

.pt-guide .article-cta {
    text-align: left;
    border-top: 3px solid var(--guide-gold);
}

.pt-guide .article-cta img {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    border-radius: 8px;
}

.pt-guide .article-cta strong {
    display: block;
    margin-bottom: 6px;
    color: var(--guide-text);
    font-size: 1rem;
}

.pt-guide .article-cta p {
    margin-bottom: 14px;
    color: var(--guide-muted);
    font-size: .8125rem;
    line-height: 1.55;
}

.pt-guide .article-cta .btn {
    width: 100%;
}

.pt-guide .footer {
    padding: 32px 16px;
    background: #07080d;
    border-top: 1px solid var(--guide-line);
}

.pt-guide .footer-text,
.pt-guide .footer-disclaimer {
    color: #929cab;
    opacity: 1;
}

.pt-guide .article-panel {
    content-visibility: auto;
    contain-intrinsic-size: auto 420px;
}

@media (min-width: 760px) {
    .pt-guide .header,
    .pt-guide .article-hero,
    .pt-guide .article-content {
        padding-inline: 28px;
    }

    .pt-guide .article-hero {
        padding-block: 42px 48px;
    }

    .pt-guide .article-hero-grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, .65fr);
        align-items: end;
    }

    .pt-guide .article-actions {
        grid-template-columns: repeat(2, minmax(180px, 230px));
    }

    .pt-guide .article-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        align-items: start;
    }

    .pt-guide .article-sidebar {
        position: sticky;
        top: 84px;
    }

    .pt-guide .quick-facts::before {
        min-height: 178px;
        background-image: url("./assets/pt/fortune-dragon-hero-hd.avif");
    }
}

@media (min-width: 980px) {
    .pt-guide .menu-toggle {
        display: none;
    }

    .pt-guide .primary-nav {
        position: absolute;
        inset: 0 auto auto 50%;
        width: auto;
        height: 64px;
        display: flex !important;
        align-items: center;
        gap: 26px;
        padding: 0;
        background: transparent;
        transform: translateX(-50%);
    }

    .pt-guide .primary-nav a {
        min-height: 44px;
        padding: 0;
        border: 0;
        font-size: .875rem;
    }
}

@media (max-width: 390px) {
    .pt-guide .market-pill span,
    .pt-guide .market-pill .icon-invert {
        display: none;
    }

    .pt-guide .market-pill {
        width: 44px;
        justify-content: center;
        padding: 0;
    }

    .pt-guide .logo-text {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pt-guide *,
    .pt-guide *::before,
    .pt-guide *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
