        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            padding-top: 80px; 
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background-color: #2d3436;
            color: #fff;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00cec9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #81ecec;
        }
        .nav {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            gap: 25px;
        }
        .nav-list a {
            color: #dfe6e9;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-list a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #636e72;
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #dfe6e9;
        }
        .breadcrumb a:hover {
            color: #00cec9;
        }
        .main {
            padding: 30px 0;
            background-color: #fff;
        }
        .article {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }
        .article h1 {
            font-size: 2.5rem;
            color: #2d3436;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article h2 {
            font-size: 1.8rem;
            color: #0984e3;
            margin: 30px 0 15px;
            border-left: 4px solid #00cec9;
            padding-left: 10px;
        }
        .article h3 {
            font-size: 1.4rem;
            color: #2d3436;
            margin: 25px 0 10px;
        }
        .article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: bold;
            color: #d63031;
        }
        .highlight {
            background-color: #ffeaa7;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #636e72;
            margin-top: 10px;
        }
        .search-box, .comments-section, .rating-section {
            background-color: #f1f2f6;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .search-box h3, .comments-section h3, .rating-section h3 {
            margin-top: 0;
            color: #2d3436;
        }
        .search-form, .comment-form, .rating-form {
            display: grid;
            gap: 15px;
            max-width: 600px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 5px;
            font-weight: 500;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 12px;
            border: 1px solid #b2bec3;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: #0984e3;
        }
        .btn {
            padding: 12px 25px;
            background-color: #00cec9;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn:hover {
            background-color: #00b894;
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.5rem;
            color: #fdcb6e;
            cursor: pointer;
        }
        .stars i:hover {
            color: #e17055;
        }
        .footer-links {
            background-color: #2d3436;
            padding: 40px 20px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background-color: #636e72;
            padding: 15px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #0984e3;
        }
        .web-link a {
            color: #dfe6e9;
            display: block;
            font-weight: 500;
        }
        .copyright {
            background-color: #1a1a1a;
            color: #b2bec3;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .header .container {
                flex-wrap: wrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #2d3436;
                padding: 20px;
                gap: 15px;
            }
            .nav-list.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article h1 {
                font-size: 2rem;
            }
            .article h2 {
                font-size: 1.5rem;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) {
            .nav-list {
                display: flex !important;
            }
        }
