        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a1a;
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #ff00ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #00ffff;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 20px 0;
            border-bottom: 3px solid #ff00ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(255, 0, 255, 0.5);
        }
        .logo a:hover {
            text-shadow: 0 4px 20px rgba(0, 255, 255, 0.7);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-links li a:hover {
            background: rgba(255, 0, 255, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff00ff;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(26, 26, 46, 0.8);
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #00ffff;
        }
        main {
            padding: 30px 0;
            background: #0f0f23;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        article {
            padding: 20px;
        }
        h1 {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 30px;
            color: #00ffff;
            text-shadow: 0 0 15px #00ffff;
        }
        h2 {
            font-size: 2.5rem;
            color: #ff00ff;
            margin-top: 40px;
            margin-bottom: 20px;
            border-left: 5px solid #ff00ff;
            padding-left: 15px;
        }
        h3 {
            font-size: 2rem;
            color: #00ffaa;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #ffaa00;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 0, 255, 0.1);
            padding: 15px;
            border-left: 4px solid #00ffff;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #00ffff;
            margin: 30px auto;
            display: block;
            box-shadow: 0 5px 25px rgba(0, 255, 255, 0.5);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #aaaaaa;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed #ff00ff;
        }
        .search-section, .comment-section, .score-section {
            background: rgba(26, 26, 46, 0.9);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border: 2px solid #00ffff;
        }
        .search-section h2, .comment-section h2, .score-section h2 {
            color: #00ffff;
            border-left: 5px solid #ff00ff;
        }
        form {
            display: grid;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 2px solid #ff00ff;
            border-radius: 10px;
            background: #1a1a2e;
            color: #f0f0f0;
            font-size: 1.1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 10px #00ffff;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            color: #0a0a1a;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 0, 255, 0.5);
        }
        footer {
            background: #1a1a2e;
            padding: 40px 0;
            border-top: 3px solid #ff00ff;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        friend-link a {
            color: #00ffaa;
            font-weight: 600;
        }
        friend-link a:hover {
            color: #ff00ff;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaaaaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                gap: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            h4 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1.1rem;
            }
            .container {
                padding: 0 15px;
            }
        }
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
        }
        ::selection {
            background: #ff00ff;
            color: #000;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(0, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
        }
