        * {
            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: #f8f9fa;
            font-size: 1.05rem;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #2e3192 0%, #1b1464 100%);
            color: white;
            padding: 1.2rem 0;
            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;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            color: #FFD700;
            text-shadow: 2px 2px 0 #000;
        }
        .my-logo span {
            color: #FF4081;
        }
        .my-logo:hover {
            color: #FFECB3;
            transform: scale(1.02);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 3px solid transparent;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            border-bottom-color: #FFD700;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1b1464;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
            background-color: #eee;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1a73e8;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
        }
        h1 {
            font-size: 2.8rem;
            color: #2e3192;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            border-left: 6px solid #FF4081;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.1rem;
            color: #1b1464;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.7rem;
            color: #333;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #555;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
            margin-bottom: 2rem;
            padding: 1rem;
            background: #f0f7ff;
            border-left: 4px solid #1a73e8;
            border-radius: 0 8px 8px 0;
        }
        strong {
            color: #1b1464;
            font-weight: 700;
        }
        em {
            color: #d81b60;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(to right, #fff8e1, #ffecb3);
            border-left: 5px solid #ff9800;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .float-img {
            float: right;
            margin: 1rem 0 1.5rem 2rem;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .float-img {
                float: none;
                margin: 1.5rem auto;
                display: block;
            }
        }
        .interactive-section {
            background: #f1f8ff;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #1a73e8;
            outline: none;
            box-shadow: 0 0 0 3px rgba(26,115,232,0.2);
        }
        button {
            background: linear-gradient(to right, #2e3192, #1b1464);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #3a3daf, #2620a0);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .sidebar {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
            height: fit-content;
        }
        .sidebar h3 {
            font-size: 1.5rem;
            color: #2e3192;
            margin-top: 0;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.9rem;
            padding-bottom: 0.9rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links i {
            color: #FF4081;
        }
        .site-footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #FFD700;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            color: #aaa;
            border-bottom: 1px solid #333;
        }
        friend-link:hover {
            color: #FFD700;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #888;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #777;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
        }
