        * { 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.7;
            color: #333;
            background: linear-gradient(135deg, #0c0c2e 0%, #1a1a3e 100%);
            color: #e0e0ff;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #6ee7ff; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ffcc00; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .site-header {
            background: rgba(15, 15, 45, 0.95);
            padding: 1.5rem 0;
            border-bottom: 3px solid #ff3366;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff3366, #6ee7ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            background: rgba(255, 51, 102, 0.1);
        }
        .main-nav a:hover { background: rgba(255, 51, 102, 0.3); }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ee7ff;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #444;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #6ee7ff; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(25, 25, 60, 0.8);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
            text-align: center;
            border-bottom: 3px dashed #ff3366;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.3rem;
            margin: 2.5rem 0 1rem;
            color: #6ee7ff;
            padding-left: 10px;
            border-left: 5px solid #ff3366;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #ff9966;
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #cc99ff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(110, 231, 255, 0.15);
            border-left: 4px solid #6ee7ff;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        aside {
            background: rgba(20, 20, 50, 0.8);
            padding: 1.8rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 150px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #ffcc00;
            border-bottom: 2px solid #444;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: background 0.3s;
        }
        .link-list li:hover { background: rgba(255, 51, 102, 0.2); }
        .link-list a { display: block; font-weight: 500; }
        .search-box, .comment-form, .rating-form {
            background: rgba(30, 30, 70, 0.9);
            padding: 1.8rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            border: 1px solid #444;
        }
        .search-box h3, .comment-form h3, .rating-form h3 { text-align: center; }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 1px solid #555;
            border-radius: 8px;
            background: rgba(10, 10, 30, 0.8);
            color: #fff;
            font-size: 1rem;
        }
        button {
            padding: 1rem 1.8rem;
            background: linear-gradient(90deg, #ff3366, #ff9966);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 51, 102, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            color: #555;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active { color: #ffcc00; }
        footer {
            background: rgba(10, 10, 30, 0.95);
            margin-top: 4rem;
            padding: 3rem 1rem;
            border-top: 3px solid #6ee7ff;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            font-size: 1.2rem;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .main-nav { width: 100%; margin-top: 1rem; display: none; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0.8rem; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3rem; }
            article { padding: 1.5rem; }
        }
