@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Metal+Mania&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #ffc0cb 0%, #ffb6c1 50%, #ff69b4 100%);
            color: #333;
            overflow-x: hidden;
        }
        
        .sparkle {
            position: fixed;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            pointer-events: none;
            animation: sparkle 2s infinite;
            opacity: 0;
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }
        
        header {
            background: linear-gradient(to bottom, #ff1493, #ff69b4);
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: '🦄✨🌈';
            position: absolute;
            font-size: 100px;
            opacity: 0.1;
            top: -20px;
            left: 10%;
            animation: float 6s infinite;
        }
        
        header::after {
            content: '🎀💕🌸';
            position: absolute;
            font-size: 100px;
            opacity: 0.1;
            bottom: -20px;
            right: 10%;
            animation: float 8s infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }
        
        h1 {
            font-family: 'Metal Mania', cursive;
            font-size: 4em;
            color: white;
            text-shadow: 3px 3px 0 #ff1493, 6px 6px 0 #8b008b;
            margin-bottom: 20px;
            text-decoration: line-through;
            position: relative;
        }
        
        h1::after {
            content: "'Lica";
            position: absolute;
            right: -120px;
            text-decoration: none;
            font-size: 0.8em;
            color: #fff;
            animation: bounce 1s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .tagline {
            font-size: 1.8em;
            color: white;
            background: rgba(139, 0, 139, 0.7);
            padding: 20px;
            border-radius: 20px;
            display: inline-block;
            margin: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            max-width: 800px;
            font-style: italic;
        }
        
        .author {
            font-size: 0.6em;
            display: block;
            margin-top: 10px;
            text-align: right;
            font-style: normal;
        }
        
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }
        
        .section {
            background: white;
            margin: 30px 0;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
            border: 3px dashed #ff69b4;
        }
        
        h2 {
            color: #ff1493;
            font-size: 2.5em;
            margin-bottom: 20px;
            font-family: 'Metal Mania', cursive;
        }
        
        .evidence-list {
            list-style: none;
            padding: 0;
        }
        
        .evidence-list li {
            padding: 15px;
            margin: 10px 0;
            background: linear-gradient(to right, #fff0f5, #ffe4e1);
            border-left: 5px solid #ff69b4;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        
        .evidence-list li:hover {
            transform: translateX(10px) scale(1.02);
        }
        
        .evidence-list li::before {
            content: '🎀 ';
            font-size: 1.2em;
        }
        
        .album-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .album-card {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .album-card:hover {
            transform: rotate(-2deg) scale(1.05);
        }
        
        .album-title {
            font-weight: bold;
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #8b008b;
        }
        
        .softness-meter {
            background: #e0e0e0;
            height: 30px;
            border-radius: 15px;
            overflow: hidden;
            margin-top: 10px;
        }
        
        .softness-bar {
            height: 100%;
            background: linear-gradient(to right, #ff69b4, #ff1493);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            transition: width 1s;
        }
        
        .timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .timeline-item {
            background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #ff69b4;
            transition: all 0.3s ease;
        }

        .timeline-item:hover {
            border-left-width: 10px;
            background: linear-gradient(135deg, #fff9c4 0%, #ffe0f0 100%);
        }

        .timeline-year {
            font-size: 28px;
            color: #ff69b4;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .timeline-desc {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
        }

        .metal-meter {
            margin: 40px 0;
            text-align: center;
        }

        .meter-bar {
            width: 100%;
            height: 50px;
            background: #e0e0e0;
            border-radius: 25px;
            overflow: hidden;
            margin: 20px 0;
            position: relative;
        }

        .meter-fill {
            height: 100%;
            background: linear-gradient(90deg, #ff0000, #ff6b6b, #ffc0cb);
            width: 15%;
            transition: width 2s ease;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 15px;
            color: white;
            font-weight: bold;
        }

        .fun-facts {
            background: #fff9c4;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
        }

        .fun-facts ul {
            list-style: none;
            padding-left: 0;
        }

        .fun-facts li {
            padding: 15px;
            margin: 10px 0;
            background: white;
            border-radius: 8px;
            border-left: 4px solid #87ceeb;
            font-size: 18px;
        }
        
        .fun-facts li:hover {
            transform: translateX(10px) scale(1.02);
        }

        .fun-facts li:before {
            content: "🎸 ";
            margin-right: 10px;
        }

        footer {
            background: #8b008b;
            color: white;
            text-align: center;
            padding: 30px;
            margin-top: 50px;
            font-size: 0.9em;
        }
        
        .disclaimer {
            font-style: italic;
            opacity: 0.8;
            margin-top: 10px;
        }

        .disclaimer2 {
            text-align: center;
            padding: 0px 20px;
            font-size: 18px;
            color: #FFF;
            font-style: italic;
        }
