        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #2c3e50;
            --primary-light: #3498db;
            --accent: #e74c3c;
            --accent-light: #ff7979;
            --board-dark: #8b4513;
            --board-light: #f5deb3;
            --text-dark: #2c3e50;
            --text-light: #ecf0f1;
            --bg-light: #f8f9fa;
            --bg-section: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 2rem;
            margin: 1.2rem 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-dark);
            color: var(--text-light);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--text-light);
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--accent-light);
        }
        .logo i {
            margin-right: 10px;
            color: var(--board-light);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: var(--accent-light);
            border-bottom-color: var(--accent-light);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .breadcrumb {
            background-color: #34495e;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #bdc3c7;
        }
        .breadcrumb a:hover {
            color: var(--accent-light);
        }
        main {
            padding: 40px 0;
            background-color: var(--bg-section);
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 3px dashed var(--primary-light);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            line-height: 1.2;
        }
        .article-header .meta {
            color: #7f8c8d;
            font-style: italic;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article h2, article h3 {
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            color: var(--primary-dark);
        }
        article h2 {
            font-size: 2rem;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.6rem;
            color: #2980b9;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
            border-left: 5px solid var(--board-dark);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: var(--shadow);
        }
        .highlight-box p {
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px auto;
            max-width: 800px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background-color: #f1f2f6;
            color: #636e72;
        }
        aside {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary-light);
        }
        .search-box input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-box input:focus {
            outline: none;
            border-color: var(--primary-light);
        }
        .search-box button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background-color: var(--primary-light);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #2980b9;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #c0392b;
        }
        .longtail-links {
            background-color: #2c3e50;
            padding: 40px 0;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px;
            padding: 10px 20px;
            background-color: #34495e;
            color: #ecf0f1;
            border-radius: 30px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        .links-container {
            text-align: center;
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            text-align: center;
            padding: 30px 0;
            font-size: 0.95rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        .footer-links {
            display: flex;
            gap: 25px;
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--accent-light);
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: var(--primary-dark);
                width: 70%;
                height: calc(100vh - 80px);
                padding: 40px;
                transition: 0.5s;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 10px 0;
            }
            .web-link {
                margin: 8px 10px;
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }
