        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            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;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #4dabf7;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffa94d;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #69db7c;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #b2f2bb;
            font-weight: 500;
        }
        .highlight {
            background-color: rgba(255, 107, 107, 0.15);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: #ffc9c9;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #ff6b6b;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #e0e0e0;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ff6b6b;
            transition: width 0.3s ease;
        }
        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4dabf7;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #adb5bd;
        }
        .breadcrumb a {
            color: #adb5bd;
        }
        .breadcrumb a:hover {
            color: #74c0fc;
        }
        .breadcrumb span {
            color: #74c0fc;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(30, 40, 55, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #2d3748;
        }
        .sidebar {
            background: rgba(30, 40, 55, 0.7);
            border-radius: 15px;
            padding: 1.5rem;
            height: fit-content;
            border: 1px solid #2d3748;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            color: #ffa94d;
            border-bottom: 2px solid #ff6b6b;
            padding-bottom: 0.5rem;
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(20, 25, 35, 0.9);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .search-box input, .comment-form textarea, .comment-form input, .rating-form select {
            width: 100%;
            padding: 0.8rem 1rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #4dabf7;
            background-color: #1a2332;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-box button, .comment-form button, .rating-form button {
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s ease;
        }
        .search-box button:hover, .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(90deg, #ff8787, #74c0fc);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: #ffd43b;
        }
        .featured-img {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-img img {
            max-height: 500px;
            object-fit: cover;
            width: 100%;
            border: 3px solid #4dabf7;
        }
        .img-caption {
            font-style: italic;
            color: #adb5bd;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .internal-links {
            background: rgba(20, 25, 35, 0.9);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .internal-links li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #4dabf7;
        }
        .last-updated {
            text-align: center;
            font-style: italic;
            color: #adb5bd;
            padding: 1rem;
            border-top: 1px solid #2d3748;
            margin-top: 3rem;
        }
        footer {
            background: #1a2332;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #ff6b6b;
            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;
            background: rgba(30, 40, 55, 0.9);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #69db7c;
        }
        .copyright {
            text-align: center;
            color: #adb5bd;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            nav ul {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                display: none;
                width: 100%;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                align-self: flex-end;
                margin-top: -50px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
