        * {
            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%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            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: #74c0fc;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #ffffff;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            border-radius: 2px;
        }
        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: 15px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #ccc;
            font-weight: 500;
            padding: 8px 5px;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #4dabf7;
            transition: width 0.3s ease;
        }
        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(30, 30, 40, 0.7);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:last-of-type {
            color: #4dabf7;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #666;
        }
        .search-bar {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #444;
            border-radius: 30px;
            padding: 12px 25px;
            width: 100%;
            max-width: 500px;
            color: #fff;
            font-size: 1rem;
            margin: 30px auto 40px;
            display: block;
            transition: all 0.3s;
        }
        .search-bar:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 15px rgba(77, 171, 247, 0.3);
        }
        .search-form {
            text-align: center;
            position: relative;
        }
        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: #4dabf7;
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #339af0;
        }
        main {
            flex: 1;
            padding: 20px 0;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background: rgba(25, 25, 35, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            line-height: 1.2;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .meta {
            color: #aaa;
            font-size: 0.95rem;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #444;
        }
        .meta i {
            margin-right: 8px;
            color: #4dabf7;
        }
        .intro {
            font-size: 1.3rem;
            color: #d0d0d0;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(77, 171, 247, 0.05);
            border-left: 4px solid #4dabf7;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 107, 107, 0.1), rgba(77, 171, 247, 0.1));
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #ff6b6b;
        }
        h2 {
            font-size: 2.2rem;
            margin: 50px 0 25px;
            color: #ffffff;
            padding-top: 10px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 35px 0 15px;
            color: #d0d0ff;
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: #b0b0ff;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            hyphens: auto;
        }
        .related-links {
            background: rgba(40, 40, 60, 0.5);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .related-links li {
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: transform 0.3s, background 0.3s;
        }
        .related-links li:hover {
            background: rgba(77, 171, 247, 0.15);
            transform: translateX(5px);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 10px;
            margin-bottom: 30px;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 30px 0;
            border: 2px solid #444;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(25, 25, 35, 0.7);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffffff;
            padding-bottom: 10px;
            border-bottom: 2px solid #4dabf7;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd43b;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            transition: color 0.2s, transform 0.2s;
            margin: 0 3px;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-btn {
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .rating-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(77, 171, 247, 0.4);
        }
        .update-info {
            background: rgba(40, 167, 69, 0.1);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #28a745;
        }
        .comment-section {
            margin-top: 60px;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #444;
            border-radius: 10px;
            padding: 15px;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 20px;
            resize: vertical;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 48%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .comment-form input[type="text"],
            .comment-form input[type="email"] {
                width: 100%;
            }
        }
        .submit-btn {
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #339af0, #228be6);
            box-shadow: 0 5px 15px rgba(51, 154, 240, 0.4);
        }
        footer {
            background: #0a0a0f;
            border-top: 1px solid #333;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #333;
        }
        friend-link:last-child {
            border-bottom: none;
        }
        friend-link a {
            color: #aaa;
        }
        friend-link a:hover {
            color: #4dabf7;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 15, 0.98);
                padding: 20px;
                border-top: 1px solid #333;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .content {
                padding: 25px;
            }
            .header-container {
                padding: 15px;
            }
        }
