        * {
            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, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #a5d8ff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .highlight {
            background: linear-gradient(90deg, #ff6b6b30, #4ecdc430);
            border-left: 5px solid #ff6b6b;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: #4ecdc4;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #4ecdc4;
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 30, 0.98);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            border-top: 1px solid #333;
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #2a2a3a;
        }
        .breadcrumb {
            padding: 1rem 20px;
            background: rgba(30, 30, 46, 0.7);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            padding: 2rem;
            background: radial-gradient(circle at top right, rgba(78, 205, 196, 0.1), transparent 50%);
            border-radius: 12px;
            border: 1px solid #333;
        }
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, #fff, #4ecdc4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
        }
        .article-meta {
            color: #aaa;
            font-style: italic;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 2.2rem;
            color: #4ecdc4;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #333;
        }
        .article-body h3 {
            font-size: 1.8rem;
            color: #ffb142;
            margin: 2.5rem 0 1rem;
        }
        .article-body h4 {
            font-size: 1.4rem;
            color: #ff6b6b;
            margin: 2rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .article-body blockquote {
            font-style: italic;
            color: #aaa;
            border-left: 4px solid #ff6b6b;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .featured-img {
            float: right;
            margin: 0 0 1.5rem 2rem;
            max-width: 400px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            border: 2px solid #444;
        }
        @media (max-width: 768px) {
            .featured-img {
                float: none;
                margin: 1.5rem auto;
                max-width: 100%;
            }
        }
        .sidebar {
            background: rgba(25, 25, 40, 0.7);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            color: #4ecdc4;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-input, .form-textarea {
            padding: 0.8rem 1rem;
            border-radius: 6px;
            border: 1px solid #444;
            background: rgba(40, 40, 60, 0.8);
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #4ecdc4;
        }
        .btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #ff6b6b, #ff8e53);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: linear-gradient(90deg, #ff5252, #ff7a45);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 107, 107, 0.3);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffb142;
        }
        .site-footer {
            background: rgba(5, 5, 10, 0.98);
            border-top: 1px solid #333;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1rem;
            background: rgba(255,255,255,0.05);
            margin-bottom: 0.5rem;
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(78, 205, 196, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
