* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
        }
        a {
            text-decoration: none;
            color: #4361ee;
            transition: color 0.3s;
        }
        a:hover {
            color: #3a0ca3;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #7209b7, #4361ee);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            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: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffd166;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #3a0ca3;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb span {
            color: #495057;
        }
        .search-section {
            background-color: #f1faee;
            padding: 2rem 0;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box h2 {
            margin-bottom: 1rem;
            color: #1d3557;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #a8dadc;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: #e63946;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #d00000;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.5rem;
            color: #1d3557;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #7209b7;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffd166;
        }
        h3 {
            font-size: 1.5rem;
            color: #4361ee;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #ffd166;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .tip-card {
            background: #f8f9fa;
            border-left: 5px solid #4361ee;
            padding: 1.5rem;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        .tip-card h4 {
            color: #1d3557;
            margin-bottom: 0.8rem;
        }
        .interaction-section {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            margin-top: 3rem;
        }
        .rating-box, .comment-box {
            margin-bottom: 2rem;
        }
        .rating-box h3, .comment-box h3 {
            margin-bottom: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form button, .comment-form button {
            align-self: flex-start;
            background-color: #7209b7;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #a8dadc;
            border-radius: 10px;
            font-size: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .web-links {
            background-color: #1d3557;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .web-link a {
            color: #a8dadc;
            display: block;
        }
        footer {
            background-color: #0d1b2a;
            color: #e0e1dd;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                width: 100%;
            }
        }
