        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a0f;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1.5rem 2rem;
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
        }
        .my-logo:hover {
            color: #ffffff;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(0, 168, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            gap: 1rem;
            background-color: #16213e;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1rem;
            border: 2px solid #00a8ff;
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #1a1a2e;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            background-color: #16213e;
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid #00a8ff;
        }
        h1 {
            font-size: 3.5rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.2;
            text-shadow: 2px 2px 5px #000;
        }
        h2 {
            font-size: 2.5rem;
            color: #00a8ff;
            margin: 3rem 0 1.5rem;
            border-left: 5px solid #ffcc00;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0e0e0;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #aaa;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 1.5rem;
            border-left: 4px solid #ffcc00;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .bold {
            font-weight: 900;
            color: #ffcc00;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .last-updated {
            text-align: center;
            font-style: italic;
            color: #888;
            margin: 2rem 0;
            padding: 1rem;
            background-color: #0a0a0f;
            border-radius: 10px;
        }
        .search-box, .comment-form, .rating-form {
            background-color: #0a0a0f;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 2px solid #00a8ff;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: #ffcc00;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            background-color: #1a1a2e;
            border: 1px solid #00a8ff;
            border-radius: 5px;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffcc00;
        }
        button {
            background: linear-gradient(90deg, #00a8ff, #0097e6);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffcc00;
        }
        .featured-image {
            width: 100%;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            border: 3px solid #ffcc00;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.05);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 1rem;
            padding: 1rem;
            background-color: #1a1a2e;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .related-links li:hover {
            background-color: #22223a;
        }
        .related-links a {
            display: block;
            font-size: 1.1rem;
        }
        .footer {
            background-color: #1a1a2e;
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 3px solid #ffcc00;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
        }
        friend-link a {
            padding: 0.8rem 1.5rem;
            background-color: #0a0a0f;
            border-radius: 5px;
            border: 1px solid #00a8ff;
            transition: all 0.3s ease;
        }
        friend-link a:hover {
            background-color: #00a8ff;
            color: #000;
        }
        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            width: 100%;
            padding-top: 2rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            .main-container {
                padding: 0 1rem;
            }
            .article-content {
                padding: 2rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
