@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=League+Gothic&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #1a1a1a;
            font-family: 'Courier New', monospace;
            color: #f5f5dc;
            overflow-x: hidden;
            position: relative;
        }

        /* Fundo personalizado */
        .custom-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -1;
        }

        /* Overlay para melhorar legibilidade */
        .custom-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        /* Efeito de filme antigo */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0,0,0,.05) 2px,
                    rgba(0,0,0,.05) 4px
                );
            pointer-events: none;
            z-index: 1000;
            animation: scanlines 8s linear infinite;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(10px); }
        }

        /* Vinheta de filme antigo */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: inset 0 0 200px rgba(0,0,0,0.9);
            pointer-events: none;
            z-index: 999;
        }

        .film-grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence baseFrequency="0.9" /></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
            opacity: 0.3;
            pointer-events: none;
            z-index: 998;
            animation: grain 1s steps(10) infinite;
        }

        @keyframes grain {
            0%, 100% { transform: translate(0, 0); }
            10% { transform: translate(-5%, -5%); }
            20% { transform: translate(-10%, 5%); }
            30% { transform: translate(5%, -10%); }
            40% { transform: translate(-5%, 15%); }
            50% { transform: translate(-10%, 5%); }
            60% { transform: translate(15%, 0); }
            70% { transform: translate(0, 10%); }
            80% { transform: translate(-15%, 0); }
            90% { transform: translate(10%, 5%); }
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }

        .film-frame {
            border: 20px solid #2a2a2a;
            border-radius: 5px;
            background: #0d0d0d;
            padding: 30px;
            box-shadow: 
                inset 0 0 50px rgba(0,0,0,0.8),
                0 10px 50px rgba(0,0,0,0.5);
            position: relative;
        }

        /* Perfurações de filme */
        .film-frame::before,
        .film-frame::after {
            content: '';
            position: absolute;
            width: 15px;
            top: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 15px,
                    #000 15px,
                    #000 25px
                );
        }

        .film-frame::before {
            left: -18px;
        }

        .film-frame::after {
            right: -18px;
        }

        .title {
            font-family: 'League Gothic', sans-serif;
            font-size: 3em;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 
                3px 3px 0 #000,
                -1px -1px 0 #000,
                1px -1px 0 #000,
                -1px 1px 0 #000;
            letter-spacing: 8px;
            animation: flicker 3s infinite alternate;
        }

        .title span {
            display: inline-block;
            animation: bounce 2s infinite;
        }

        .title span:nth-child(1) { color: #ff0000; animation-delay: 0s; }
        .title span:nth-child(2) { color: #ff6d00; animation-delay: 0.1s; }
        .title span:nth-child(3) { color: #fff000; animation-delay: 0.2s; }
        .title span:nth-child(4) { color: #04ff00; animation-delay: 0.3s; }
        .title span:nth-child(5) { color: #0000ff; animation-delay: 0.4s; }
        .title span:nth-child(6) { color: #5f5fc3; animation-delay: 0.5s; }
        .title span:nth-child(7) { color: #7400ce; animation-delay: 0.6s; }
        .title span:nth-child(8) { color: #ff0000; animation-delay: 0.7s; }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .featured-image {
            text-align: center;
            margin: 40px 0;
            padding: 20px;
            background: radial-gradient(circle, #2a2a2a 0%, #000 100%);
            border: 5px double #f5f5dc;
            box-shadow: 0 0 30px rgba(245, 245, 220, 0.3);
        }

        .featured-image img {
            max-width: 100%;
            height: auto;
            border: 3px solid #f5f5dc;
            filter: contrast(1.2) sepia(0.3);
            animation: imagePulse 4s infinite;
        }

        @keyframes imagePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .timestamp {
            text-align: center;
            font-style: italic;
            color: #888;
            margin: 20px 0;
            font-size: 1.1em;
            letter-spacing: 2px;
        }

        .content {
            line-height: 2;
            text-align: justify;
            font-size: 1.1em;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .content p {
            margin-bottom: 25px;
            text-indent: 40px;
            font-size: 92%;
        }

        .content strong {
            font-size: 1.3em;
            letter-spacing: 3px;
        }

        .rainbow-text {
            background: linear-gradient(
                90deg,
                #ff0000,
                #ff6d00,
                #fff000,
                #04ff00,
                #0000ff,
                #7400ce,
                #FF00BB
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            animation: rainbow 3s linear infinite;
        }

        @keyframes rainbow {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

        .glitch {
            font-size: 2em;
            font-weight: bold;
            text-align: center;
            margin: 60px 0;
            animation: glitch 1s infinite;
            color: #ff0000;
            text-shadow: 
                2px 2px #00ff00,
                -2px -2px #0000ff;
        }

        @keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }

        .spacer {
            height: 100px;
            position: relative;
        }

        .spacer::after {
            content: '★ ★ ★';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: #f5f5dc;
            opacity: 0.3;
            font-size: 1.5em;
            letter-spacing: 20px;
        }

        .navigation {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 3px double #f5f5dc;
        }

        .navigation a {
            display: inline-block;
            color: #ff0000;
            text-decoration: none;
            font-size: 1.3em;
            font-weight: bold;
            padding: 15px 30px;
            margin: 10px;
            border: 3px solid #ff0000;
            background: #1a1a1a;
            transition: all 0.3s;
            text-shadow: 2px 2px 0 #000;
            position: relative;
        }

        .navigation a:hover {
            background: #ff0000;
            color: #fff;
            transform: scale(1.1) rotate(-2deg);
            box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
        }

        .navigation a::before {
            content: '';
            margin-right: 10px;
            animation: arrow 1s infinite;
        }

        @keyframes arrow {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(5px); }
        }

        hr {
            border: none;
            height: 3px;
            background: linear-gradient(
                90deg,
                transparent,
                #f5f5dc,
                transparent
            );
            margin: 40px 0;
        }

        @media (max-width: 768px) {
            .title {
                font-size: 2em;
                letter-spacing: 4px;
            }

            .content {
                font-size: 1em;
            }

            .film-frame {
                padding: 20px;
                border-width: 10px;
            }

            .navigation a {
                display: block;
                margin: 10px 0;
            }
        }

        /* Efeito de círculos antigos de desenho */
        .circles-bg {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200%;
            height: 200%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.05;
        }

        .circles-bg::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle, transparent 40%, #f5f5dc 40%, #f5f5dc 41%, transparent 41%),
                radial-gradient(circle, transparent 50%, #f5f5dc 50%, #f5f5dc 51%, transparent 51%),
                radial-gradient(circle, transparent 60%, #f5f5dc 60%, #f5f5dc 61%, transparent 61%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Controles de música */
        .music-controls {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1001;
        }

        .music-button {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            border: 4px solid #f5f5dc;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 5px 15px rgba(0, 0, 0, 0.5),
                inset 0 2px 5px rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .music-button:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 
                0 8px 25px rgba(245, 245, 220, 0.3),
                inset 0 2px 5px rgba(255, 255, 255, 0.2);
        }

        .music-button:active {
            transform: scale(0.95);
        }

        .music-button svg {
            width: 35px;
            height: 35px;
            fill: #f5f5dc;
            transition: all 0.3s ease;
        }

        .music-button.playing svg {
            animation: pulse 1s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Ondas sonoras quando tocando */
        .music-button.playing::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid #f5f5dc;
            animation: soundwave 1.5s infinite;
        }

        .music-button.playing::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid #f5f5dc;
            animation: soundwave 1.5s infinite 0.75s;
        }

        @keyframes soundwave {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Tooltip */
        .music-button .tooltip {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: #2a2a2a;
            color: #f5f5dc;
            padding: 10px 15px;
            border-radius: 5px;
            border: 2px solid #f5f5dc;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            font-size: 0.9em;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
        }

        .music-button:hover .tooltip {
            opacity: 1;
        }

        .music-button .tooltip::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #f5f5dc;
        }

        /* Controle de volume (opcional) */
        .volume-slider {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 150px;
            background: #2a2a2a;
            padding: 15px;
            border-radius: 10px;
            border: 3px solid #f5f5dc;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .volume-slider.show {
            opacity: 1;
            pointer-events: all;
        }

        .volume-slider input[type="range"] {
            width: 100%;
            -webkit-appearance: none;
            background: transparent;
        }

        .volume-slider input[type="range"]::-webkit-slider-track {
            width: 100%;
            height: 6px;
            background: #1a1a1a;
            border-radius: 3px;
            border: 1px solid #f5f5dc;
        }

        .volume-slider input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            background: #f5f5dc;
            border-radius: 50%;
            cursor: pointer;
            margin-top: -6px;
        }

        .volume-slider input[type="range"]::-moz-range-track {
            width: 100%;
            height: 6px;
            background: #1a1a1a;
            border-radius: 3px;
            border: 1px solid #f5f5dc;
        }

        .volume-slider input[type="range"]::-moz-range-thumb {
            width: 18px;
            height: 18px;
            background: #f5f5dc;
            border-radius: 50%;
            cursor: pointer;
            border: none;
        }

        @media (max-width: 768px) {
            .music-controls {
                bottom: 20px;
                right: 20px;
            }

            .music-button {
                width: 60px;
                height: 60px;
            }

            .music-button svg {
                width: 30px;
                height: 30px;
            }

            .volume-slider {
                width: 120px;
            }
        }
