        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #e0e0e0;
            background: #0a0a14;
            background-image: linear-gradient(to bottom, #0a0a14 0%, #121226 70%, #1a1a2e 100%);
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4, h5, h6 { font-family: 'Orbitron', sans-serif; color: #00eeff; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-shadow: 0 0 15px rgba(0, 238, 255, 0.5); margin-top: 1rem;}
        h2 { font-size: clamp(2rem, 4vw, 2.8rem); border-left: 4px solid #ff00aa; padding-left: 1rem; margin-top: 3rem;}
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: #ffaa00; margin-top: 2rem; }
        h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: #aa80ff; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto;}
        a { color: #00eeff; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ff00aa; text-shadow: 0 0 8px rgba(255, 0, 170, 0.6); }
        strong, b { color: #ffaa00; font-weight: 700; }
        em { color: #aa80ff; font-style: italic; }
        blockquote {
            border-left: 3px solid #00eeff;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            background: rgba(0, 238, 255, 0.05);
            border-radius: 0 5px 5px 0;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-areas:
                "header"
                "nav"
                "breadcrumb"
                "main"
                "sidebar"
                "footer";
            gap: 2rem;
        }
        @media (min-width: 992px) {
            .container {
                grid-template-columns: 3fr 1fr;
                grid-template-areas:
                    "header header"
                    "nav nav"
                    "breadcrumb breadcrumb"
                    "main sidebar"
                    "footer footer";
            }
        }
        header {
            grid-area: header;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(0, 238, 255, 0.3);
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00eeff, #ff00aa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .my-logo:hover {
            text-shadow: 0 0 20px rgba(255, 0, 170, 0.7);
        }
        .search-form {
            flex-grow: 1;
            max-width: 500px;
            margin: 1rem auto 0;
            display: flex;
        }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #00eeff;
            border-right: none;
            color: #fff;
            border-radius: 5px 0 0 5px;
        }
        .search-form button {
            background: linear-gradient(90deg, #00eeff, #0088aa);
            color: #000;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover { background: linear-gradient(90deg, #ff00aa, #aa0088); color: #fff; }
        nav { grid-area: nav; background: rgba(18, 18, 38, 0.95); border-radius: 8px; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0 1rem; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { position: relative; }
        .nav-links a {
            display: block;
            padding: 1rem 1.5rem;
            color: #e0e0e0;
            font-weight: 500;
        }
        .nav-links a:hover { background: rgba(0, 238, 255, 0.1); }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #00eeff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 991px) {
            .hamburger { display: block; }
            .nav-links {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 20, 0.98);
                z-index: 1000;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
                border-radius: 0 0 8px 8px;
            }
            .nav-links.active { max-height: 500px; }
            .nav-links li { width: 100%; text-align: center; }
        }
        .breadcrumb {
            grid-area: breadcrumb;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb a { margin: 0 0.3rem; }
        .breadcrumb span { color: #aaa; }
        main {
            grid-area: main;
            background: rgba(26, 26, 46, 0.7);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article section { margin-bottom: 3rem; }
        aside {
            grid-area: sidebar;
            background: rgba(18, 18, 38, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            align-self: start;
        }
        .widget { margin-bottom: 2rem; }
        .widget h3 { font-size: 1.3rem; border-bottom: 2px solid #ff00aa; padding-bottom: 0.5rem; }
        .comment-form, .rating-form {
            background: rgba(255, 255, 255, 0.03);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
        }
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; color: #ffaa00; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(90deg, #ff00aa, #aa0088);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.2s;
        }
        .submit-btn:hover { transform: scale(1.05); }
        .stars { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .star { color: #555; cursor: pointer; font-size: 1.5rem; transition: color 0.2s; }
        .star:hover, .star.active { color: #ffaa00; }
        .featured-img {
            width: 100%;
            margin: 2rem 0;
            border: 2px solid #00eeff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 25px rgba(0, 238, 255, 0.4);
        }
        .link-list { list-style: none; padding-left: 0; }
        .link-list li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
        .link-list li:before { content: '➤'; position: absolute; left: 0; color: #00eeff; }
        footer {
            grid-area: footer;
            background: rgba(10, 10, 20, 0.9);
            padding: 2rem;
            border-radius: 10px 10px 0 0;
            border-top: 1px solid rgba(0, 238, 255, 0.3);
            text-align: center;
        }
        friend-link {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 238, 255, 0.1);
            border-radius: 5px;
        }
        .copyright { margin-top: 2rem; color: #888; font-size: 0.9rem; }
        .last-updated { color: #ffaa00; font-style: italic; margin: 1rem 0; }
        .highlight { background: rgba(255, 0, 170, 0.1); padding: 0.2rem 0.5rem; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .divider { height: 1px; background: linear-gradient(90deg, transparent, #00eeff, transparent); margin: 2rem 0; }
