* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', Arial, sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #4A6FA5;
            --secondary: #FF9F1C;
            --accent: #2EC4B6;
            --light: #F8F9FA;
            --dark: #212529;
            --gray: #6C757D;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fefefe;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #2C5282);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            border-radius: 0 0 12px 12px;
            margin-bottom: 2rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: white;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo:hover a {
            color: var(--accent);
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            padding: 5px;
            box-shadow: var(--shadow);
            flex-grow: 1;
            max-width: 500px;
            margin: 0 20px;
        }
        .search-box input {
            border: none;
            padding: 10px 20px;
            width: 100%;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--secondary);
            border: none;
            color: white;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 50px;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #e68900;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            flex-basis: 100%;
            margin-top: 1rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover, .nav-links a.active {
            background: rgba(255,255,255,0.15);
            color: var(--accent);
        }
        .breadcrumb {
            padding: 1rem 0;
            color: var(--gray);
            font-size: 0.9rem;
            border-bottom: 1px solid #eee;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--secondary);
            padding-left: 1rem;
        }
        h2 {
            color: var(--dark);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent);
        }
        h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(46, 196, 182, 0.15) 0%, rgba(46, 196, 182, 0) 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--accent);
            margin: 1.5rem 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .tip-card {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 4px solid var(--secondary);
            transition: var(--transition);
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .tip-card i {
            color: var(--secondary);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            align-self: start;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
        }
        .stars {
            font-size: 2rem;
            color: #FFD700;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea, .score-form select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-size: 1rem;
            resize: vertical;
        }
        .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
            text-align: center;
        }
        .btn:hover {
            background: #3a5983;
            transform: translateY(-2px);
        }
        .btn-accent {
            background: var(--secondary);
        }
        .btn-accent:hover {
            background: #e68900;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0 2rem;
            padding: 2rem;
            background: var(--light);
            border-radius: 12px;
        }
        .web-link {
            background: white;
            padding: 12px 18px;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow);
        }
        footer {
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid #eee;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: stretch;
            }
            .logo {
                justify-content: center;
                margin-bottom: 1rem;
            }
            .search-box {
                margin: 0 0 1rem 0;
                max-width: 100%;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 1.2rem;
                right: 1rem;
            }
            nav {
                display: none;
                margin-top: 1rem;
            }
            nav.active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 0.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            article, aside {
                padding: 1.5rem;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 700; color: var(--dark); }
        .tag {
            display: inline-block;
            background: #e9ecef;
            color: var(--gray);
            padding: 4px 10px;
            border-radius: 50px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
