:root {
            --primary: #2a4365;
            --secondary: #c53030;
            --accent: #ecc94b;
            --dark: #1a202c;
            --light: #f7fafc;
            --gray: #a0aec0;
            --transition: all 0.3s ease;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { color: var(--secondary); }
        .emoji { margin-right: 5px; }
        header {
            background-color: var(--primary);
            color: var(--light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
        }
        .logo span { color: var(--light); }
        .desktop-nav ul {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
            font-weight: 600;
        }
        .desktop-nav a:hover {
            background-color: var(--secondary);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 250px;
            background-color: var(--dark);
            padding: 2rem;
            transition: var(--transition);
            z-index: 9999;
            box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        }
        .mobile-nav.active { right: 0; }
        .mobile-nav ul { margin-top: 2rem; }
        .mobile-nav li { margin: 1.5rem 0; }
        .mobile-nav a {
            font-size: 1.2rem;
            padding: 0.5rem;
            display: block;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .mobile-nav a:hover { background-color: var(--primary); }
        .close-nav {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        main { padding: 2rem 0; }
        .article-header {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: var(--primary);
        }
        .meta {
            display: flex;
            gap: 1rem;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .article-content {
            background-color: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .article-content p:last-child { margin-bottom: 0; }
        .important {
            background-color: #fffaf0;
            border-left: 4px solid var(--accent);
            padding: 1rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .progression-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
        }
        .progression-table th,
        .progression-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .progression-table th {
            background-color: var(--primary);
            color: white;
        }
        .progression-table tr:nth-child(even) { background-color: #f9f9f9; }
        .progression-table tr:hover { background-color: #f1f1f1; }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid var(--gray);
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover { background-color: #9b2c2c; }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: var(--gray);
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active { color: var(--accent); }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid var(--gray);
            border-radius: var(--radius);
            font-family: inherit;
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .comment-form button:hover { background-color: #1a365d; }
        .web-links {
            background-color: var(--dark);
            color: var(--light);
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .web-link a { color: var(--accent); }
        footer {
            background-color: var(--primary);
            color: var(--light);
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content p { margin-bottom: 0.5rem; }
        .footer-content a { color: var(--accent); }
        @media (max-width: 768px) {
            .header-content { padding: 0 1rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .article-header h1 { font-size: 2rem; }
            .content-grid { gap: 1.5rem; }
            .article-content { padding: 1.5rem; }
            .meta { flex-direction: column; gap: 0.5rem; }
        }
