        * {
            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;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        ul, ol {
            list-style-position: inside;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #00dbde;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #16213e;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background: rgba(255,255,255,0.05);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb a:hover {
            color: #6a11cb;
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6c757d;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #1a1a2e;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #6c757d;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        .article-meta span i {
            margin-right: 0.5rem;
        }
        .featured-image {
            margin: 2rem auto;
            max-width: 900px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.5rem;
            background-color: #f1f3f5;
            color: #495057;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: #16213e;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #00dbde;
        }
        .article-body h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #2575fc;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body strong {
            color: #1a1a2e;
            background-color: #f8f9fa;
            padding: 0 2px;
        }
        .article-body em {
            color: #6a11cb;
        }
        .article-body ul, .article-body ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        .article-body li {
            margin-bottom: 0.5rem;
        }
        .tip-box {
            background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
            border-left: 5px solid #6a11cb;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box h4 {
            color: #6a11cb;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #ffeaa7;
            margin: 1.5rem 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #16213e;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #dee2e6;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 50px 0 0 50px;
            outline: none;
        }
        .search-form button {
            background: #6a11cb;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
        }
        .search-form button:hover {
            background: #2575fc;
        }
        .rating-widget .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-widget .stars i {
            color: #ffc107;
            cursor: pointer;
            font-size: 1.5rem;
            transition: transform 0.2s;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        .internal-links {
            background: #1a1a2e;
            color: #adb5bd;
            padding: 3rem 0;
        }
        .internal-links h3 {
            color: white;
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 1.5rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
        }
        .web-link a {
            color: #00dbde;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #0d0d1a;
            color: #adb5bd;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
        }
        .copyright {
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            gap: 1.5rem;
        }
        .footer-links a:hover {
            color: #00dbde;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
