        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        :root {
            --primary-bg: #0a0a0f;
            --secondary-bg: #151520;
            --accent-blue: #00ffff;
            --accent-pink: #ff00ff;
            --text-light: #e0e0ff;
            --text-gray: #b0b0d0;
            --border-color: #333344;
            --transition: all 0.3s ease;
        }
        body {
            background: var(--primary-bg);
            color: var(--text-light);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-pink);
            text-shadow: 0 0 8px var(--accent-pink);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .site-header {
            background: var(--secondary-bg);
            padding: 1rem 0;
            border-bottom: 2px solid var(--accent-blue);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .nav-main {
            display: flex;
            gap: 2rem;
        }
        .nav-main a {
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-main a:hover {
            background: rgba(0, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a:after {
            content: ' › ';
            margin: 0 5px;
        }
        .breadcrumb a:last-child:after {
            content: '';
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-blue);
        }
        #nav-toggle {
            display: none;
        }
        .search-box {
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            gap: 0;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            background: var(--secondary-bg);
            border: 2px solid var(--accent-blue);
            color: var(--text-light);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-button {
            padding: 1rem 2rem;
            background: var(--accent-blue);
            color: var(--primary-bg);
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-button:hover {
            background: var(--accent-pink);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: var(--secondary-bg);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--accent-blue);
            text-align: center;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            color: var(--accent-pink);
            border-left: 5px solid var(--accent-pink);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--text-light);
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--text-gray);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(0, 255, 255, 0.1);
            padding: 1.5rem;
            border-left: 4px solid var(--accent-blue);
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: var(--text-gray);
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--border-color);
        }
        .image-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .image-container img {
            max-width: 80%;
            box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
        }
        .sidebar {
            background: var(--secondary-bg);
            padding: 2rem;
            border-radius: 12px;
            height: fit-content;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 2.5rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: var(--text-gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars input:checked ~ label {
            color: gold;
        }
        textarea, input[type="text"], input[type="email"] {
            padding: 1rem;
            background: var(--primary-bg);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            border-radius: 6px;
            width: 100%;
        }
        .submit-btn {
            padding: 1rem;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
        }
        .site-footer {
            background: var(--secondary-bg);
            padding: 3rem 0 1.5rem;
            border-top: 2px solid var(--accent-pink);
            margin-top: 3rem;
        }
        .friend-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .friend-links a {
            display: block;
            padding: 0.8rem;
            background: rgba(255, 0, 255, 0.05);
            border-radius: 6px;
            text-align: center;
        }
        .friend-links a:hover {
            background: rgba(0, 255, 255, 0.1);
        }
        .copyright {
            text-align: center;
            color: var(--text-gray);
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-main {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            #nav-toggle:checked ~ .nav-main {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .content-area {
                gap: 2rem;
            }
        }
