        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #000;
            color: #fff;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
        }
        
        .banner {
            width: 100%;
            height: 300px;
            background: url('https://i.pinimg.com/736x/1b/96/a2/1b96a2dc6db0ca5ec8a8b2afef0d8799.jpg') center/cover;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
        }
        
        .section {
            margin: 3rem 0;
        }
        
        iframe {
            border: 1px solid #333;
            border-radius: 4px;
        }
        
        .break-line {
            margin: 4rem 0 2rem;
            text-align: center;
            opacity: 0.5;
            font-weight: 300;
        }
        
        h1 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 1rem;
            text-transform: lowercase;
        }
        
        h2, h3 {
            font-weight: 300;
            margin: 2rem 0 1rem;
            opacity: 0.9;
            text-transform: lowercase;
        }
        
        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 1rem 0;
        }
        
        .intro {
            opacity: 0.7;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        ul {
            list-style: none;
        }
        
        ul li {
            margin: 0.5rem 0;
        }
        
        a {
            color: #fff;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        
        a:hover {
            opacity: 1;
        }
        
        .section {
            margin: 3rem 0;
        }
        
        .status {
            font-family: monospace;
            font-size: 0.8rem;
            opacity: 0.6;
            margin-top: 2rem;
        }

                .star {
            position: fixed;
            background-color: white;
            border-radius: 50%;
            width: 2px;
            height: 2px;
            animation: twinkle 1.5s infinite alternate;
            z-index: -1;
        }

        @keyframes twinkle {
            0% {
                opacity: 0.3;
            }
            100% {
                opacity: 1;
            }
        }

        .shooting-star {
            position: fixed;
            width: 2px;
            height: 2px;
            background-color: white;
            border-radius: 50%;
            animation: shoot 1.5s linear infinite;
            z-index: -1;
        }

        .shooting-star::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 410px;
            height: 1px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
            transform: rotate(45deg);
            transform-origin: right center;
        }

        .colored-shooting {
            background-color: #00ff88;
            box-shadow: 0 0 8px #00ff88;
        }

        .colored-shooting::before {
            background: linear-gradient(90deg, rgba(0, 255, 136, 0) 0%, rgba(0, 255, 136, 0.8) 100%);
        }

        @keyframes shoot {
            0% {
                transform: translateX(0) translateY(0);
                opacity: 1;
            }
            100% {
                transform: translateX(1800px) translateY(1800px);
                opacity: 0;
            }
        }