  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Crimson Text', 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
            background: 
                repeating-linear-gradient(
                    0deg,
                    #2a2a2a 0px,
                    #2a2a2a 1px,
                    #2e2e2e 1px,
                    #2e2e2e 3px
                ),
                linear-gradient(180deg, #1a1a1a 0%, #252525 30%, #222222 70%, #181818 100%);
            color: #c8c8c8;
            background-image: url('img/prisão.jpg');
            background-repeat: no-repeat;
            background-position: center;
            background-attachment: fixed;
            background-size: cover;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Vinheta degradada */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.4) 100%);
            pointer-events: none;
            z-index: 1;
            mix-blend-mode: multiply;
        }
        
        /* Noise e degradação */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(
                    90deg,
                    transparent 0px,
                    rgba(255, 255, 255, 0.01) 1px,
                    transparent 2px,
                    transparent 100px
                ),
                repeating-linear-gradient(
                    0deg,
                    transparent 0px,
                    rgba(255, 255, 255, 0.008) 1px,
                    transparent 2px
                );
            pointer-events: none;
            z-index: 1;
            opacity: 0.3;
            animation: flicker 8s ease-in-out infinite;
        }
        
        @keyframes flicker {
            0%, 100% { opacity: 0.4; }
            45%, 55% { opacity: 0.5; }
            50% { opacity: 0.3; }
        }
        
        /* Textura de papel degradado */
        .texture-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.15;
            background: 
                radial-gradient(circle at 15% 25%, rgba(0, 0, 0, 0.5) 0%, transparent 30%),
                radial-gradient(circle at 85% 70%, rgba(0, 0, 0, 0.45) 0%, transparent 35%),
                radial-gradient(circle at 50% 90%, rgba(0, 0, 0, 0.4) 0%, transparent 40%),
                radial-gradient(circle at 30% 60%, rgba(0, 0, 0, 0.35) 0%, transparent 25%);
            animation: slowBreath 20s ease-in-out infinite;
        }
        
        @keyframes slowBreath {
            0%, 100% { opacity: 0.15; }
            50% { opacity: 0.22; }
        }

        .container {
            max-width: 850px;
            width: 100%;
            background: 
                linear-gradient(180deg, #3a3a3a 0%, #2e2e2e 30%, #393939 70%, #373737 100%);
            border: none;
            border-top: 2px solid rgba(80, 80, 80, 0.3);
            border-bottom: 2px solid rgba(0, 0, 0, 0.6);
            padding: 70px 90px;
            box-shadow: 
                0 0 120px rgba(0, 0, 0, 0.8),
                inset 0 0 100px rgba(0, 0, 0, 0.4),
                0 50px 100px -30px rgba(0, 0, 0, 0.9);
            position: relative;
            z-index: 2;
            animation: containerFade 2s ease-out;
        }
        
        @keyframes containerFade {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Links com efeito sangue */
        a {
            color: #ee0000;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #ee0000;
            transition: width 0.4s ease;
        }

        a:hover::after {
            width: 100%;
        }

        /* Imagens com efeito liminal */
        img {
            display: block;
            margin: 60px auto;
            max-width: 85%;
            height: auto;
            opacity: 0.7;
            filter: grayscale(70%) contrast(120%);
            border: 1px solid var(--ghost);
            box-shadow: 
                0 0 30px rgba(29, 29, 29, 0.3),
                0 0 60px rgba(70, 70, 70, 0.2),
                inset 0 0 20px rgba(0, 0, 0, 0.5);
        }

        img:hover {
            opacity: 0.9;
            filter: grayscale(50%) contrast(130%) brightness(1.1);
            transform: scale(1.02);
        }

        /* Manchas de degradação */
        .container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 10% 15%, rgba(0, 0, 0, 0.4) 0%, transparent 40%),
                radial-gradient(ellipse at 92% 80%, rgba(0, 0, 0, 0.5) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 95%, rgba(0, 0, 0, 0.35) 0%, transparent 35%),
                radial-gradient(ellipse at 75% 30%, rgba(0, 0, 0, 0.3) 0%, transparent 30%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 15%, transparent 85%, rgba(0, 0, 0, 0.4) 100%);
            pointer-events: none;
            opacity: 0.8;
        }
        
        /* Linha de luz superior */
        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(100, 100, 100, 0.3), transparent);
            pointer-events: none;
        }

        h1 {
            font-size: 2.6em;
            color: #b8b8b8;
            text-align: left;
            margin-bottom: 55px;
            font-weight: 400;
            letter-spacing: 3px;
            text-shadow: 
                1px 1px 0 rgba(0, 0, 0, 0.8),
                0 0 20px rgba(0, 0, 0, 0.5),
                0 3px 8px rgba(0, 0, 0, 0.7);
            border-bottom: 1px solid rgba(120, 120, 120, 0.3);
            padding-bottom: 28px;
            position: relative;
            text-transform: lowercase;
            font-family: 'VT323', monospace;
            animation: titleAppear 2.5s ease-out 0.5s backwards;
        }
        
        @keyframes titleAppear {
            from {
                opacity: 0;
                letter-spacing: 8px;
            }
            to {
                opacity: 1;
                letter-spacing: 3px;
            }
        }

        h1::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, rgba(100, 100, 100, 0.5), transparent);
            box-shadow: 0 0 8px rgba(100, 100, 100, 0.3);
            animation: lineExpand 4s ease-out 1.5s forwards;
        }
        
        @keyframes lineExpand {
            to { width: 100%; }
        }

        .content {
            line-height: 2.4;
            font-size: 1em;
            color: #e7e7e7;
            text-align: justify;
            margin-bottom: 50px;
            position: relative;
            font-weight: 400;
            letter-spacing: 0.5px;
            word-spacing: 1px;
        }

        .content p {
            margin-bottom: 1.8em;
            text-indent: 2.5em;
            opacity: 0;
            animation: textFadeIn 1.5s ease-out forwards;
            position: relative;
        }

        .content p:nth-child(1) { animation-delay: 1s; }
        .content p:nth-child(2) { animation-delay: 1.3s; }
        .content p:nth-child(3) { animation-delay: 1.6s; }
        .content p:nth-child(4) { animation-delay: 1.9s; }
        .content p:nth-child(5) { animation-delay: 2.2s; }
        
        @keyframes textFadeIn {
            from { 
                opacity: 0;
            }
            to { 
                opacity: 0.75;
            }
        }

        .content p:first-of-type {
            font-size: 1.08em;
            opacity: 0;
            animation: textFadeIn 1.5s ease-out 1s forwards;
        }

        .divider {
            width: 0;
            height: 1px;
            background: 
                linear-gradient(90deg, 
                    transparent, 
                    rgba(100, 100, 100, 0.3) 20%, 
                    rgba(120, 120, 120, 0.5) 50%, 
                    rgba(100, 100, 100, 0.3) 80%, 
                    transparent
                );
            margin: 55px 0 35px 0;
            animation: dividerExpand 3s ease-out 2.5s forwards;
            position: relative;
        }
        
        .divider::after {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 20px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
        }
        
        @keyframes dividerExpand {
            to { width: 100%; }
        }

        .return-link {
            display: inline-block;
            color: #a8a8a8;
            text-decoration: none;
            font-size: 0.92em;
            padding: 11px 26px;
            border: 1px solid rgba(120, 120, 120, 0.4);
            background: 
                linear-gradient(180deg, #3a3a3a, #2a2a2a);
            box-shadow: 
                0 3px 12px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(100, 100, 100, 0.2);
            letter-spacing: 1.5px;
            opacity: 0;
            animation: linkAppear 1.2s ease-out 3s forwards;
            position: relative;
            font-family: 'Arial', sans-serif;
            transition: all 0.4s ease;
        }
        
        @keyframes linkAppear {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .return-link:hover {
            border-color: rgba(140, 140, 140, 0.6);
            color: #c8c8c8;
            transform: translateY(-3px);
            box-shadow: 
                0 6px 20px rgba(0, 0, 0, 0.8),
                inset 0 1px 0 rgba(120, 120, 120, 0.3);
            background: linear-gradient(180deg, #454545, #353535);
        }

        .placeholder {
            color: #707070;
            font-style: italic;
        }

         /* Scrollbar personalizada - tema prisão */
        ::-webkit-scrollbar {
            width: 14px;
            background: #1a1a1a;
        }
        
        ::-webkit-scrollbar-track {
            background: 
                repeating-linear-gradient(
                    0deg,
                    #2a2a2a 0px,
                    #2a2a2a 2px,
                    #1e1e1e 2px,
                    #1e1e1e 4px
                ),
                linear-gradient(90deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
            border-left: 1px solid #0a0a0a;
            border-right: 1px solid #404040;
            box-shadow: 
                inset 2px 0 5px rgba(0, 0, 0, 0.8),
                inset -1px 0 3px rgba(0, 0, 0, 0.6);
        }
        
        ::-webkit-scrollbar-thumb {
            background: 
                repeating-linear-gradient(
                    0deg,
                    #505050 0px,
                    #505050 8px,
                    #3a3a3a 8px,
                    #3a3a3a 10px,
                    #505050 10px,
                    #505050 18px,
                    #2a2a2a 18px,
                    #2a2a2a 20px
                );
            border: 1px solid #1a1a1a;
            border-radius: 2px;
            box-shadow: 
                inset 0 0 6px rgba(0, 0, 0, 0.5),
                0 0 8px rgba(0, 0, 0, 0.4),
                inset 1px 0 0 rgba(80, 80, 80, 0.3),
                inset -1px 0 0 rgba(0, 0, 0, 0.8);
            position: relative;
        }
        
        ::-webkit-scrollbar-thumb::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            transform: translateX(-50%);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: 
                repeating-linear-gradient(
                    0deg,
                    #606060 0px,
                    #606060 8px,
                    #4a4a4a 8px,
                    #4a4a4a 10px,
                    #606060 10px,
                    #606060 18px,
                    #3a3a3a 18px,
                    #3a3a3a 20px
                );
            box-shadow: 
                inset 0 0 8px rgba(0, 0, 0, 0.6),
                0 0 12px rgba(0, 0, 0, 0.5),
                inset 1px 0 0 rgba(100, 100, 100, 0.4),
                inset -1px 0 0 rgba(0, 0, 0, 0.9);
        }
        
        ::-webkit-scrollbar-thumb:active {
            background: 
                repeating-linear-gradient(
                    0deg,
                    #4a4a4a 0px,
                    #4a4a4a 8px,
                    #353535 8px,
                    #353535 10px,
                    #4a4a4a 10px,
                    #4a4a4a 18px,
                    #252525 18px,
                    #252525 20px
                );
        }
        
        /* Firefox */
        * {
            scrollbar-width: thin;
            scrollbar-color: #505050 #1a1a1a;
        }

        @media (max-width: 768px) {
            .container {
                padding: 50px 40px;
            }

            h1 {
                font-size: 2em;
                margin-bottom: 40px;
                letter-spacing: 2px;
            }

            .content {
                font-size: 0.95em;
                line-height: 2.2;
            }
            
            body::before {
                animation: none;
            }
            
            .texture-overlay {
                opacity: 0.04;
                animation: none;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 40px 25px;
            }

            h1 {
                font-size: 1.7em;
                letter-spacing: 1.5px;
            }

            .content p {
                text-indent: 1.5em;
            }
        }