        * { 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: #f9f7f2;
            background-image: linear-gradient(to bottom, #f9f7f2 0%, #e8e2d3 100%);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .site-header {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 1.5rem 0;
            border-bottom: 5px solid #d4af37;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 1rem;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.4rem;
            font-weight: bold;
            text-decoration: none;
            color: #f1c40f;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 0 0 10px #f1c40f;
            transform: scale(1.02);
        }
        .breadcrumb {
            padding: 0.8rem 1rem;
            background: #ede6d6;
            border-radius: 5px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #4a6491;
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #777; }
        .main-nav { flex-grow: 1; text-align: right; }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .nav-list a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav-list a:hover,
        .nav-list a:focus {
            background-color: rgba(241, 196, 15, 0.2);
            color: #f1c40f;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
            padding: 0 1rem;
        }
        .search-form {
            display: flex;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            background: white;
        }
        .search-input:focus { outline: none; }
        .search-btn {
            background: linear-gradient(to right, #27ae60, #2ecc71);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-btn:hover { background: linear-gradient(to right, #229954, #27ae60); }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        main article { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #d4af37;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #4a6491;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #d4af37;
        }
        h3 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .intro {
            font-size: 1.2rem;
            background: #f0f7ff;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #4a6491;
            margin-bottom: 2rem;
        }
        emoji { font-size: 1.2em; margin-right: 5px; }
        .highlight {
            background: linear-gradient(120deg, #f1c40f22 0%, #f1c40f22 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .strong { font-weight: 800; color: #2c3e50; }
        a.content-link {
            color: #2980b9;
            text-decoration: none;
            border-bottom: 1px dotted #2980b9;
            padding-bottom: 1px;
            transition: all 0.2s;
        }
        a.content-link:hover {
            color: #d35400;
            border-bottom: 2px solid #d35400;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-image:hover { transform: scale(1.008); }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 {
            color: #2c3e50;
            background: #f8f9fa;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            font-size: 1.3rem;
        }
        .widget-links { list-style: none; }
        .widget-links li { margin-bottom: 0.8rem; padding-left: 1.2rem; position: relative; }
        .widget-links li:before { content: '🎲'; position: absolute; left: 0; }
        .widget-links a { color: #555; text-decoration: none; transition: color 0.3s; }
        .widget-links a:hover { color: #d4af37; }
        .user-interaction {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #e9ecef;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .rating-form, .comment-form { background: white; padding: 1.5rem; border-radius: 10px; }
        .stars { font-size: 1.8rem; color: #ddd; margin: 0.5rem 0; }
        .stars .star { cursor: pointer; transition: color 0.2s; }
        .stars .star:hover,
        .stars .star.active { color: #f1c40f; }
        .form-group { margin-bottom: 1rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #444; }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4a6491;
            box-shadow: 0 0 0 3px rgba(74, 100, 145, 0.2);
        }
        .submit-btn {
            background: linear-gradient(to right, #4a6491, #2c3e50);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #2c3e50, #4a6491);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .update-info {
            text-align: right;
            font-style: italic;
            color: #7f8c8d;
            border-top: 1px solid #eee;
            padding-top: 1rem;
            margin-top: 3rem;
            font-size: 0.95rem;
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 1rem 2rem;
            margin-top: 4rem;
            border-radius: 15px 15px 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #f1c40f; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
        }
        friend-link a {
            color: #f1c40f;
            font-weight: bold;
            text-decoration: none;
        }
        friend-link a:hover { text-decoration: underline; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3rem; }
            .main-nav { width: 100%; display: none; margin-top: 1rem; }
            .main-nav.active { display: block; }
            .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
            .nav-list li { width: 100%; }
            .nav-list a { display: block; padding: 0.8rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .content-wrapper { gap: 2rem; }
            main article, aside { padding: 1.5rem; }
            aside { position: static; }
        }
