        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #b71c1c;
            --primary-dark: #7f0000;
            --secondary: #0d47a1;
            --accent: #ffab00;
            --light: #f5f5f5;
            --dark: #212121;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--secondary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
        }
        .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: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        .section {
            padding: 60px 0;
        }
        .site-header {
            background: var(--dark);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: white;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--dark);
            flex-direction: column;
            padding: 20px;
            display: none;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 15px 0;
            border-bottom: 1px solid #444;
            font-size: 1.1rem;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: #f9f9f9;
            padding: 15px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 8px;
        }
        .search-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 40px 0;
            text-align: center;
        }
        .search-box {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 18px 25px;
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-size: 1.1rem;
            outline: none;
            box-shadow: var(--shadow);
        }
        .search-box button {
            position: absolute;
            right: 8px;
            top: 8px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }
        .article-hero {
            position: relative;
            margin-bottom: 40px;
        }
        .article-hero img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
        }
        .hero-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 10px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        .article-body {
            padding: 0 20px 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 25px;
            line-height: 1.2;
            border-left: 5px solid var(--primary);
            padding-left: 20px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--gray);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--primary);
            font-weight: 600;
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin-bottom: 35px;
        }
        .highlight {
            background: #fff8e1;
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid var(--accent);
            margin: 30px 0;
        }
        .quote {
            font-style: italic;
            color: var(--gray);
            border-left: 4px solid #ccc;
            padding-left: 20px;
            margin: 30px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat-item {
            background: #e3f2fd;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
        }
        .stat-label {
            font-size: 1rem;
            color: var(--dark);
            margin-top: 10px;
        }
        .image-with-caption {
            margin: 35px 0;
            text-align: center;
        }
        .image-with-caption img {
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 10px;
        }
        .caption {
            font-size: 0.9rem;
            color: var(--gray);
            font-style: italic;
        }
        .link-list {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .link-list h4 {
            margin-top: 0;
        }
        .link-list ul {
            list-style-type: square;
            columns: 2;
        }
        @media (max-width: 600px) {
            .link-list ul {
                columns: 1;
            }
        }
        .link-list a {
            color: var(--secondary);
            display: inline-block;
            padding: 5px 0;
        }
        .sidebar {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #ddd;
        }
        .sidebar-links a {
            display: block;
            padding: 12px 15px;
            background: white;
            margin-bottom: 10px;
            border-radius: 5px;
            border-left: 4px solid var(--primary);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .sidebar-links a:hover {
            background: #fff3e0;
            border-left-color: var(--accent);
            transform: translateX(5px);
        }
        .interaction-section {
            background: #f5f5f5;
            padding: 50px 0;
            margin-top: 40px;
        }
        .rating-widget, .comment-widget {
            background: white;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent);
        }
        .rating-result {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-top: 15px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.1);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .comments-list {
            margin-top: 40px;
        }
        .comment {
            background: white;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 25px;
            border-left: 5px solid #e0e0e0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .comment-author {
            font-weight: bold;
            color: var(--dark);
        }
        .site-footer {
            background: var(--dark);
            color: #bbb;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bbb;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: #333;
            padding: 15px;
            border-radius: 5px;
            margin-top: 15px;
        }
        friend-link a {
            color: var(--accent);
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
