        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #0f0f0f;
            color: #eee;
            overflow-x: hidden;
        }
        a {
            color: #e53935;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff6f60;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, #1a1a1a, #2e2e2e);
            padding: 1rem 0;
            border-bottom: 3px solid #e53935;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a.my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #e53935;
            text-shadow: 2px 2px 4px #000;
            letter-spacing: 2px;
            text-decoration: none;
        }
        .logo a.my-logo:hover {
            color: #ff8a80;
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #ccc;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: #e53935;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a1a1a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 2px solid #444;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #ccc;
            padding: 0.8rem;
            border-bottom: 1px solid #333;
        }
        .nav-mobile a:hover {
            background-color: #333;
        }
        .breadcrumb {
            background-color: #222;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb span {
            color: #777;
        }
        main {
            background-color: #111;
            padding: 2rem 0;
        }
        .article-content {
            background-color: #1a1a1a;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 3.5rem;
            color: #e53935;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 3px 3px 6px #000;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        h2 {
            font-size: 2.5rem;
            color: #ff8a00;
            margin-top: 3rem;
            margin-bottom: 1rem;
            border-left: 5px solid #e53935;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #4fc3f7;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #a5d6a7;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2e2e2e;
            border-left: 4px solid #e53935;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-wrapper {
            text-align: center;
            margin: 2.5rem 0;
        }
        .image-wrapper img {
            border: 3px solid #444;
            border-radius: 10px;
            max-height: 500px;
            object-fit: cover;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .link-inline {
            font-weight: bold;
            color: #4fc3f7;
        }
        .functional-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .search-box, .comment-box, .rating-box {
            background-color: #222;
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #444;
        }
        .search-box h3, .comment-box h3, .rating-box h3 {
            color: #ff8a00;
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #555;
            border-radius: 6px;
            background-color: #333;
            color: #eee;
            font-size: 1rem;
        }
        button {
            padding: 0.8rem 1.5rem;
            background-color: #e53935;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: #ff5252;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .site-footer {
            background-color: #0a0a0a;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #333;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: inline-block;
            background-color: #222;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            border: 1px solid #444;
        }
        friend-link a {
            color: #4fc3f7;
        }
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }
        .text-center {
            text-align: center;
        }
        .last-updated {
            color: #aaa;
            font-style: italic;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #444;
        }
