        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #e0e0e0;
            background-color: #121212;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9800;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a1a1a;
            padding: 15px 0;
            border-bottom: 2px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ff9800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #4fc3f7;
        }
        .breadcrumb {
            margin: 10px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff9800;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links li a:hover {
            background-color: #333;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff9800;
        }
        .search-form {
            margin-left: 20px;
            display: flex;
        }
        .search-form input {
            padding: 8px 12px;
            border: 1px solid #444;
            border-radius: 5px 0 0 5px;
            background-color: #222;
            color: #fff;
        }
        .search-form button {
            padding: 8px 15px;
            background-color: #ff9800;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            color: #121212;
            font-weight: bold;
        }
        .search-form button:hover {
            background-color: #4fc3f7;
        }
        main {
            padding: 30px 0;
            background-color: #1e1e1e;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #1a237e, #311b92);
            border-radius: 10px;
        }
        h1 {
            font-size: 3rem;
            color: #ff9800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .article-meta {
            font-size: 0.95rem;
            color: #aaa;
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #252525;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin: 30px 0 15px;
            border-bottom: 2px solid #333;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff9800;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.4rem;
            color: #aaa;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #333;
            padding: 15px;
            border-left: 5px solid #ff9800;
            margin: 20px 0;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 20px 0;
            border: 3px solid #444;
        }
        .link-list {
            list-style: none;
            padding: 15px;
            background-color: #2a2a2a;
            border-radius: 8px;
            margin: 20px 0;
        }
        .link-list li {
            margin: 10px 0;
        }
        .sidebar {
            background-color: #252525;
            padding: 20px;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            color: #4fc3f7;
            margin-bottom: 15px;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 30px;
        }
        .comment-form input, .comment-form textarea, .rating-form select {
            padding: 10px;
            border: 1px solid #444;
            border-radius: 5px;
            background-color: #333;
            color: #fff;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button, .rating-form button {
            padding: 10px;
            background-color: #4fc3f7;
            border: none;
            border-radius: 5px;
            color: #121212;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background-color: #ff9800;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            font-size: 1.5rem;
            color: #444;
            cursor: pointer;
        }
        .star.active {
            color: #ff9800;
        }
        footer {
            background-color: #1a1a1a;
            padding: 40px 0 20px;
            border-top: 2px solid #333;
            text-align: center;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        friend-link {
            padding: 10px 20px;
            background-color: #2a2a2a;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        friend-link:hover {
            transform: translateY(-5px);
            background-color: #333;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
            border-top: 1px solid #444;
            padding-top: 20px;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a1a1a;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #333;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                margin: 15px 0 0;
                width: 100%;
                order: 3;
            }
            .search-form input {
                flex-grow: 1;
            }
            .article-content {
                padding: 20px;
            }
        }
        .nav-links li a, .friend-links a, .comment-form button, .rating-form button {
            transition: all 0.3s ease;
        }
        .nav-links li a:hover, .friend-links a:hover {
            transform: scale(1.05);
        }
        .article-content p:first-of-type::first-letter {
            font-size: 3rem;
            color: #ff9800;
            float: left;
            line-height: 1;
            margin-right: 10px;
            font-weight: bold;
        }
