        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-red: #c00a0a;
            --primary-dark: #0a0a0a;
            --primary-gold: #d4af37;
            --secondary-gray: #2a2a2a;
            --light-gray: #e0e0e0;
            --text-color: #f0f0f0;
            --accent-blue: #1e90ff;
            --transition-speed: 0.3s;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: var(--primary-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, var(--secondary-gray), var(--primary-dark));
            border-bottom: 3px solid var(--primary-red);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-red);
            text-shadow: 3px 3px 0 #000, 6px 6px 0 rgba(0,0,0,0.2);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            color: #ff1a1a;
            text-shadow: 3px 3px 0 #000, 6px 6px 0 var(--primary-gold);
        }
        .breadcrumb {
            background-color: var(--secondary-gray);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .breadcrumb a {
            color: var(--light-gray);
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 5px;
        }
        .main-nav {
            display: flex;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-list li a {
            color: var(--light-gray);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-list li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-red);
            transition: width var(--transition-speed);
        }
        .nav-list li a:hover::after {
            width: 100%;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light-gray);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .search-container {
            margin: 2rem auto;
            background: var(--secondary-gray);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid var(--primary-red);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #444;
            border-radius: 4px;
            background: #111;
            color: var(--text-color);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-red);
        }
        .search-button {
            padding: 0.8rem 1.5rem;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background var(--transition-speed);
        }
        .search-button:hover {
            background: #e00;
        }
        .main-article {
            background: var(--secondary-gray);
            border-radius: 8px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article-header {
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--primary-red);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px #000;
        }
        .article-meta {
            color: #aaa;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .article-meta i {
            margin-right: 5px;
            color: var(--primary-red);
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary-gold);
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #ffcc00;
            margin: 2rem 0 1rem 0;
        }
        .article-content h4 {
            font-size: 1.3rem;
            color: #f0a0a0;
            margin: 1.5rem 0 0.8rem 0;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content blockquote {
            border-left: 4px solid var(--primary-red);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: #ccc;
            background: rgba(0,0,0,0.3);
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .article-content b, .article-content strong {
            color: #fff;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a1a, #2d0a0a);
            border: 1px solid var(--primary-red);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .inline-link-list {
            background: #222;
            padding: 1rem;
            border-radius: 5px;
            margin: 1.5rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
        }
        .inline-link-list a {
            display: block;
            padding: 0.5rem;
            background: #333;
            border-radius: 4px;
            transition: background var(--transition-speed);
        }
        .inline-link-list a:hover {
            background: #444;
        }
        .featured-image {
            margin: 2rem auto;
            text-align: center;
            border: 5px solid #000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            overflow: hidden;
            border-radius: 5px;
            max-width: 800px;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-size: 0.9rem;
            color: #aaa;
            padding: 0.5rem;
            background: #111;
        }
        .user-interaction {
            margin-top: 3rem;
            background: #222;
            padding: 2rem;
            border-radius: 8px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .interaction-form {
            background: #1a1a1a;
            padding: 1.5rem;
            border-radius: 8px;
            border-top: 3px solid var(--primary-red);
        }
        .interaction-form h3 {
            color: var(--primary-gold);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            background: #111;
            border: 1px solid #444;
            border-radius: 4px;
            color: var(--text-color);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #555;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--primary-gold);
        }
        .submit-button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background var(--transition-speed);
            width: 100%;
        }
        .submit-button:hover {
            background: #e00;
        }
        .site-footer {
            background: #111;
            padding: 3rem 0 1.5rem 0;
            margin-top: 3rem;
            border-top: 2px solid var(--primary-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--primary-gold);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: #222;
            margin-bottom: 0.5rem;
            border-radius: 4px;
            border-left: 3px solid var(--accent-blue);
            transition: background var(--transition-speed);
        }
        friend-link:hover {
            background: #333;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
                order: 2;
            }
            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 1rem;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                gap: 0;
            }
            .nav-list li {
                border-bottom: 1px solid #444;
            }
            .nav-list li a {
                display: block;
                padding: 1rem;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            .my-logo {
                font-size: 2rem;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            .site-header, .search-container, .user-interaction, .site-footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .main-article {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: #000;
                text-decoration: underline;
            }
        }
