        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #0f172a;
            --primary-accent: #3b82f6;
            --secondary-accent: #f59e0b;
            --text-light: #f8fafc;
            --text-muted: #94a3b8;
            --bg-card: #1e293b;
            --border-color: #334155;
            --success: #10b981;
            --transition: all 0.3s ease;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        header {
            background-color: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--primary-accent);
        }
        .my-logo:hover {
            color: var(--primary-accent);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-accent);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 2rem 0;
        }
        article {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            article {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary-accent);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
            flex-wrap: wrap;
        }
        .article-meta span i {
            margin-right: 6px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-accent);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--text-light);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 300;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        strong {
            color: var(--secondary-accent);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(245, 158, 11, 0.1));
            border-left: 4px solid var(--secondary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            border: 2px solid var(--border-color);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: var(--text-muted);
            margin-top: 0.8rem;
            font-size: 0.9rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .related-links {
            background-color: rgba(30, 41, 59, 0.6);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
            margin-left: 0;
        }
        .related-links li a {
            background-color: var(--primary-dark);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            display: inline-block;
            border: 1px solid var(--border-color);
        }
        .related-links li a:hover {
            background-color: var(--primary-accent);
            color: white;
            border-color: var(--primary-accent);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 1.2rem;
            color: var(--secondary-accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            font-size: 1.1rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 8px 0 0 8px;
            color: var(--text-light);
        }
        .search-form button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #2563eb;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #fbbf24;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            margin-bottom: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--success);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #0da271;
        }
        footer {
            background-color: #0a1120;
            border-top: 1px solid var(--border-color);
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary-accent);
            margin-bottom: 1rem;
        }
        .footer-description {
            color: var(--text-muted);
        }
        .footer-links h4 {
            color: var(--text-light);
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: var(--text-muted);
        }
        friend-link {
            display: block;
            background-color: var(--bg-card);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid var(--primary-accent);
        }
        friend-link a {
            font-weight: 600;
            color: var(--secondary-accent);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: var(--primary-dark);
                width: 80%;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: right 0.4s ease;
                border-left: 1px solid var(--border-color);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-area, .widget {
                padding: 1.5rem;
            }
            .article-meta {
                gap: 1rem;
            }
        }
