        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #c62828;
            --primary-dark: #8e0000;
            --primary-light: #ff5f52;
            --accent: #1a237e;
            --accent-light: #534bae;
            --text-dark: #212121;
            --text-light: #757575;
            --text-white: #ffffff;
            --bg-light: #f5f5f5;
            --bg-card: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: var(--text-white);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a {
            color: var(--text-white);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffeb3b;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-white);
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            border-bottom-color: #ffeb3b;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            right: -100%;
            width: 280px;
            height: calc(100vh - 80px);
            background: var(--accent);
            flex-direction: column;
            padding: 30px;
            gap: 20px;
            transition: var(--transition);
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            color: var(--text-white);
            font-size: 1.2rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 15px;
        }
        .nav-overlay {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(0,0,0,0.5);
            display: none;
            z-index: 998;
        }
        .nav-overlay.active {
            display: block;
        }
        .breadcrumb {
            background: var(--bg-card);
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--text-light);
            margin: 0 8px;
        }
        .search-bar {
            background: var(--bg-card);
            padding: 30px 0;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background: #f9f9f9;
        }
        .search-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-button:hover {
            background: var(--primary-dark);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-card {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            padding: 40px;
        }
        .article-title {
            color: var(--primary-dark);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 25px;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 8px;
        }
        .article-hero-img {
            width: 100%;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        h2, h3, h4 {
            color: var(--accent);
            margin-top: 40px;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid var(--primary-light);
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .highlight {
            background: #fff9c4;
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .tip-box {
            background: #e3f2fd;
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box i {
            color: var(--accent);
            margin-right: 10px;
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .strategy-card {
            background: #f1f8e9;
            padding: 25px;
            border-radius: var(--border-radius);
            border-top: 5px solid #7cb342;
        }
        .quote {
            font-style: italic;
            background: #f5f5f5;
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            position: relative;
        }
        .quote:before {
            content: "\201C";
            font-size: 4rem;
            color: var(--primary-light);
            position: absolute;
            top: -20px;
            left: 10px;
        }
        .author {
            font-weight: bold;
            color: var(--primary-dark);
            margin-top: 15px;
            text-align: right;
        }
        .sidebar-widget {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .popular-links a {
            display: block;
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
            color: var(--text-dark);
        }
        .popular-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            text-align: center;
        }
        .stat-box {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .interaction-section {
            background: var(--bg-card);
            border-radius: var(--border-radius);
            padding: 40px;
            margin-top: 40px;
            box-shadow: var(--shadow);
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 40px;
        }
        .stars {
            font-size: 2.5rem;
            color: #ddd;
            margin: 20px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 5px;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: #ffc107;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--text-dark);
        }
        .form-control {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 18px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(198, 40, 40, 0.2);
        }
        .long-tail-links {
            background: var(--accent);
            color: white;
            padding: 40px 0;
            margin-top: 60px;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #bbdefb;
            font-weight: 600;
        }
        .web-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .site-footer {
            background: #212121;
            color: #b0b0b0;
            padding: 60px 0 30px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        .footer-about {
            line-height: 1.8;
        }
        .footer-links h4, .footer-contact h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-links h4:after, .footer-contact h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #b0b0b0;
            display: block;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 8px;
        }
        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .footer-contact i {
            color: var(--primary-light);
            width: 20px;
        }
        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #333;
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #888;
        }
        .text-center { text-align: center; }
        .text-primary { color: var(--primary); }
        .bold { font-weight: 800; }
        .emoji { font-size: 1.2em; }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .flex {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        @media (max-width: 768px) {
            .article-title { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .article-card { padding: 25px; }
            .section-padding { padding: 40px 0; }
        }
