        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background-color: #121212;
            overflow-x: hidden;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        ul, ol {
            padding-left: 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a1a1a;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 8px rgba(255, 204, 0, 0.7);
        }
        .my-logo:hover {
            color: #ff9900;
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #333;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: #222;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #888;
        }
        .search-box {
            margin: 30px auto;
            max-width: 600px;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #444;
            border-radius: 50px;
            background-color: #222;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #ffcc00;
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, #ffcc00, #ff9900);
            color: #121212;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 204, 0, 0.4);
        }
        main {
            padding: 20px 0;
        }
        article {
            background-color: #1e1e1e;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 3px 3px 10px rgba(255, 204, 0, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #4da6ff;
            margin-top: 40px;
            margin-bottom: 15px;
            border-left: 5px solid #4da6ff;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff9966;
            margin-top: 30px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.4rem;
            color: #99ff99;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: #333;
            padding: 20px;
            border-left: 5px solid #ffcc00;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 15px;
            border: 5px solid #444;
            transition: transform 0.5s, box-shadow 0.5s;
        }
        .featured-image img:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(255, 204, 0, 0.6);
        }
        .user-interaction {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .user-interaction {
                grid-template-columns: 1fr;
            }
        }
        .comment-form, .score-form {
            background-color: #222;
            padding: 25px;
            border-radius: 15px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #ffcc00;
            font-weight: bold;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 2px solid #444;
            border-radius: 10px;
            background-color: #333;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ffcc00;
        }
        .submit-btn {
            background: linear-gradient(135deg, #4da6ff, #0066cc);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(77, 166, 255, 0.5);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2rem;
            color: #888;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        footer {
            background-color: #1a1a1a;
            padding: 40px 0;
            margin-top: 50px;
            border-top: 5px solid #ffcc00;
        }
        friend-link {
            display: block;
            margin-bottom: 30px;
        }
        friend-link h3 {
            color: #ffcc00;
            text-align: center;
            margin-bottom: 20px;
        }
        .friend-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            list-style: none;
            text-align: center;
        }
        .friend-links a {
            display: block;
            padding: 12px;
            background-color: #222;
            border-radius: 10px;
            transition: background-color 0.3s, transform 0.3s;
        }
        .friend-links a:hover {
            background-color: #333;
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #1a1a1a;
                width: 80%;
                height: calc(100vh - 80px);
                padding: 30px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            }
            .nav-links.active {
                right: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 20px;
            }
        }
