        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #c62828;
            --secondary-color: #1a237e;
            --accent-color: #ff9800;
            --dark-color: #121212;
            --light-color: #f5f5f5;
            --text-color: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --container-width: 1200px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .logo span {
            color: var(--accent-color);
        }
        .search-container {
            flex: 0 1 400px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            background: white;
        }
        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            outline: none;
            font-size: 1rem;
        }
        .search-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-button:hover {
            background: #d32f2f;
        }
        .nav-container {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 15px 0;
        }
        .nav-desktop a {
            padding: 8px 16px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            font-weight: 500;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent-color);
        }
        .nav-mobile {
            display: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '>';
            margin-left: 8px;
            color: rgba(255, 255, 255, 0.5);
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        .article-content {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-color);
        }
        .comments-section, .ratings-section {
            margin-top: 50px;
        }
        .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: var(--accent-color);
        }
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: #d32f2f;
            transform: translateY(-2px);
        }
        h1, h2, h3, h4 {
            color: var(--secondary-color);
            line-height: 1.3;
            margin-bottom: 20px;
        }
        h1 {
            font-size: 2.5rem;
        }
        h2 {
            font-size: 2rem;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .lead {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-light);
        }
        .highlight {
            background: rgba(255, 152, 0, 0.1);
            padding: 20px;
            border-left: 4px solid var(--accent-color);
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .internal-links {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .internal-links h2 {
            text-align: center;
            margin-bottom: 30px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: #f8f9fa;
            padding: 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateY(-3px);
        }
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent-color);
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-container {
                order: 3;
                flex: 1 0 100%;
                margin-top: 15px;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile {
                display: none;
                flex-direction: column;
                background: var(--dark-color);
                padding: 20px 0;
            }
            .nav-mobile.active {
                display: flex;
            }
            .nav-mobile a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                transition: var(--transition);
            }
            .nav-mobile a:hover {
                background: rgba(255, 255, 255, 0.1);
                color: var(--accent-color);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .hero {
                padding: 50px 20px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-accent { color: var(--accent-color); }
        .mt-20 { margin-top: 20px; }
        .mt-30 { margin-top: 30px; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }
