html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #f7e6db; /* Bege claro de fundo */
    background-image: url('https://pinimg.com');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: 'Fredoka', sans-serif;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-top: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
    position: relative;
}


/* ================= BARRA DE ROLAGEM PERSONALIZADA (MARROM NAVEGADOR) ================= */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #e8d0bd; /* Bege médio das abas */
    border-left: 2px solid #583318; /* Marrom escuro */
}
::-webkit-scrollbar-thumb {
    background-color: #583318; /* Marrom escuro principal */
    border-radius: 10px; 
    border: 2px solid #e8d0bd; 
}
::-webkit-scrollbar-thumb:hover {
    background-color: #d1a891; /* Marrom claro/rosado ao passar o mouse */
}

/* ================= EFEITO: CHUVA DE PUDINS FOFOS ================= */
.pudding-rain {
    position: fixed; /* Fica fixo no fundo enquanto a tela rola */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    pointer-events: none; 
}
.pudding {
    position: absolute;
    top: -50px;
    font-size: 32px;
    opacity: 0.65; 
    animation: fall linear infinite;
}
.pudding:nth-child(1) { left: 5%; animation-duration: 8s; animation-delay: 0s; }
.pudding:nth-child(2) { left: 15%; animation-duration: 11s; animation-delay: 2s; }
.pudding:nth-child(3) { left: 25%; animation-duration: 9s; animation-delay: 4s; }
.pudding:nth-child(4) { left: 35%; animation-duration: 12s; animation-delay: 1s; }
.pudding:nth-child(5) { left: 45%; animation-duration: 7s; animation-delay: 5s; }
.pudding:nth-child(6) { left: 55%; animation-duration: 10s; animation-delay: 3s; }
.pudding:nth-child(7) { left: 68%; animation-duration: 8s; animation-delay: 6s; }
.pudding:nth-child(8) { left: 78%; animation-duration: 11s; animation-delay: 1s; }
.pudding:nth-child(9) { left: 88%; animation-duration: 9s; animation-delay: 4s; }
.pudding:nth-child(10) { left: 95%; animation-duration: 13s; animation-delay: 2s; }

@keyframes fall {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(105vh) rotate(360deg); }
}
.pudding img {
    width: 45px;
    height: auto;
}

/* ================= PAINEL DO CARRD PRINCIPAL ================= */
.carrd-frame {
    width: 880px;
    background: #fffcf9; /* Fundo interno esbranquiçado sutil */
    border: 6px solid #583318; /* Borda externa marrom escura */
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(88, 51, 24, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    z-index: 2; /* Fica por cima da chuva de pudins */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cabeçalho Superior */
.carrd-header {
    background-color: #e8d0bd; /* Fundo bege rosado do topo */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-bottom: 3px dashed #583318; /* Pontilhado marrom */
}
.site-title {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    color: #583318; /* Texto marrom escuro */
    font-weight: bold;
    letter-spacing: 1px;
}
.star-icon {
    color: #fca1b0; /* Detalhes em rosa suave */
    font-size: 18px;
}

/* Seção de Boas-Vindas */
.welcome-block {
    background-color: #583318; /* Fundo marrom escuro do Welcome */
    background-image: url('https://pinimg.com'); 
    background-size: cover; 
    background-position: center;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 4px solid #583318;
}


.profile-container {
    width: 90px;
    height: 90px;
    border: 4px solid #fffcf9;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e8d0bd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.welcome-text {
    margin: 0;
    font-family: 'Pacifico', cursive;
    font-size: 42px;
    color: #fffcf9; /* Texto Welcome branco/creme */
    text-shadow: 3px 3px 0px #d1a891; /* Sombra marrom suave */
}

/* Menu de Abas */
.navigation-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #583318; /* Divisórias em marrom */
    padding: 4px 8px 8px 8px;
    gap: 6px;
}
.nav-tab {
    background: #e8d0bd; /* Fundo das abas texturizadas */
    border: 2px solid #583318;
    border-radius: 14px;
    text-align: center;
    padding: 6px 0;
    color: #583318; /* Texto marrom escuro */
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Caveat', cursive;
    box-shadow: inset 0 -3px 0px rgba(88, 51, 24, 0.15);
}
.nav-tab:hover {
    background: #fffcf9;
    color: #fca1b0; /* Rosa ao passar o mouse */
}

/* Área de Conteúdo Dividida */
.content-area {
    display: flex;
    padding: 20px 15px;
    background-color: #fffcf9; 
    gap: 15px;
}

.left-image-stack {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.pastry-item {
    border: 2px dashed #583318;
    padding: 4px;
    border-radius: 12px;
    background-color: #e8d0bd;
}

.right-text-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 1.4;
}

/* Margem interna para criar um espaço de respiro nos blocos ao rolar */
.text-block-top, .text-block-middle, .text-block-bottom {
    scroll-margin-top: 20px; 
    margin-bottom: 10px;
}

.info-title {
    margin: 0 0 4px 0;
    font-weight: bold;
    color: #583318; /* Marrom dos títulos internos */
    font-size: 13px;
}
.info-text-dark {
    margin: 0 0 4px 0;
    color: #583318; /* Texto marrom principal */
}
.info-text-pink {
    margin: 0 0 6px 0;
    color: #fca1b0; /* Rosa para o texto de destaque "info info" */
    font-weight: 600;
}

.center-mascot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    scroll-margin-top: 20px;
}
.side-cursive-title {
    margin: 0;
    font-family: 'Pacifico', cursive;
    font-size: 36px;
    color: #e8d0bd; /* Título cursivo do conteúdo */
    text-shadow: 2px 2px 0px #583318;
}
.mascot-box {
    background: #fffcf9;
    border: 1px dotted #583318;
    padding: 4px;
    border-radius: 8px;
    max-width: 120px;
}

/* Rodapé Final */
.carrd-footer {
    background-color: #583318; /* Fundo marrom escuro das patinhas */
    background-image: radial-gradient(#e8d0bd 20%, transparent 20%);
    background-size: 12px 12px;
    padding: 15px;
    text-align: center;
    border-top: 3px dashed #e8d0bd;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.icon-link {
    color: #fffcf9;
    text-decoration: none;
    font-size: 18px;
}
.credits-text {
    font-size: 11px;
    color: #e8d0bd; /* Texto de créditos em bege */
    font-family: monospace;
}

```css
/* ====================================================
   ESTILOS EXCLUSIVOS DA PÁGINA MARVEL (ESTILO PURINLAND)
   Usa estritamente a paleta de cores da primeira página
   ==================================================== */

/* Mantém o fundo quadriculado rosa pastel idêntico à primeira página */
body.pagina-marvel.body-purin {
    background-color: #ffe4e1 !important;
}

/* Caixa principal do Carrd adaptada para o tamanho expandido de 3 colunas */
body.pagina-marvel .purin-frame {
    width: 960px !important;
    max-width: 98% !important;
    background: #dfc5a6 !important; /* Bege original */
    border: 6px solid #5c3a21 !important; /* Marrom escuro */
    border-radius: 20px !important;
    padding: 10px !important;
}

/* Banner de Topo com posicionamento absoluto para o título */
.purin-header-banner {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border: 4px solid #5c3a21;
    border-radius: 12px;
}

.purin-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.purin-title-wrapper {
    position: absolute;
    top: 15px;
    left: 20px;
    background: rgba(92, 58, 33, 0.85); /* Fundo marrom semitransparente */
    padding: 5px 20px;
    border-radius: 12px;
    border: 2px dashed #dfc5a6;
}

.purin-main-title {
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    font-family: 'Fredoka', sans-serif;
}

/* Menu de Navegação na versão PurinLand */
.purin-menu {
    background-color: #5c3a21 !important;
    margin: 10px 0 !important;
    border-radius: 10px;
}

body.pagina-marvel .purin-menu .active-purin {
    background: #fff0f5 !important;
    color: #ffb6c1 !important;
    border: 2px solid #5c3a21 !important;
}

/* Grid Principal de 3 Colunas (Esquerda, Centro, Direita) */
.purin-main-layout {
    display: grid;
    grid-template-columns: 0.9fr 2fr 0.9fr;
    gap: 12px;
    background-color: #ffffff; /* Fundo interno branco */
    padding: 15px;
    border-radius: 12px;
    border: 3px double #5c3a21;
}

/* Caixas fofas com bordas duplas estilo anos 2000 */
.purin-box {
    background-color: #ffffff;
    border: 3px double #7a4f30;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

/* Título das caixas com listras azuis/rosa clássico ou cor marrom */
.purin-box-header {
    background-color: #fff0f5;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, #ffb6c1 5px, #ffb6c1 10px);
    color: #5c3a21;
    font-weight: bold;
    text-align: center;
    padding: 4px;
    font-size: 13px;
    border-radius: 6px;
    border: 2px solid #7a4f30;
    margin-bottom: 10px;
}

/* Imagem de perfil lateral esquerda */
.purin-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #5c3a21;
    display: block;
    margin: 0 auto 10px auto;
    object-fit: cover;
}

.purin-status {
    background-color: #fff0f5;
    border: 1px dashed #7a4f30;
    border-radius: 6px;
    padding: 4px;
    font-size: 11px;
    text-align: center;
    margin-top: 5px;
    color: #5c3a21;
}

.purin-status span {
    color: #ffb6c1;
    font-weight: bold;
}

/* Pilha de decoração abaixo do perfil */
.purin-decor-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.purin-decor-item {
    border: 2px dashed #dfc5a6;
    padding: 4px;
    border-radius: 8px;
    background: #fff0f5;
}

/* Caixa de Conteúdo Central */
.purin-box-main {
    background: #ffffff;
    border: 3px solid #7a4f30;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
}

.purin-main-tabs {
    border-bottom: 3px double #7a4f30;
    padding-bottom: 5px;
    margin-bottom: 12px;
}

.purin-tab-title {
    font-weight: bold;
    color: #7a4f30;
    font-size: 16px;
    border-bottom: 3px solid #ffb6c1;
}

.purin-main-text {
    font-size: 12px;
    line-height: 1.5;
}

.purin-divider-title {
    font-size: 14px;
    font-weight: bold;
    color: #ba4a4a;
    border-bottom: 1px dashed #ba4a4a;
    margin: 15px 0 5px 0;
}

/* Contador de visitas estilo antigo */
.purin-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-size: 11px;
    color: #7a4f30;
}

.counter-digits {
    display: flex;
    gap: 3px;
}

.counter-digits span {
    background: #5c3a21;
    color: #ffb6c1;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    font-family: monospace;
    font-size: 14px;
}

/* Sub-grade de Calendário */
.purin-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.calendar-box {
    font-family: monospace;
}

.calendar-header {
    text-align: center;
    font-weight: bold;
    background: #7a4f30;
    color: #ffffff;
    font-size: 11px;
    padding: 2px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
    text-align: center;
}

.calendar-table th {
    color: #7a4f30;
    padding-bottom: 3px;
}

.calendar-table td {
    padding: 2px 0;
    color: #4a4a4a;
}

.cal-active {
    background-color: #ffb6c1;
    color: #5c3a21 !important;
    font-weight: bold;
    border-radius: 3px;
}

.purin-info-img {
    width: 100%;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 5px;
}

/* Coluna Direita: Links e Listas */
.purin-right-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purin-right-links li {
    margin-bottom: 5px;
}

.purin-right-links a {
    color: #7a4f30;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

.purin-right-links a:hover {
    color: #ffb6c1;
    text-decoration: underline;
}

.affiliates-buttons {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.mini-banner-placeholder {
    width: 88px;
    height: 31px;
    background: #fff0f5;
    border: 1px dashed #7a4f30;
    font-size: 10px;
    text-align: center;
    line-height: 31px;
    color: #7a4f30;
}

.todo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 11px;
    color: #555;
}

.todo-list li {
    margin-bottom: 4px;
}

.purin-right-mascot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    margin: 8px auto 0 auto;
    object-fit: cover;
    border: 2px solid #7a4f30;
}

/* Formulário e Rodapé */
.purin-form {
    background-color: #ffffff !important;
    padding: 15px !important;
    margin-top: 10px !important;
    border-radius: 12px;
    border: 3px double #5c3a21;
}

body.pagina-marvel .purin-footer-bg {
    background-color: #5c3a21 !important;
    margin-top: 10px !important;
    border-radius: 10px;
}
