        * {
            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-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: #ff4757;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }
        .my-logo:hover {
            color: #ff6b81;
            text-shadow: 0 0 10px rgba(255, 107, 129, 0.5);
        }
        .my-logo span {
            color: #70a1ff;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #dfe4ea;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem;
            border-radius: 5px;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #3742fa;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            background: linear-gradient(to right, #3498db, #2ecc71);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            color: white;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #1a1a2e;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #2d3436;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ff4757;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #2d3436;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid #3498db;
        }
        h3 {
            font-size: 1.6rem;
            color: #3742fa;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #5352ed;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        strong {
            color: #1a1a2e;
            background-color: #f1f2f6;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .content-link {
            color: #3742fa;
            text-decoration: none;
            border-bottom: 1px dashed #3742fa;
            transition: all 0.2s;
        }
        .content-link:hover {
            color: #ff4757;
            border-bottom: 1px solid #ff4757;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .user-interaction {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #dee2e6;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2d3436;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd32a;
            cursor: pointer;
        }
        .submit-btn {
            background: linear-gradient(to right, #2ecc71, #1abc9c);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(46, 204, 113, 0.3);
        }
        .related-links {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid #3742fa;
        }
        .related-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            list-style: none;
            margin-top: 1rem;
        }
        .related-links li {
            padding: 0.5rem 0;
        }
        .related-links a {
            color: #3742fa;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s;
        }
        .related-links a:hover {
            color: #ff4757;
        }
        .related-links i {
            font-size: 0.9rem;
        }
        footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            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: #70a1ff;
            border-left: none;
            padding-left: 0;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.8rem;
        }
        .footer-section a {
            color: #dfe4ea;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: #ff6b81;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            margin: 1rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #a4b0be;
        }
        .update-info {
            background-color: #ffeaa7;
            padding: 1rem;
            border-radius: 5px;
            margin: 1.5rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                order: 3;
                margin-top: 1.5rem;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, .user-interaction {
            animation: fadeIn 0.8s ease-out;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
