        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0d 0%, #1a1a1e 100%);
            color: #e8e8e8;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #00b4ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff8a00;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(18, 18, 22, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #2a2a32;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #00b4ff, #ff8a00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #00b4ff;
            border-radius: 2px;
            transition: 0.3s;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #ccc;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active {
            color: #fff;
            border-bottom-color: #00b4ff;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background: #1a1a1e;
            border-bottom: 1px solid #2a2a32;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00b4ff;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: rgba(30, 30, 36, 0.7);
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #fff;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,180,255,0.3);
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a2a32;
            color: #00b4ff;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #ff8a00;
        }
        h4 {
            font-size: 1.2rem;
            margin: 25px 0 10px;
            color: #ccc;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(0,180,255,0.1), rgba(255,138,0,0.1));
            border-left: 5px solid #00b4ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.7);
        }
        .image-container figcaption {
            padding: 10px;
            background: #2a2a32;
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
        }
        aside {
            background: rgba(30, 30, 36, 0.7);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .search-box {
            margin-bottom: 30px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            background: #2a2a32;
            border: 1px solid #3a3a44;
            border-radius: 8px 0 0 8px;
            color: #fff;
        }
        .search-box button {
            background: #00b4ff;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #0088cc;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 30px;
            padding: 20px;
            background: #2a2a32;
            border-radius: 10px;
        }
        .rating-widget h3, .comment-widget h3 {
            font-size: 1.2rem;
            margin-top: 0;
        }
        .stars {
            display: flex;
            gap: 8px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ff8a00;
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 12px;
            background: #1a1a1e;
            border: 1px solid #3a3a44;
            border-radius: 6px;
            color: #fff;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #00b4ff, #ff8a00);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            transform: translateY(-2px);
        }
        footer {
            background: #121216;
            padding: 50px 0 20px;
            border-top: 2px solid #2a2a32;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #00b4ff;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 12px;
            background: #2a2a32;
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #3a3a44;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a2a32;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 300px;
                margin-top: 15px;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
            }
            nav a {
                display: block;
                padding: 12px 0;
                border-bottom: 1px solid #2a2a32;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
