        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a16;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b8b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0c0c2e 0%, #1a1a40 100%);
            border-bottom: 2px solid #ff4757;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255, 71, 87, 0.2);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b8b, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: 2px solid #4dabf7;
            color: #4dabf7;
            font-size: 1.5rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            color: #c0c0ff;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        nav a:hover {
            background-color: rgba(77, 171, 247, 0.15);
            color: #fff;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        .breadcrumb span {
            color: #ff6b8b;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: rgba(16, 16, 40, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 20, 0.5);
            border: 1px solid #2a2a5a;
        }
        h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #ff4757;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #2a2a5a;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffb86c;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #6cffb8;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            color: #b0b0ff;
            background: rgba(255, 71, 87, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid #ff6b8b;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 107, 139, 0.1), rgba(77, 171, 247, 0.1));
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px solid #4dabf7;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #4dabf7;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            transition: transform 0.4s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        aside {
            background: rgba(16, 16, 40, 0.8);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #2a2a5a;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #ff6b8b;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .search-form input {
            width: 100%;
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid #4dabf7;
            background: #0a0a16;
            color: #fff;
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(90deg, #ff6b8b, #ff4757);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: translateY(-3px);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
            transition: color 0.2s;
        }
        .stars span:hover {
            color: #ff6b8b;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 6px;
            border: 1px solid #4dabf7;
            background: #0a0a16;
            color: #fff;
            min-height: 120px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #4dabf7, #1c7ed6);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #1c7ed6, #1971c2);
        }
        footer {
            background: #050510;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid #ff4757;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-links section {
            min-width: 180px;
        }
        .footer-links h4 {
            color: #4dabf7;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 107, 139, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border-left: 4px solid #ff6b8b;
        }
        friend-link a {
            font-weight: bold;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2a5a;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .mobile-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background: #1a1a40;
                border-radius: 8px;
                padding: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            .footer-content {
                flex-direction: column;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        .last-updated {
            font-size: 0.9rem;
            color: #aaa;
            text-align: right;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        .bold {
            font-weight: bold;
            color: #ffb86c;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
