        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #8B0000;
            --secondary: #DAA520;
            --accent: #0F4D92;
            --light: #F8F9FA;
            --dark: #212529;
            --gray: #6C757D;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --border-radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: #a30000;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section-padding {
            padding: 80px 0;
        }
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -1px;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            color: var(--secondary);
        }
        .nav-desktop ul {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            color: var(--dark);
            padding: 5px 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: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            border: 2px solid #e9ecef;
            border-radius: 50px;
            overflow: hidden;
            background: white;
        }
        .search-box input {
            flex: 1;
            padding: 10px 20px;
            border: none;
            outline: none;
            min-width: 200px;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            display: block;
            padding: 12px 15px;
            border-radius: var(--border-radius);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background: #f8f9fa;
            color: var(--primary);
        }
        .breadcrumb {
            background: #f8f9fa;
            padding: 15px 0;
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            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);
        }
        main {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 40px;
        }
        .article-header {
            padding: 60px 20px;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1591301157619-14d2d3e7137d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
        }
        .article-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .article-meta i {
            margin-right: 8px;
        }
        .article-content {
            padding: 40px;
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin: 40px 0 15px;
        }
        .article-content h4 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 30px 0 10px;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content strong {
            color: var(--primary);
            font-weight: 700;
        }
        .highlight-box {
            background: #f8f9fa;
            border-left: 4px solid var(--secondary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 0 auto 15px;
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .internal-links {
            background: #f1f8ff;
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 40px 0;
        }
        .internal-links h3 {
            margin-top: 0;
            color: var(--accent);
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        .internal-links a {
            display: block;
            padding: 10px 15px;
            background: white;
            border-radius: 6px;
            border: 1px solid #d0e3ff;
        }
        .internal-links a:hover {
            background: #e7f1ff;
            border-color: var(--accent);
        }
        .user-interaction {
            background: #f8f9fa;
            padding: 40px;
            margin-top: 60px;
            border-radius: var(--border-radius);
        }
        .rating-section, .comments-section {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ddd;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover, .stars i.active {
            color: var(--secondary);
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 20px;
            margin-top: 25px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comments-list {
            margin-top: 30px;
        }
        .comment {
            background: white;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .comment-rating {
            color: var(--secondary);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-grid {
            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-links h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        .footer-links ul li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 12px 15px;
            border-radius: 6px;
            margin-bottom: 10px;
            border-left: 3px solid var(--secondary);
        }
        friend-link a:hover {
            color: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .nav-desktop, .search-box {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 30px 20px;
            }
            .article-header h1 {
                font-size: 2.5rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            .article-header {
                padding: 40px 15px;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .section-padding {
                padding: 60px 0;
            }
            .user-interaction {
                padding: 30px 20px;
            }
        }
