        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fef9f0;
            background-image: radial-gradient(#ffd9b3 1px, transparent 1px);
            background-size: 30px 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #d35400; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #a04000; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            padding: 1.5rem 0;
            border-bottom: 3px solid #f5c78e;
            margin-bottom: 2rem;
            background-color: #fffaf0;
            border-radius: 0 0 12px 12px;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        .my-logo a {
            color: #e67e22;
            text-shadow: 3px 3px 0 #f1c40f;
            background: linear-gradient(45deg, #e67e22, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-shadow: 4px 4px 0 #f1c40f, 0 0 10px rgba(230, 126, 34, 0.5);
            text-decoration: none;
        }
        .main-nav {
            position: relative;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links a {
            padding: 0.7rem 1.2rem;
            background: #fde3c8;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-links a:hover {
            background: #f5c78e;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e67e22;
            cursor: pointer;
            position: absolute;
            top: -50px;
            right: 10px;
        }
        .breadcrumb {
            padding: 1rem;
            background: #fff5e6;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #999;
        }
        .content-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) {
            .content-container {
                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);
            border: 1px solid #ffeccc;
        }
        h1 {
            font-size: 2.8rem;
            color: #b05a1f;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 8px solid #f1c40f;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #d35400;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px dashed #f5c78e;
        }
        h3 {
            font-size: 1.6rem;
            color: #e67e22;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #f39c12;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            background: #fffbf0;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #f1c40f;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .info-box {
            background: #e8f4fc;
            border-left: 5px solid #3498db;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .strategy-box {
            background: #f0f9f0;
            border: 2px solid #2ecc71;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 10px;
        }
        .article-image {
            margin: 2.5rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
            border: 5px solid #fff;
            max-width: 800px;
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background: #fffaf0;
            color: #666;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border: 1px solid #ffeccc;
            align-self: start;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #b05a1f;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f5c78e;
        }
        .search-form input[type="text"] {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #f5c78e;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        .search-form button {
            background: #e67e22;
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #d35400;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input, .comment-widget input, .comment-widget textarea {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
        }
        .comment-widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #e67e22, #f39c12);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .star-rating span:hover,
        .star-rating span:hover ~ span {
            color: #ff9900;
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 2rem;
            border-radius: 15px 15px 0 0;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: #f1c40f;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #bdc3c7;
        }
        .footer-links a:hover {
            color: #f1c40f;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: #34495e;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1rem 0;
            text-align: center;
        }
        friend-link a {
            color: #f1c40f;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #4a6278;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #7f8c8d;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            vertical-align: middle;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .link-list a {
            background: #fff5e6;
            padding: 0.7rem 1.2rem;
            border-radius: 50px;
            border: 1px solid #f5c78e;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                flex-direction: column;
                display: none;
                width: 100%;
                background: white;
                border-radius: 10px;
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                margin-top: 1rem;
            }
            .nav-links.active { display: flex; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .content-container { gap: 1.5rem; }
            main article { padding: 1.5rem; }
        }
