        * { 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: linear-gradient(135deg, #f5f7fa 0%, #f0f4ff 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #0066cc; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ff3366; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, #1a237e 0%, #311b92 50%, #4a148c 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Waltograph', cursive;
            font-size: 2.8rem;
            font-weight: bold;
            color: #ffde59;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo a:hover { color: #fff; }
        .search-form {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 2rem;
            position: relative;
        }
        .search-form input {
            width: 100%;
            padding: 12px 20px;
            border-radius: 30px;
            border: 2px solid #ffde59;
            font-size: 1rem;
            background: rgba(255,255,255,0.95);
            transition: all 0.3s;
        }
        .search-form input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.5);
            background: white;
        }
        .search-form button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: #ff3366;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #cc0044; }
        .main-nav { background: #311b92; }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li { position: relative; }
        .nav-links a {
            display: block;
            padding: 1rem 1.5rem;
            color: #ffde59;
            font-weight: 600;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        .nav-links a:hover {
            background: rgba(255, 222, 89, 0.15);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffde59;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background: #e8eaf6;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #ff3366; }
        main { flex: 1; padding: 2rem 0; }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-container { grid-template-columns: 1fr; }
        }
        .content-area {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .article-header { margin-bottom: 2.5rem; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta {
            color: #666;
            font-style: italic;
            border-bottom: 2px dashed #eee;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        .article-image {
            float: right;
            margin: 0 0 1.5rem 2rem;
            border-radius: 15px;
            overflow: hidden;
            max-width: 450px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            shape-outside: margin-box;
        }
        .article-image img { transition: transform 0.5s; }
        .article-image:hover img { transform: scale(1.03); }
        .content-area h2 {
            font-size: 2rem;
            color: #311b92;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffde59;
            clear: both;
        }
        .content-area h3 {
            font-size: 1.5rem;
            color: #4a148c;
            margin: 1.8rem 0 1rem;
        }
        .content-area p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: linear-gradient(120deg, #ffde59 0%, #ffde59 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: bold;
        }
        blockquote {
            border-left: 5px solid #ff3366;
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background: #f9f9ff;
            padding: 1.5rem 2rem;
            border-radius: 0 15px 15px 0;
        }
        .link-list {
            background: #e8eaf6;
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        .link-list ul { list-style: square inside; }
        .link-list li { margin-bottom: 0.5rem; }
        .sidebar {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            align-self: start;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 {
            font-size: 1.5rem;
            color: #1a237e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffde59;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .stars .star:hover,
        .stars .star.active { color: #ffde59; }
        .rating-form input,
        .rating-form textarea,
        .comment-form input,
        .comment-form textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-family: inherit;
            transition: border 0.3s;
        }
        .rating-form input:focus,
        .rating-form textarea:focus,
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #ff3366;
            outline: none;
        }
        .btn {
            background: linear-gradient(90deg, #ff3366, #ff6b6b);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 51, 102, 0.3);
        }
        .footer-links {
            background: #1a237e;
            padding: 3rem 0;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            color: #ffde59;
            border: 1px solid rgba(255,222,89,0.3);
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255,222,89,0.2);
            color: white;
            transform: scale(1.05);
        }
        .site-footer {
            background: #0d0d2b;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright { font-size: 0.9rem; margin-top: 1rem; }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .search-form { order: 3; max-width: 100%; margin: 1rem 0 0; }
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: #311b92;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active { display: flex; }
            .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.1); }
            .nav-links a { border-right: none; }
            .article-image {
                float: none;
                margin: 0 auto 1.5rem;
                max-width: 100%;
            }
            .content-area { padding: 1.5rem; }
            .article-header h1 { font-size: 2.2rem; }
        }
