        * { 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: #f9f9f9;
            max-width: 100%;
            overflow-x: hidden;
        }
        a { color: #1a73e8; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #d93025; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; }
        .highlight { background-color: #fffacd; padding: 2px 5px; border-radius: 3px; }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 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;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, #ffeb3b, #ff9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo a { background: transparent; }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li { margin-left: 2rem; }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover { color: #ffeb3b; }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffeb3b;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #666;
        }
        .search-module {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            margin: 2rem auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid #dfe1e5;
            border-radius: 50px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #1a73e8;
        }
        .search-btn {
            background: linear-gradient(to right, #1a73e8, #0d47a1);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0 30px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
        }
        .main-content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content-grid { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 5px solid #ffeb3b;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #311b92;
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
        }
        h3 { font-size: 1.6rem; color: #4527a0; margin: 2rem 0 1rem; }
        h4 { font-size: 1.3rem; color: #5e35b1; margin: 1.5rem 0 0.8rem; }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-intro {
            font-size: 1.3rem;
            color: #555;
            background-color: #f3e5f5;
            padding: 1.5rem;
            border-left: 5px solid #7b1fa2;
            margin-bottom: 2.5rem;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            border-radius: 12px;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .pull-quote {
            float: right;
            width: 40%;
            margin: 1rem 0 1rem 2rem;
            padding: 1.5rem;
            background: linear-gradient(to bottom right, #e3f2fd, #f3e5f5);
            border-left: 6px solid #ff9800;
            font-style: italic;
            font-size: 1.2rem;
            border-radius: 0 12px 12px 0;
        }
        @media (max-width: 768px) {
            .pull-quote { float: none; width: 100%; margin: 1.5rem 0; }
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #1a237e;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffeb3b;
            margin-bottom: 1.2rem;
        }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 0.8rem; }
        .link-list a {
            display: block;
            padding: 0.8rem;
            background: #f5f5f5;
            border-radius: 8px;
            border-left: 4px solid #1a73e8;
        }
        .link-list a:hover {
            background: #e8eaf6;
            transform: translateX(5px);
            transition: all 0.3s;
        }
        .rating-module, .comments-module {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star:hover,
        .star-rating .star.active { color: #ffc107; }
        .form-group { display: flex; flex-direction: column; }
        label { font-weight: 600; margin-bottom: 0.5rem; color: #555; }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #1a73e8;
        }
        textarea { min-height: 150px; resize: vertical; }
        .submit-btn {
            align-self: flex-start;
            background: linear-gradient(to right, #34a853, #0d652d);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(52, 168, 83, 0.4);
        }
        .site-footer {
            background: #1a237e;
            color: #e8eaf6;
            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-widget h4 {
            color: #ffeb3b;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3949ab;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #bbdefb;
        }
        friend-link a:hover { color: #ffeb3b; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3949ab;
            font-size: 0.95rem;
            color: #9fa8da;
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            .main-nav {
                width: 100%;
                order: 3;
                margin-top: 1.5rem;
                display: none;
            }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; }
            .main-nav li { margin: 0; border-bottom: 1px solid #3949ab; }
            .main-nav a { display: block; padding: 1rem; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            article, .sidebar { padding: 1.5rem; }
            .main-content-grid { gap: 2rem; }
        }
