        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0c0c0c;
            color: #f0f0f0;
            line-height: 1.8;
            font-size: 18px;
        }
        a {
            color: #00ff9d;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, #1a1a1a 0%, #003311 100%);
            padding: 20px 0;
            border-bottom: 3px solid #00cc66;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            color: #00ff9d;
            text-shadow: 0 0 10px #00ff9d;
            letter-spacing: 2px;
        }
        .my-logo a {
            color: inherit;
        }
        .search-bar {
            display: flex;
            flex: 0 1 400px;
        }
        .search-bar input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #00cc66;
            border-radius: 30px 0 0 30px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .search-bar button {
            padding: 12px 25px;
            background: #00cc66;
            color: #000;
            border: none;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-bar button:hover {
            background: #00ff9d;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00ff9d;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00ff9d;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-menu li a {
            color: #f0f0f0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-menu li a:hover {
            background-color: #003311;
            color: #00ff9d;
        }
        .main-content {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #00ff9d;
            box-shadow: 0 5px 15px rgba(0, 255, 157, 0.1);
        }
        .article h1 {
            font-size: 3rem;
            color: #00ff9d;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
            line-height: 1.2;
        }
        .article h2 {
            font-size: 2.2rem;
            color: #00cc66;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #003311;
        }
        .article h3 {
            font-size: 1.8rem;
            color: #00ff9d;
            margin: 25px 0 10px;
        }
        .article h4 {
            font-size: 1.4rem;
            color: #66ffb3;
            margin: 20px 0 10px;
        }
        .article p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article em {
            color: #66ffb3;
            font-style: italic;
        }
        .highlight {
            background-color: #003311;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 4px solid #00ff9d;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #00cc66;
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
        }
        .caption {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 10px;
            font-style: italic;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            padding: 20px;
            background: #222;
            border-radius: 10px;
        }
        .link-list a {
            background: #003311;
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
        }
        .link-list a:hover {
            background: #00cc66;
            color: #000;
        }
        .sidebar {
            background: #1a1a1a;
            padding: 25px;
            border-radius: 15px;
            border-right: 5px solid #00cc66;
            height: fit-content;
        }
        .sidebar h3 {
            color: #00ff9d;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .rating-form,
        .comment-form {
            margin-bottom: 30px;
        }
        .rating-form input,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            background: #222;
            border: 1px solid #00cc66;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn-submit {
            width: 100%;
            padding: 15px;
            background: #00cc66;
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .btn-submit:hover {
            background: #00ff9d;
        }
        .stars {
            display: flex;
            justify-content: space-between;
            margin: 10px 0 20px;
        }
        .star {
            font-size: 2rem;
            color: #333;
            cursor: pointer;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .footer {
            background: #111;
            padding: 40px 0;
            margin-top: 50px;
            border-top: 3px solid #00cc66;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        friend-link {
            background: #003311;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        friend-link a {
            color: #00ff9d;
        }
        friend-link:hover {
            background: #00cc66;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-bar {
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a1a;
                position: absolute;
                top: 180px;
                left: 0;
                z-index: 1000;
                padding: 20px;
                border-top: 2px solid #00cc66;
            }
            .nav-menu.active {
                display: flex;
            }
            .article h1 {
                font-size: 2.5rem;
            }
            .article h2 {
                font-size: 2rem;
            }
            .article h3 {
                font-size: 1.6rem;
            }
            .link-list {
                justify-content: center;
            }
        }
        .btn-submit,
        .search-bar button,
        .link-list a,
        friend-link {
            transition: all 0.3s ease;
        }
        .btn-submit:hover,
        .search-bar button:hover {
            transform: scale(1.05);
        }
        .article p:first-of-type::first-letter {
            font-size: 3.5rem;
            color: #00ff9d;
            float: left;
            line-height: 1;
            margin-right: 10px;
            font-weight: bold;
        }
