        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0b1f;
            color: #f0e6ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #9d7aff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff00ff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a0b2e 0%, #2d1b47 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #ff00ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff00ff, #9d7aff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            filter: brightness(1.2);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 10px;
        }
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #f0e6ff;
            border-radius: 3px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-menu a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-menu a:hover {
            background-color: rgba(255, 0, 255, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #b8a3e0;
        }
        .breadcrumb a::after {
            content: " › ";
            margin: 0 8px;
            color: #9d7aff;
        }
        .breadcrumb a:last-child::after {
            content: "";
        }
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-layout {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(30, 20, 55, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid #3a2a65;
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed #9d7aff;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #ff00ff, #00ccff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #9d7aff;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #4a3a75;
        }
        h3 {
            font-size: 1.7rem;
            color: #b8a3e0;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #d0c5f0;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(157, 122, 255, 0.15);
            border-left: 5px solid #ff00ff;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
            padding: 1rem;
            background: rgba(45, 27, 71, 0.5);
            border-radius: 10px;
        }
        .inline-link-list a {
            background: rgba(255, 0, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid #9d7aff;
        }
        .inline-link-list a:hover {
            background: rgba(255, 0, 255, 0.3);
        }
        .feature-img {
            margin: 2.5rem auto;
            max-width: 800px;
        }
        .feature-img figcaption {
            text-align: center;
            font-style: italic;
            margin-top: 0.5rem;
            color: #b8a3e0;
            font-size: 0.95rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #ffaa00;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #3a2a65;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(30, 20, 55, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #3a2a65;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: #00ccff;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: rgba(15, 11, 31, 0.8);
            border: 1px solid #9d7aff;
            border-radius: 5px;
            color: #f0e6ff;
            font-size: 1rem;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #ff00ff, #9d7aff);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            opacity: 0.9;
        }
        .star-rating {
            display: flex;
            justify-content: space-around;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffaa00;
        }
        .site-footer {
            background: #1a0b2e;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid #9d7aff;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #00ccff;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dotted #4a3a75;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3a2a65;
            color: #b8a3e0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a0b2e;
                padding: 1rem;
                border-top: 1px solid #3a2a65;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            .nav-menu.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
        }
