        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #f9c74f;
            --accent-dark: #f8961e;
            --text-light: #f1faee;
            --text-gray: #a8dadc;
            --card-bg: #0f3460;
            --border-color: #2d4263;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary);
            border-bottom: 2px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #f9c74f, #ff9e00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #4cc9f0;
        }
        .search-form {
            flex-grow: 1;
            max-width: 400px;
            margin: 0 30px;
            position: relative;
        }
        .search-form input {
            width: 100%;
            padding: 12px 20px;
            padding-right: 50px;
            border-radius: 30px;
            border: 2px solid var(--border-color);
            background: rgba(255,255,255,0.1);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--accent);
            font-size: 1.2rem;
            cursor: pointer;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--secondary);
            padding: 80px 30px 30px;
            transition: left 0.5s ease;
            z-index: 999;
            box-shadow: 5px 0 15px rgba(0,0,0,0.7);
            overflow-y: auto;
        }
        .mobile-nav.active {
            left: 0;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 20px;
        }
        .mobile-nav a {
            font-size: 1.3rem;
            display: block;
            padding: 10px;
            border-left: 4px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--accent);
            background: rgba(249, 199, 79, 0.1);
        }
        .close-nav {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 998;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(15, 52, 96, 0.3);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb span {
            color: var(--accent);
            margin: 0 10px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border-color);
        }
        .article-header h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #f9c74f, #90be6d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .meta {
            display: flex;
            gap: 20px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .meta i {
            margin-right: 8px;
            color: var(--accent);
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--accent);
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--border-color);
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #90be6d;
        }
        .article-content ul, .article-content ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .highlight {
            background-color: rgba(249, 199, 79, 0.15);
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-wrapper {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .image-wrapper img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .image-wrapper:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            padding: 10px 15px;
            background-color: rgba(0,0,0,0.7);
            font-size: 0.9rem;
            color: var(--text-gray);
            text-align: center;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            color: var(--accent);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
            color: #555;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent);
        }
        .rating-widget input,
        .rating-widget textarea {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background-color: rgba(255,255,255,0.05);
            color: var(--text-light);
        }
        .rating-widget button {
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
            color: var(--primary);
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(249, 199, 79, 0.4);
        }
        .comments-widget .comment-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }
        .comment {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent);
        }
        .comment-date {
            font-size: 0.8rem;
            color: var(--text-gray);
            margin-left: 10px;
        }
        .comment-text {
            margin-top: 8px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            padding: 40px 0;
            border-top: 2px solid var(--border-color);
            border-bottom: 2px solid var(--border-color);
            margin-top: 50px;
        }
        .web-link {
            background: var(--secondary);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--card-bg);
            transform: translateY(-5px);
        }
        footer {
            padding: 30px 0;
            text-align: center;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                max-width: 100%;
                margin: 20px 0 0;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .meta {
                flex-direction: column;
                gap: 10px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
        }
        .text-bold {
            font-weight: 800;
            color: var(--accent);
        }
        .text-center {
            text-align: center;
        }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
