        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #d32f2f;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            color: white;
            padding: 1rem 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-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffeb3b, #ff9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: #e3f2fd;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffeb3b;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #311b92;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e3f2fd;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #4527a0;
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8eaf6;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #5c6bc0;
        }
        .breadcrumb span {
            color: #777;
        }
        .hero-search {
            background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(49, 27, 146, 0.9)), url('https://images.unsplash.com/photo-1599159340653-4b7e3366c6b8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 3rem 1rem;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 2rem;
        }
        .hero-search h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-box input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
        }
        .search-box button {
            background-color: #ff5722;
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #e64a19;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        article h1, article h2, article h3, article h4 {
            color: #1a237e;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        article h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid #ffeb3b;
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: #311b92;
        }
        article h3 {
            font-size: 1.6rem;
            color: #4527a0;
        }
        article h4 {
            font-size: 1.3rem;
            color: #5c6bc0;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article .highlight {
            background-color: #fff9c4;
            padding: 1.5rem;
            border-left: 5px solid #ffeb3b;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        article b, article strong {
            color: #d32f2f;
        }
        article img.featured-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        aside h3 {
            color: #1a237e;
            border-bottom: 2px solid #ffeb3b;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .quick-links li::before {
            content: '▶';
            color: #ff5722;
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        .user-interaction {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 2rem;
        }
        .user-interaction h2 {
            color: #1a237e;
            margin-bottom: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffeb3b;
        }
        .submit-btn {
            background-color: #1a237e;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #311b92;
        }
        footer {
            background-color: #1a237e;
            color: #e3f2fd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffeb3b;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: #bbdefb;
        }
        friend-link a:hover {
            color: #ffeb3b;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3949ab;
            font-size: 0.9rem;
            color: #90caf9;
        }
        @media (max-width: 768px) {
            .hero-search h1 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 1.8rem;
            }
            article h2 {
                font-size: 1.5rem;
            }
            .main-content {
                gap: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, .user-interaction {
            animation: fadeIn 0.6s ease-out;
        }
