body {
            background-color: #d2d7bc; /* Tom verde pastel de fundo */
            background-image: repeating-linear-gradient(45deg, #cbd1b3 0, #cbd1b3 1px, transparent 0, transparent 50%), repeating-linear-gradient(-45deg, #cbd1b3 0, #cbd1b3 1px, #d2d7bc 0, #d2d7bc 50%);
            background-size: 12px 12px;
            font-family: 'Courier New', Courier, monospace;
            color: #4a3b32;
            margin: 0;
            padding: 30px 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        /* CAIXA CENTRAL DO SITE (ESTILO 3 COLUNAS) */
        .site-container {
            width: 100%;
            max-width: 1050px;
            background-color: #ffffff;
            border: 3px solid #a8b087;
            border-radius: 12px;
            box-shadow: 0px 10px 30px rgba(0,0,0,0.12);
            display: grid;
            /* Divide em: Lateral Esquerda (220px) | Centro (Ajustável) | Lateral Direita (220px) */
            grid-template-columns: 220px 1fr 220px;
        }

        /* BANNER SUPERIOR */
        .site-header {
            grid-column: span 3; /* Ocupa as 3 colunas */
            height: 220px;
            background-color: #f7e3d4; 
            background-image: url('slushie_header.png'); /* Caminho da sua arte de banner */
            background-size: cover;
            background-position: center;
            border-bottom: 3px solid #a8b087;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .site-header h1 {
            font-size: 3.5rem;
            color: #ff9ebb;
            text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff, -2px 2px 0px #fff;
            margin: 0;
        }

        /* ESTILIZAÇÃO PADRÃO DAS BARRAS LATERAIS */
        .sidebar-left {
            background-color: #fbf9f1;
            border-right: 2px dashed #cbd1b3;
            padding: 15px;
        }

        .sidebar-right {
            background-color: #fbf9f1;
            border-left: 2px dashed #cbd1b3;
            padding: 15px;
        }

        /* CAIXINHAS RETRÔ DOS MENUS */
        .box-sidebar {
            background-color: #e4e9cd;
            border: 2px solid #a8b087;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 15px;
        }

        .box-sidebar h3 {
            margin: 0 0 8px 0;
            font-size: 0.95rem;
            text-transform: uppercase;
            border-bottom: 2px solid #a8b087;
            padding-bottom: 3px;
            color: #556b2f;
            letter-spacing: 0.5px;
        }

        .box-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .box-sidebar li {
            margin-bottom: 6px;
            font-size: 0.9rem;
        }

        .box-sidebar a {
            color: #4a3b32;
            text-decoration: none;
            font-weight: bold;
        }

        .box-sidebar a:hover {
            color: #ff9ebb;
            text-decoration: underline;
        }

        /* ÁREA CENTRAL DE CONTEÚDO */
        .main-content {
            background-color: #fffdf9;
            padding: 25px;
        }

        .main-content h2, .main-content h3 {
            color: #556b2f;
            margin-top: 0;
        }

        /* CAIXAS DE CONTEÚDO INTERNO */
        .status-box, .webring-box {
            background-color: #fcfbf7;
            border: 1px solid #e4e9cd;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 15px;
        }

        /* GRID DE BOTÕES DE REDES E STAMPS */
        .buttons-grid, .stamps-grid {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .buttons-grid img, .stamps-grid img {
            image-rendering: pixelated; /* Mantém arte em pixel nítida */
            cursor: pointer;
        }

        .center-img {
            display: block;
            margin: 0 auto;
        }

        .clique-list {
            padding-left: 5px !important;
        }

        /* RODAPÉ DO SITE */
        .site-footer {
            grid-column: span 3;
            background-color: #e4e9cd;
            border-top: 3px solid #a8b087;
            padding: 15px;
            text-align: center;
            font-size: 0.85rem;
        }

        .footer-links a {
            color: #556b2f;
            text-decoration: none;
        }

        /* MASCOTE FLUTUANTE */
        .corner-pagedoll {
            position: fixed;
            bottom: 10px;
            right: 10px;
            z-index: 1000;
            pointer-events: none;
        }

        /* BOTÕES DE AUXÍLIO */
        .settings-box button {
            font-family: inherit;
            background: #fff;
            border: 1px solid #a8b087;
            padding: 3px 6px;
            cursor: pointer;
            font-size: 0.8rem;
            border-radius: 4px;
        }