        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #2c5282;
            transition: color 0.3s;
        }
        a:hover {
            color: #1a365d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1a365d;
            color: white;
            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;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffdd40;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #fff;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        nav ul li a:hover,
        nav ul li a.active {
            border-bottom-color: #ffdd40;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: #edf2f7;
            padding: 12px 20px;
            font-size: 0.95rem;
            border-bottom: 1px solid #cbd5e0;
        }
        .breadcrumb a {
            color: #4a5568;
        }
        .breadcrumb a:hover {
            color: #1a365d;
        }
        .breadcrumb span {
            color: #718096;
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a365d;
            margin-bottom: 25px;
            line-height: 1.3;
            border-bottom: 3px solid #ffdd40;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #2d3748;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        h3 {
            font-size: 1.6rem;
            color: #4a5568;
            margin: 28px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #718096;
            margin: 24px 0 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #2d3748;
            background: #f7fafc;
            padding: 20px;
            border-left: 5px solid #2c5282;
            border-radius: 5px;
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(120deg, #ffdd4080 0%, #ffdd4080 100%);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: 600;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        .article-img {
            width: 100%;
            border-radius: 10px;
            margin: 30px auto;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border: 5px solid #fff;
        }
        aside {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #1a365d;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        .search-box {
            display: flex;
            margin-bottom: 10px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #cbd5e0;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background: #2c5282;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #1a365d;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 5px;
            color: #4a5568;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px;
            border: 2px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2c5282;
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(to right, #2c5282, #1a365d);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            font-size: 2rem;
            color: #ffdd40;
            cursor: pointer;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        footer {
            background: #1a365d;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .footer-widget h3 {
            color: #ffdd40;
            font-size: 1.5rem;
            margin-bottom: 25px;
            border-bottom: 2px solid #2d3748;
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #cbd5e0;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
            transition: padding-left 0.3s;
        }
        friend-link {
            display: block;
            background: #2d3748;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 600;
        }
        friend-link a {
            color: #ffdd40;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #2d3748;
            font-size: 0.95rem;
            color: #a0aec0;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .emoji { font-size: 1.2em; }
        .last-updated {
            font-style: italic;
            color: #718096;
            margin-bottom: 30px;
            text-align: right;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: #1a365d;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
            }
            nav ul.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            nav ul li {
                margin: 15px 0;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 25px; }
        }
