        * {
            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: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-top: 1.5rem;
            border-bottom: 4px solid #3498db;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #2980b9;
            padding-left: 1rem;
            border-left: 5px solid #e74c3c;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #16a085;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #2c3e50, #4a6491);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-decoration: none;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #f39c12;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background: #3498db;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #34495e;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid #4a6491;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background: #3498db;
        }
        .breadcrumb {
            background: #ecf0f1;
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin: 2rem 0;
        }
        .search-box {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            border: 2px dashed #bdc3c7;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #3498db;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #2980b9;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .highlight {
            background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 6px solid #3498db;
        }
        .tip-box {
            background: #fff8e1;
            border: 2px solid #ffd54f;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .tip-box i {
            color: #f39c12;
            margin-right: 10px;
        }
        .rating-section, .comments-section {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #f1c40f;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        textarea, input[type="text"], input[type="email"] {
            padding: 1rem;
            border: 2px solid #bdc3c7;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: #2ecc71;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: #27ae60;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: #e3f2fd;
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid #bbdefb;
        }
        .web-link a {
            color: #1565c0;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a6491;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            main {
                padding: 1.5rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 8px;
                width: 100%;
            }
            .search-btn {
                margin-top: 10px;
                padding: 1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, .search-box, .rating-section, .comments-section {
            animation: fadeIn 0.8s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 900;
            color: #2c3e50;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
