        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-red: #e10600;
            --primary-black: #15151e;
            --primary-grey: #38383f;
            --secondary-grey: #949498;
            --light-grey: #f4f4f4;
            --accent-yellow: #ffd700;
            --transition-speed: 0.3s;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9f9;
            max-width: 100%;
            overflow-x: hidden;
        }
        .site-header {
            background-color: var(--primary-black);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: var(--primary-red);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform var(--transition-speed);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .logo-text {
            position: relative;
        }
        .logo-text::after {
            content: '™';
            font-size: 0.8rem;
            vertical-align: super;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: color var(--transition-speed);
        }
        .nav-link:hover {
            color: var(--accent-yellow);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-red);
            transition: width var(--transition-speed);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger-menu {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-black);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 1rem;
            border-bottom: 1px solid var(--primary-grey);
        }
        .breadcrumb {
            background-color: var(--light-grey);
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--primary-red);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-black);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--secondary-grey);
            font-size: 0.9rem;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-black);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-grey);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-grey);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--primary-grey);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(225, 6, 0, 0.08);
            border-left: 4px solid var(--primary-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .feature-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--secondary-grey);
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary-black);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-red);
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .search-btn:hover {
            background-color: #c10500;
        }
        .rating-widget {
            text-align: center;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.3rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ddd;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--accent-yellow);
        }
        .rating-form {
            margin-top: 1.5rem;
        }
        .rating-submit {
            background-color: var(--primary-black);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color var(--transition-speed);
            width: 100%;
        }
        .rating-submit:hover {
            background-color: var(--primary-red);
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 3px solid var(--light-grey);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-bottom: 3rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-input,
        .form-textarea {
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color var(--transition-speed);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: #c10500;
        }
        .comment {
            background-color: var(--light-grey);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary-black);
        }
        .comment-date {
            color: var(--secondary-grey);
        }
        .site-footer {
            background-color: var(--primary-black);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        friend-link {
            display: inline-block;
            margin-right: 1.5rem;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: var(--secondary-grey);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        friend-link a:hover {
            color: var(--primary-red);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--primary-grey);
            color: var(--secondary-grey);
            font-size: 0.9rem;
        }
        .bold {
            font-weight: 700;
            color: var(--primary-black);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .internal-link {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            transition: color var(--transition-speed);
        }
        .internal-link:hover {
            color: #c10500;
            text-decoration: underline;
        }
        .last-updated {
            background-color: rgba(225, 6, 0, 0.1);
            padding: 1rem;
            border-radius: 5px;
            margin: 2rem 0;
            font-size: 0.9rem;
            color: var(--primary-grey);
        }
        @media (max-width: 768px) {
            .container, .site-header, .breadcrumb {
                padding: 0 1rem;
            }
            .main-article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @media print {
            .site-header, .sidebar, .comments-section, .site-footer {
                display: none;
            }
            .container {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
            body {
                background: white;
                color: black;
                font-size: 12pt;
            }
        }
