        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.7;
            font-size: 1.05rem;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 1.5rem;
            background: linear-gradient(90deg, #2980b9, #8e44ad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #3498db;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #16a085;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #e74c3c;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        section, article {
            margin-bottom: 3rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #1a2980, #26d0ce);
            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 {
            color: white;
            text-decoration: none;
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #f1c40f;
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav.desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav.desktop-nav a:hover, nav.desktop-nav a.active {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a2980;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem auto;
        }
        .hero-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .hero-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .hero-image img:hover {
            transform: scale(1.02);
        }
        .content-block {
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid #3498db;
        }
        .highlight {
            background: linear-gradient(120deg, #a1c4fd80 0%, #c2e9fb80 100%);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            font-weight: 600;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 1rem;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .search-section, .comments-section, .rating-section {
            background: #f1f8ff;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1rem;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            flex: 1;
            min-width: 200px;
            padding: 12px 15px;
            border: 2px solid #3498db;
            border-radius: 5px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            width: 100%;
            resize: vertical;
        }
        button, .btn {
            background: linear-gradient(90deg, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #2980b9, #1c5a7a);
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(52, 152, 219, 0.3);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #f1c40f;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
            padding: 2rem 0;
            border-top: 2px dashed #bdc3c7;
            border-bottom: 2px dashed #bdc3c7;
            margin: 2rem 0;
        }
        .web-link {
            background: #ecf0f1;
            padding: 0.8rem 1.2rem;
            border-radius: 5px;
        }
        .web-link a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover {
            color: #3498db;
            text-decoration: underline;
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #3498db;
        }
        .copyright {
            font-size: 0.9rem;
            color: #95a5a6;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .header-container { padding: 0 15px; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .stats-grid { grid-template-columns: 1fr; }
            .footer-links { flex-direction: column; gap: 1rem; }
            .search-form, .comment-form, .rating-form { flex-direction: column; }
            .search-form input, .comment-form input, .comment-form textarea, .rating-form select { width: 100%; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .container { padding: 0 15px; }
            .content-block { padding: 1rem; }
        }
