        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9fb;
            padding-top: 80px; 
        }
        a {
            color: #FF6B35;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #E55A2B;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background: linear-gradient(135deg, #1a237e 0%, #4a148c 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #FFD700;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 3px 3px 0 #FF6B35;
        }
        .my-logo:hover {
            color: #FFF;
            text-shadow: 3px 3px 0 #4CAF50;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        .main-nav a:hover, .main-nav a:focus {
            background-color: rgba(255, 255, 255, 0.15);
            color: #FFD700;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 1rem 0;
            margin-top: 80px;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #777;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .widget h3 {
            color: #1a237e;
            border-bottom: 3px solid #FF6B35;
            padding-bottom: 0.75rem;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        h1 {
            color: #1a237e;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            color: #4a148c;
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px dashed #FFD700;
        }
        h3 {
            color: #333;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.75rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #4a148c;
            font-weight: 600;
            margin-bottom: 2rem;
            padding-left: 1.5rem;
            border-left: 5px solid #FF6B35;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #FFD700;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .content-img {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            max-width: 800px;
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.75rem;
            background: #f5f5f5;
            font-size: 0.95rem;
        }
        .related-links {
            background: #f0f7ff;
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .related-links h3 {
            color: #1a237e;
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .related-links li {
            padding: 0.75rem;
            background: white;
            border-radius: 6px;
            border-left: 4px solid #4CAF50;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #4a148c;
            outline: none;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button {
            background: linear-gradient(to right, #FF6B35, #E55A2B);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(to right, #E55A2B, #CC4A24);
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(229, 90, 43, 0.3);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            cursor: pointer;
        }
        .star {
            color: #ddd;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #FFD700;
        }
        .main-footer {
            background: #1a237e;
            color: #e8eaf6;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            color: #FFD700;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.08);
            padding: 1rem;
            margin-bottom: 0.75rem;
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        .update-time {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin: 1.5rem 0;
            font-weight: 600;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: #1a237e;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                z-index: 999;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                padding: 1.5rem;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .main-nav a {
                display: block;
                padding: 1rem 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            article {
                padding: 1.5rem;
            }
        }
