/* #### Generated By: http://www.cufonfonts.com #### */

    html, body {
        cursor: url("cursor/cursor\ 1.png"), default;
    }
  
  /* Clear floats */
  .container::after {
    content: "";
    clear: both;
    display: table;
    width: 0;
  }
  
  /* Style images */
  .container img {
    float: left;
    max-width: 60px;
    width: 100%;
    margin-right: 20px;
    border-radius: 50%;
    border-color: #1ca359;
  }
  
  /* Style the right image */
  .container img.right {
    float: right;
    margin-left: 20px;
    margin-right:0;
  }
  
  /* Style time text */
  .time-right {
    float: right;
    color: #aaa;
  }
  
  /* Style time text */
  .time-left {
    float: left;
    color: #999;
  }

  /* Conteúdo geral */

  ::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f0f0f0;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #2c2c2c; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #111111; 
}

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

        body {
            background: linear-gradient(180deg, 
                #1a1a2e 0%, 
                #16213e 25%, 
                #0f3460 50%, 
                #16213e 75%, 
                #1a1a2e 100%);
            background-image: url("img/familiar.png");
            background-repeat: no-repeat;
            background-position: center;
            background-attachment: fixed;
            background-size: cover;
            font-family: 'Courier Prime', monospace;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(
                    0deg,
                    rgba(0, 0, 0, 0.15) 0px,
                    transparent 1px,
                    transparent 2px,
                    rgba(0, 0, 0, 0.15) 3px
                );
            pointer-events: none;
            z-index: 1;
            animation: scanlines 8s linear infinite;
        }

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

        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.7) 100%);
            pointer-events: none;
            z-index: 2;
        }

        .container {
            max-width: 900px;
            background-color: hsl(223, 23%, 15%);
            border: 2px solid #574470;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
            z-index: 3;
        }

        .container img {
            border-radius: 0%;
        }

        .glitch-wrapper {
            position: relative;
            display: inline-block;
        }

        h1 {
            font-family: 'VT323', monospace;
            font-size: 4rem;
            color: #ff00ff;
            text-shadow: 
                3px 3px 0 #00ffff,
                -2px -2px 0 #ffff00,
                0 0 20px rgba(255, 0, 255, 0.5);
            margin-bottom: 40px;
            letter-spacing: 4px;
            animation: glitch-text 3s infinite;
        }

        @keyframes glitch-text {
            0%, 90%, 100% {
                transform: translate(0);
            }
            92% {
                transform: translate(-2px, 2px);
            }
            94% {
                transform: translate(2px, -2px);
            }
            96% {
                transform: translate(-2px, -2px);
            }
        }

        .music-control {
            background: rgba(20, 20, 40, 0.8);
            border: 2px solid #ff00ff;
            padding: 15px 25px;
            margin-bottom: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }

        .music-control:hover {
            background: rgba(255, 0, 255, 0.2);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
        }

        .music-control summary {
            color: #ff0066;
            font-size: 1.2rem;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .music-control summary::before {
            content: '▶';
            transition: transform 0.3s;
        }

        .music-control[open] summary::before {
            transform: rotate(90deg);
        }

        .image-container {
            position: relative;
            margin: 50px 0;
            text-align: center;
            filter: contrast(1.1) brightness(0.9);
        }

        .image-container img {
            max-width: 49%;
            height: auto;
            border: 4px solid #000;
            box-shadow: 
                0 0 30px rgba(0, 255, 255, 0.3),
                0 0 60px rgba(255, 0, 255, 0.2),
                inset 0 0 20px rgba(0, 0, 0, 0.5);
            animation: image-flicker 4s infinite;
        }

        @keyframes image-flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.98; }
            51% { opacity: 1; }
            52% { opacity: 0.97; }
        }

        .image-caption {
            color: #ff00ff;
            font-style: italic;
            margin-top: 20px;
            font-size: 1.1rem;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }

        .thought {
            color: #c000b1;
            font-style: italic;
            margin: 25px 0;
            padding-left: 20px;
            border-left: 3px solid #c000b1;
            background: rgba(192, 0, 177, 0.05);
            padding: 15px 20px;
        }

        .dialogue {
            color: #faf738;
            font-weight: bold;
            margin: 20px 0;
            padding: 10px;
            background: rgba(250, 247, 56, 0.05);
            border: 1px solid rgba(250, 247, 56, 0.3);
        }

        .blood-text {
            color: #ff0000;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
            animation: blood-pulse 2s infinite;
        }

        @keyframes blood-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .sound-effect {
            color: #0099ff;
            font-style: italic;
            display: block;
            text-align: center;
            margin: 15px 0;
            font-size: 1.3rem;
        }

        p {
            margin: 20px 0;
            text-align: justify;
            text-shadow: 0 0 5px rgba(224, 224, 224, 0.3);
        }

        .navigation {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 2px solid #cecece;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .navigation a {
            color: rgb(53, 204, 15);
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid rgb(53, 204, 15);
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.5);
            text-shadow: 0 0 10px rgba(53, 204, 15, 0.5);
        }

        .navigation a:hover {
            background: rgba(53, 204, 15, 0.2);
            box-shadow: 0 0 20px rgba(53, 204, 15, 0.5);
            transform: translateX(5px);
        }

        .static-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.03;
            z-index: 4;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
            animation: static-move 0.5s steps(8) infinite;
        }

        @keyframes static-move {
            0% { transform: translate(0, 0); }
            50% { transform: translate(5px, 5px); }
            100% { transform: translate(-5px, -5px); }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .container {
                padding: 40px 15px;
            }
        }