        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #f0b40c;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e, #0a0e17);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f0b40c, #ff6b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        nav ul li a:hover {
            background-color: rgba(240, 180, 12, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f0b40c;
        }
        .breadcrumb {
            background-color: #1a1f2e;
            padding: 12px 20px;
            border-radius: 6px;
            margin-top: 15px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .search-box {
            margin: 30px auto;
            max-width: 700px;
            background: #1a1f2e;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.4);
        }
        .search-box h2 {
            text-align: center;
            margin-bottom: 20px;
            color: #f0b40c;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #333;
            border-radius: 8px;
            background-color: #0f1419;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #f0b40c, #ff6b00);
            border: none;
            border-radius: 8px;
            color: #000;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        main {
            padding: 40px 0;
        }
        article {
            background-color: #1a1f2e;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: #f0b40c;
            margin-bottom: 25px;
            line-height: 1.3;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #ff8c00;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffa726;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(240, 180, 12, 0.1);
            border-left: 5px solid #f0b40c;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            box-shadow: 0 8px 20px rgba(0,0,0,0.7);
            border: 3px solid #333;
        }
        .interaction {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 50px;
        }
        .comment-section, .rating-section {
            background-color: #1a1f2e;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.4);
        }
        .comment-section h3, .rating-section h3 {
            color: #f0b40c;
            margin-bottom: 20px;
        }
        .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 8px;
            background-color: #0f1419;
            color: #fff;
            border: 2px solid #333;
            font-size: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 2rem;
            color: #555;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffd700;
        }
        .submit-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, #00c853, #64dd17);
            color: #000;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.02);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background-color: #1a1f2e;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #333;
            transition: all 0.3s;
        }
        .web-link:hover {
            border-color: #f0b40c;
            transform: translateY(-5px);
        }
        footer {
            background: linear-gradient(135deg, #0a0e17, #1a1f2e);
            padding: 40px 0 20px;
            margin-top: 60px;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
            .interaction {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1f2e;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
                border-radius: 0 0 12px 12px;
            }
            nav ul.show {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
        }
