        * { 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: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #1a365d; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; }
        h1 { font-size: 2.8rem; margin-top: 1.5rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid #e31837; padding-left: 1rem; margin-top: 3rem; }
        h3 { font-size: 1.8rem; color: #2d3748; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; font-size: 1.125rem; }
        .lead { font-size: 1.4rem; color: #4a5568; font-weight: 300; }
        .highlight { background-color: #fff3cd; padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: 600; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .term { font-style: italic; color: #2b6cb0; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main.container { padding-top: 2rem; }
        header { background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%); 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 { color: white; text-decoration: none; font-size: 2rem; font-weight: 800; letter-spacing: 1px; display: flex; align-items: center; }
        .logo .fa-dice { color: #e31837; margin-right: 10px; font-size: 2.5rem; }
        .desktop-nav ul { display: flex; list-style: none; }
        .desktop-nav li { margin-left: 2rem; }
        .desktop-nav a {
            color: #cbd5e0;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            transition: color 0.3s;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover, .desktop-nav a.active { color: white; border-bottom-color: #e31837; }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: white; cursor: pointer; }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #1a365d;
            flex-direction: column;
            padding: 1rem 0;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav ul { list-style: none; width: 100%; }
        .mobile-nav li { width: 100%; text-align: center; }
        .mobile-nav a {
            display: block;
            padding: 1rem 20px;
            color: #cbd5e0;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid #2d3748;
        }
        .mobile-nav a:hover { background-color: #2d3748; color: white; }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #edf2f7;
            font-size: 0.95rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: #718096;
        }
        .breadcrumb a { color: #4a5568; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; color: #1a365d; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }
        .article-meta { color: #718096; margin-bottom: 2rem; font-size: 0.95rem; display: flex; align-items: center; }
        .article-meta i { margin-right: 0.5rem; }
        .featured-img {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .img-caption { text-align: center; font-style: italic; color: #718096; margin-top: 0.5rem; font-size: 0.95rem; }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget { margin-bottom: 2rem; }
        .sidebar-widget h3 { font-size: 1.4rem; margin-bottom: 1rem; border-left: 4px solid #e31837; padding-left: 0.75rem; }
        .search-box { display: flex; margin-bottom: 2rem; }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background: #e31837;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #b3132c; }
        .interactive-module {
            background: #f7fafc;
            border-left: 4px solid #4299e1;
            padding: 1.5rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .module-title { display: flex; align-items: center; margin-bottom: 1rem; }
        .module-title i { color: #4299e1; margin-right: 10px; font-size: 1.5rem; }
        .comment-form, .rating-form { margin-top: 2rem; }
        .form-group { margin-bottom: 1.5rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #cbd5e0;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
        }
        button[type="submit"] {
            background: #1a365d;
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        button[type="submit"]:hover {
            background: #2d3748;
            transform: translateY(-2px);
        }
        .star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #cbd5e0;
            cursor: pointer;
            padding: 0 0.1rem;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #f6e05e; }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #edf2f7;
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #2b6cb0;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { text-decoration: underline; }
        footer {
            background: #1a365d;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
        .footer-logo a { color: white; text-decoration: none; }
        .footer-links h4 { color: white; margin-bottom: 1.2rem; font-size: 1.2rem; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: white; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-content { padding: 0 20px; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            article { padding: 1.5rem; }
            .content-grid { gap: 2rem; }
            .internal-links { grid-template-columns: 1fr; padding: 1.5rem; }
        }
