        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e74c3c;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .site-header {
            background: #1a1a2e;
            color: #fff;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #f39c12;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #e67e22;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: #34495e;
            color: #f39c12;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f39c12;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2c3e50;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #ecf0f1;
            padding: 0.8rem;
            border-bottom: 1px solid #34495e;
        }
        .nav-mobile a:hover {
            background: #34495e;
            color: #f39c12;
        }
        .breadcrumb {
            background: #34495e;
            padding: 0.8rem 2rem;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #f39c12;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            flex: 1;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: #fff;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .sidebar {
            background: #ecf0f1;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            border-bottom: 5px solid #f39c12;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #34495e;
            margin: 2rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 4px solid #3498db;
        }
        h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #7f8c8d;
            margin: 1.2rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fffacd;
            padding: 1rem;
            border-left: 4px solid #f39c12;
            margin: 1.5rem 0;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }
        .link-inline {
            color: #2980b9;
            font-weight: 600;
            border-bottom: 2px dotted #2980b9;
        }
        .link-inline:hover {
            color: #e74c3c;
            border-bottom: 2px solid #e74c3c;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            max-width: 80%;
            border: 5px solid #bdc3c7;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #7f8c8d;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 2px dashed #bdc3c7;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3498db;
        }
        .search-form input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #bdc3c7;
            border-radius: 5px;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.8rem;
            background: #2c3e50;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #e74c3c;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating-stars .star {
            font-size: 1.8rem;
            color: #bdc3c7;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f39c12;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #bdc3c7;
            border-radius: 5px;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            padding: 0.8rem 1.5rem;
            background: #27ae60;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .comment-form button:hover {
            background: #229954;
        }
        .site-footer {
            background: #1a1a2e;
            color: #ecf0f1;
            padding: 2rem;
            margin-top: auto;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: #f39c12;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            padding: 0.5rem;
            background: #2c3e50;
            border-radius: 5px;
            text-align: center;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: #34495e;
        }
        friend-link a {
            color: #ecf0f1;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-container {
                padding: 0 1rem;
            }
            .content-area {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .breadcrumb {
                padding: 0.8rem 1rem;
            }
        }
