:root {
            --primary-color: #b22222;
            --secondary-color: #2c3e50;
            --accent-color: #f39c12;
            --light-color: #ecf0f1;
            --dark-color: #1a1a1a;
            --text-color: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary-color);
            color: var(--light-color);
            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;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            letter-spacing: 1.5px;
            background: linear-gradient(to right, #b22222, #f39c12);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo a {
            background: none;
            color: inherit;
        }
        .my-logo a:hover {
            color: inherit;
            opacity: 0.9;
        }
        .search-form {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #8b1a1a;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-color);
            cursor: pointer;
        }
        nav {
            background-color: var(--dark-color);
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            display: block;
            padding: 15px 25px;
            color: var(--light-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover, .nav-links a.active {
            background-color: rgba(255,255,255,0.05);
            border-bottom-color: var(--accent-color);
        }
        .breadcrumb {
            padding: 12px 0;
            background-color: #2a2a2a;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #666;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--secondary-color);
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--primary-color);
            font-size: 2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ddd;
        }
        h3 {
            color: var(--secondary-color);
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary-color);
            background-color: #f8f9fa;
            padding: 20px;
            border-left: 4px solid var(--accent-color);
            border-radius: 4px;
            margin-bottom: 30px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight {
            background-color: #fffacd;
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 600;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: var(--shadow);
            border: 5px solid #eee;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -15px;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        .content-block {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        blockquote {
            border-left: 5px solid var(--primary-color);
            padding: 20px 30px;
            margin: 30px 0;
            background-color: #f8f9fa;
            font-style: italic;
            color: #555;
            border-radius: 0 8px 8px 0;
        }
        blockquote::before {
            content: '"';
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.3;
            margin-right: 10px;
            line-height: 0;
            vertical-align: -0.4em;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: var(--secondary-color);
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-color);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            margin-top: 10px;
        }
        .internal-links {
            background-color: #f0f8ff;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid var(--primary-color);
        }
        .internal-links h3 {
            margin-top: 0;
            color: var(--primary-color);
        }
        .internal-links ul {
            columns: 2;
            list-style-position: inside;
        }
        .internal-links li {
            margin-bottom: 10px;
            break-inside: avoid;
        }
        aside {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-section {
            margin-bottom: 35px;
        }
        .sidebar-section h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .update-info {
            background-color: #e8f4fd;
            padding: 15px;
            border-radius: 6px;
            font-size: 0.95rem;
            border-left: 4px solid #3498db;
        }
        .update-info i {
            color: #3498db;
            margin-right: 8px;
        }
        .interactive-form {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary-color);
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 1.8rem;
            gap: 5px;
            margin: 10px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: var(--accent-color);
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            width: 100%;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #8b1a1a;
        }
        footer {
            background-color: var(--secondary-color);
            color: var(--light-color);
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2rem;
            letter-spacing: 1.5px;
            background: linear-gradient(to right, #b22222, #f39c12);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .friend-link {
            background-color: rgba(255,255,255,0.1);
            padding: 8px 15px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .friend-link:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .search-form {
                order: 3;
                margin-top: 15px;
                max-width: 100%;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 10px 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links a {
                padding: 12px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            article {
                padding: 25px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .internal-links ul {
                columns: 1;
            }
        }
