        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B00; 
            --primary-dark: #CC5600;
            --secondary: #1A237E; 
            --light-bg: #F5F5F7;
            --dark-bg: #121212;
            --text-dark: #222;
            --text-light: #f5f5f5;
            --text-muted: #666;
            --border-color: #ddd;
            --success: #4CAF50;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }
        ul, ol {
            padding-left: 1.5rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .mt-4 { margin-top: 2rem; }
        .py-2 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
        .p-3 { padding: 1.5rem; }
        .d-flex { display: flex; }
        .align-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        .section-title {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,0,0.1) 0%, rgba(255,107,0,0.05) 100%);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
        }
        .main-header {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: var(--primary);
        }
        .logo-icon {
            color: var(--primary);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-light);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--primary);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background: var(--dark-bg);
            flex-direction: column;
            padding: 2rem;
            transition: left 0.4s ease;
            z-index: 999;
            overflow-y: auto;
        }
        .nav-mobile.active {
            left: 0;
        }
        .nav-mobile a {
            color: var(--text-light);
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 1.1rem;
            display: block;
        }
        .nav-mobile a:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        .breadcrumb {
            background: white;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--text-muted);
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .search-input {
            flex: 1;
            padding: 18px 24px;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--primary-dark);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-title {
            font-size: 1.3rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        .link-list a {
            display: block;
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
            color: var(--text-dark);
        }
        .link-list a:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 2.5rem 0 1.2rem;
            padding-top: 0.5rem;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        .article-content em {
            color: var(--secondary);
            font-style: italic;
        }
        .article-content ul, .article-content ol {
            margin-bottom: 1.5rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .comment-section, .rating-section {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            margin-top: 3rem;
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary);
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255,107,0,0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 10px 0 20px;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .main-footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }
        .footer-links a {
            display: block;
            color: #bbb;
            padding: 0.4rem 0;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
