        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B35; 
            --secondary: #004E89; 
            --accent: #00A896; 
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        section {
            padding: 60px 0;
        }
        header {
            background: var(--dark);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary);
        }
        .logo span {
            color: var(--primary);
        }
        .nav-desktop ul {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 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;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--dark);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
        }
        .nav-mobile ul {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .nav-mobile a {
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 10px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 80px 20px;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
        }
        .article-content h2:first-of-type {
            margin-top: 0;
        }
        .article-content h3 {
            color: var(--primary);
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        .article-content h4 {
            color: var(--dark);
            font-size: 1.3rem;
            margin: 25px 0 10px;
        }
        .article-content p {
            margin-bottom: 1.5em;
            font-size: 1.05rem;
        }
        .article-content p.lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--secondary);
            background: #f0f8ff;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid var(--accent);
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .img-container {
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }
        .img-container img {
            transition: transform 0.5s ease;
            width: 100%;
        }
        .img-container:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .link-inline {
            color: var(--accent);
            font-weight: 600;
            border-bottom: 1px dotted var(--accent);
        }
        .link-inline:hover {
            color: var(--primary);
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            outline: none;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: var(--secondary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #FFD700;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        .rating-form button, .comment-form button {
            width: 100%;
        }
        .comment-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }
        .comment {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: bold;
            color: var(--secondary);
        }
        .comment-date {
            font-size: 0.85rem;
            color: var(--gray);
            margin-left: 10px;
        }
        .comment-text {
            margin-top: 8px;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
        }
        .footer-logo span {
            color: var(--primary);
        }
        .footer-links h4 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin-top: 10px;
            padding: 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.4rem;
            }
            section {
                padding: 40px 0;
            }
        }
