        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #007bff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0056b3;
        }
        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, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 15px 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-size: 2rem;
            font-weight: bold;
            color: #00adb5;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #0097a7;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        #menu-toggle {
            display: none;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 10px 20px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #495057;
        }
        .breadcrumb span {
            color: #495057;
            margin: 0 5px;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            padding: 30px 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #16213e;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #00adb5;
        }
        h3 {
            font-size: 1.6rem;
            color: #0f3460;
            margin: 20px 0 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #393e46;
            margin: 15px 0 8px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: #f8f9fa;
            border-left: 4px solid #00adb5;
            padding: 15px;
            margin: 20px 0;
            font-style: italic;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: #1a1a2e;
            font-weight: 700;
        }
        .article-img {
            margin: 25px auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .article-img img {
            width: 100%;
            height: auto;
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #16213e;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            width: 100%;
        }
        button {
            background-color: #00adb5;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #0097a7;
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating i {
            color: #ffc107;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .rating i:hover {
            color: #ff9800;
        }
        friend-link {
            display: block;
            background-color: #f1f8ff;
            border: 1px dashed #007bff;
            padding: 15px;
            margin: 15px 0;
            border-radius: 6px;
        }
        friend-link a {
            font-weight: 500;
            display: inline-block;
            margin-right: 15px;
        }
        footer {
            background: #1a1a2e;
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #00adb5;
            margin-bottom: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 15px;
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #16213e;
                padding: 15px;
                border-radius: 8px;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            #menu-toggle:checked ~ .nav-links {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            article, aside {
                padding: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 1rem;
        }
        .mt-3 {
            margin-top: 1rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 20px;
        }
