        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
        ul, ol { list-style-position: inside; padding-left: 1.2em; }
        :root {
            --primary: #4361ee; 
            --secondary: #3a0ca3; 
            --accent: #f72585; 
            --light: #e9ecef;
            --dark: #212529;
            --gray: #6c757d;
            --success: #4cc9f0;
            --warning: #ffd166;
            --danger: #ef233c;
        }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-primary { color: var(--primary); }
        .text-accent { color: var(--accent); }
        .bold { font-weight: 800; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .spacer { height: 2.5rem; }
        .site-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            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 a {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
            background: linear-gradient(to right, #fff, var(--success));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo .sub { font-size: 0.8rem; color: var(--light); font-weight: 300; display: block; letter-spacing: 2px; }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover { color: var(--warning); }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover { color: var(--primary); }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .article-header { margin-bottom: 2.5rem; border-bottom: 2px solid var(--light); padding-bottom: 1.5rem; }
        .article-header h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        .meta {
            color: var(--gray);
            font-size: 0.95rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .meta i { margin-right: 5px; }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-section h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--primary);
        }
        .content-section h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 2rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light);
        }
        .search-box { position: relative; }
        .search-box input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid var(--light);
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-box input:focus { border-color: var(--primary); }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover { background: var(--secondary); }
        .rating-form .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active { color: var(--warning); }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--light);
            border-radius: 10px;
            margin-bottom: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
        }
        .rating-form button,
        .comment-form button {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(67, 97, 238, 0.4);
        }
        .comment-list { margin-top: 2rem; }
        .comment {
            background: var(--light);
            padding: 1.2rem;
            border-radius: 10px;
            margin-bottom: 1.2rem;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-author img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }
        .long-tail-links {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem auto;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .long-tail-links h2 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: var(--light);
            padding: 1.2rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: #e2e6ea;
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        .footer-col { flex: 1; min-width: 200px; }
        .footer-col h3 {
            color: var(--warning);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-col ul li { margin-bottom: 0.8rem; }
        .footer-col a:hover { color: var(--success); }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: background 0.3s, transform 0.3s;
        }
        .social-links a:hover {
            background: var(--primary);
            transform: scale(1.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--secondary);
                flex-direction: column;
                align-items: center;
                padding: 2rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
                width: 100%;
                text-align: center;
            }
            .article-header h1 { font-size: 2.2rem; }
            .content-section h2 { font-size: 1.8rem; }
            .content-section h3 { font-size: 1.3rem; }
            article { padding: 1.8rem; }
            .long-tail-links { padding: 1.8rem; }
        }
