        @font-face { font-family: "opsans"; src: url('https://dl.dropboxusercontent.com/s/6t6k1zdmq4v9u8b/OpenSans-Light.ttf'); }
        @font-face { font-family: "gogoia"; src: url('https://dl.dropboxusercontent.com/s/na2h45x6shj88nq/GOGOIA-Regular.otf'); }

        :root {
            --aqua-blue: #00d4ff;
            --teal-bright: #00f2c3;
            --soft-white: rgba(255, 255, 255, 0.9);
            --glass-border: rgba(255, 255, 255, 0.4);
            --deep-blue: #0077aa;
            --clear-glass: rgba(255, 255, 255, 0.45); 
        }

        /* EFEITO DE ENTRADA (FADE) */
        #intro-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            pointer-events: none;
            transition: opacity 2.5s ease-in-out;
        }

        body {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
        url('https://bettysgraphics.neocities.org/images/backgrounds/pattern%20590.gif') repeat; /* Mudado para 'repeat' */
    
    background-size: auto; /* 'auto' permite que a imagem mantenha o tamanho original e repita */
    background-position: top left; /* Geralmente melhor para patterns que repetem */
    background-attachment: fixed; 
    
    margin: 0;
    padding: 40px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    color: #223;
        }

        /* LINKS COM ANIMAÇÃO AQUA */
        .aqua-link {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            color: #005a8d;
            font-weight: bold;
            position: relative;
            padding: 2px 10px;
            border-radius: 20px;
            border: 1px solid transparent;
            display: inline-block;
        }
        
        .aqua-link:hover {
            color: #fff;
            transform: translateY(-2px);
            background: linear-gradient(to bottom, var(--aqua-blue), #00a8cc);
            box-shadow: 
                0 4px 15px rgba(0, 212, 255, 0.4),
                inset 0 2px 5px rgba(255, 255, 255, 0.5);
            border: 1px solid var(--teal-bright);
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .main-wrapper {
            width: 820px;
            margin: 0 auto;
        }

        /* EFEITO GLASSMORPHISM */
        .glass-box {
            background: var(--soft-white);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            box-shadow: 
                0 8px 32px 0 rgba(0, 100, 200, 0.15),
                inset 0 0 20px rgba(255, 255, 255, 0.6);
            border-radius: 18px;
        }

        /* TRANSPARÊNCIA PARA O CONTEÚDO PRINCIPAL */
        .main-content .glass-box, .header-box {
            background: var(--clear-glass) !important;
        }

        /* CABEÇALHO */
        .header-box {
            display: flex;
            align-items: center;
            padding: 12px 25px;
            height: 100px;
            margin-bottom: 20px;
            box-sizing: border-box;
            background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3)) !important;
        }

        .avatar img {
            background: linear-gradient(135deg, var(--aqua-blue), var(--teal-bright));
            padding: 4px;
            height: 70px;
            width: 70px;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
            margin-right: 20px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .avatar img:hover { transform: scale(1.05); }

        .titles { flex-grow: 1; }
        .namefield { 
            font-family: 'Itim', cursive; 
            font-size: 28px; 
            color: #004477; 
            text-shadow: 0 1px 2px rgba(255,255,255,0.8);
            text-transform: lowercase;
            display: block; 
        }
        .username { 
            font-family: 'Hind', sans-serif; 
            font-size: 12px; 
            color: #007766; 
            font-weight: bold;
            text-transform: uppercase; 
            display: block; 
            letter-spacing: 1.5px;
        }

        /* BOTÃO HOME */
        .home-btn { 
            display: flex;
            align-items: center;
            justify-content: center;
            height: 45px; 
            padding: 0 20px;
            border: 1px solid rgba(0, 212, 255, 0.3); 
            background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(230,245,255,0.6)); 
            border-radius: 25px; 
            transition: all 0.3s ease; 
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            text-decoration: none;
            font-family: 'Dosis', sans-serif;
            font-size: 13px;
            font-weight: bold;
            color: #006699;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .home-btn:hover { 
            transform: scale(1.05); 
            background: var(--aqua-blue); 
            color: #fff;
            border-color: var(--teal-bright);
        }
        .home-btn img {
            height: 20px;
            margin-right: 10px;
        }

        /* CONTAINER DE CONTEÚDO */
        .content-container {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

        .main-content { flex: 1; }

        /* BARRA LATERAL (SIDEBAR) */
        .sidebar { width: 220px; display: flex; flex-direction: column; gap: 20px; }
        .sidebar-box { padding: 20px; box-sizing: border-box; }
        .sidebar-title {
            font-family: 'Dosis', sans-serif;
            font-size: 18px;
            color: #005a8d;
            font-weight: 700;
            text-transform: lowercase;
            border-bottom: 2px solid var(--teal-bright);
            margin-bottom: 12px;
            display: block;
        }
        .sidebar-text { font-family: 'Hind', sans-serif; font-size: 12.5px; line-height: 1.6; color: #223; }

        /* ESTILO CUSTOMIZADO STATUS.CAFE */
        #statuscafe {
            padding: 12px;
            background: rgba(255, 255, 255, 0.4);
            border: 1px solid var(--aqua-blue);
            border-radius: 12px;
            font-family: 'Hind', sans-serif;
            font-size: 12px;
            color: #004477;
            box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
            min-height: 40px;
        }
        #statuscafe-username {
            font-weight: 800;
            color: #0088cc;
            margin-bottom: 6px;
            text-transform: lowercase;
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            padding-bottom: 2px;
        }
        #statuscafe-content {
            margin: 4px 0;
            line-height: 1.4;
            font-style: normal;
        }

        /* CAIXA DE CÓDIGO */
        .code-box {
            width: 100%;
            height: 80px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--aqua-blue);
            border-radius: 8px;
            font-family: 'Courier New', Courier, monospace;
            font-size: 10px;
            color: #005a8d;
            padding: 8px;
            resize: none;
            outline: none;
            box-sizing: border-box;
        }

        /* ENTRADAS (POSTS) */
        .entrybox { padding: 30px; margin-bottom: 30px; position: relative; overflow: hidden; }
        .entry-title { font-size: 22px; font-family: 'Itim', cursive; color: #004477; margin-bottom: 8px; display: block; }
        .entry-sub { font-family: 'Hind', sans-serif; font-size: 10px; font-weight: bold; color: #008877; text-transform: uppercase; margin-bottom: 20px; display: block; letter-spacing: 0.5px; }

        /* IMAGENS NOS POSTS */
        .mini-post-img-left, .mini-post-img-right {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 15px;
            border: 4px solid #fff;
            box-shadow: 0 6px 15px rgba(0, 100, 200, 0.3);
            background: #fff; 
        }
        .mini-post-img-left { float: left; margin-right: 20px; margin-bottom: 15px; }
        .mini-post-img-right { float: right; margin-left: 20px; margin-bottom: 15px; }

        .content-separator {
            border-top: 1px dashed rgba(0, 150, 255, 0.3);
            margin: 25px 0;
            clear: both;
        }

        .content { 
            font-size: 14px; 
            line-height: 1.7; 
            color: #112; 
            font-family: 'Hind', sans-serif;
            font-weight: 500;
        }

        .aqua-list li {
            padding: 5px 0 5px 28px;
            position: relative;
            font-family: 'Hind', sans-serif;
            font-size: 13px;
            border-bottom: 1px dashed rgba(0, 212, 255, 0.2);
        }
        .aqua-list li::before {
            content: "💧";
            position: absolute;
            left: 4px;
            top: 8px;
            font-size: 11px;
        }

        .counter { position: absolute; bottom: 12px; right: 15px; font-size: 12px; font-weight: bold; color: #0088cc; }

        .pagination {
            text-align: center; 
            font-family: 'Dosis', sans-serif; 
            font-size: 13px; 
            font-weight: bold; 
            letter-spacing: 2px; 
            text-transform: uppercase; 
            margin: 35px 0; 
            padding: 12px 25px; 
            background: rgba(255, 255, 255, 0.6); 
            backdrop-filter: blur(8px); 
            border-radius: 25px; 
            display: block; 
            border: 1px solid var(--glass-border);
        }
            html, body {
  cursor: url('https://waterskyline.neocities.org/roundynormal.png'), default;
}
/* 3. Cliques (mãozinha) */
a, button, description, [role="button"] {
  cursor: url('https://waterskyline.neocities.org/roundyhand.png'), pointer;
}
 ::-webkit-scrollbar {
  width: 20px;
  height: 7px;
  background-color:#ffffff;
  }
  ::-webkit-scrollbar-button:start:decrement,
  ::-webkit-scrollbar-button:end:increment {display: block;}
  ::-webkit-scrollbar-button:vertical:start:increment,
  ::-webkit-scrollbar-button:vertical:end:decrement {display: none;}
  ::-webkit-scrollbar-button:end:increment 
        {background-image:url(https://www.snazzyspace.com/images/arrowdown.png);
  background-repeat: no-repeat;background-position:center;
        -webkit-box-shadow: inset 0 0 16px rgba(214,214,214,0.9);}
}
  ::-webkit-scrollbar-button:start:decrement 
  {background-image: url(https://www.snazzyspace.com/images/arrowup.png);
  background-repeat: no-repeat;background-position:center;
        -webkit-box-shadow: inset 0 0 16px rgba(214,214,214,0.9);}
  ::-webkit-scrollbar-thumb {
  background-color:transparent;
        background:url(https://www.snazzyspace.com/defaultimages/3865a6_ocean-waves.gif); 
        background-size: 400% auto;
  border-left:0px solid #E5E5E5;
  border-right:0px solid #E5E5E5;
  border-bottom:0px solid #E5E5E5;
  border-top:0px solid #E5E5E5;
  border-radius:0%;
  }
  ::-webkit-scrollbar-track {
        background:url(https://www.snazzyspace.com/images/track.png); 
  border-radius:0%;
  }
  /* LIGHTBOX DAS IMAGENS */

.image-viewer {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.4);
    z-index: 99999;
}

.image-viewer.active {
    display: flex;
}

.viewer-box {
    background: white;
    border-radius: 15px;
    padding: 15px;
    max-width: 80%;
    max-height: 80%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    animation: zoomIn 0.25s ease;
}

.viewer-box img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    display: block;
}

.viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Hind', sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
    color: #004477;
}

.viewer-close {
    background: #ff4d6d;
    border: none;
    color: white;
    font-size: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
}

.viewer-close:hover {
    background: #ff1f4b;
}

@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}