        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            font-size: 1.05rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: 'Titillium Web', sans-serif;
            color: #e10600; 
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #15151e; 
            padding-bottom: 15px;
            margin-top: 0.5em;
        }
        h2 { font-size: 2.1rem; }
        h3 { font-size: 1.7rem; color: #15151e; }
        h4 { font-size: 1.4rem; color: #666; }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        a {
            color: #e10600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #15151e;
            text-decoration: underline;
        }
        strong {
            color: #15151e;
            font-weight: 700;
        }
        .site-header, .site-footer {
            background-color: #15151e;
            color: #fff;
        }
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content-area {
                grid-template-columns: 1fr;
            }
        }
        .site-header .container {
            display: flex;
            flex-direction: column;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .my-logo {
            font-family: 'Racing Sans One', cursive;
            font-size: 2.5rem;
            color: #fff;
            text-decoration: none;
        }
        .my-logo span {
            color: #e10600;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .breadcrumb {
            background-color: #2a2a35;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .main-nav {
            background-color: #2a2a35;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: #fff;
            padding: 18px 20px;
            display: block;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            background-color: #e10600;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 10px;
        }
        .search-box {
            display: flex;
            margin: 30px 0;
            background: #fff;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border: 1px solid #ddd;
        }
        .search-box input {
            flex-grow: 1;
            border: none;
            padding: 18px 25px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background-color: #e10600;
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #b30500;
        }
        .sidebar {
            background-color: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e10600;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #e10600;
            font-size: 0.8rem;
        }
        .comment-form, .rating-form {
            background-color: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 30px 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #e10600;
            outline: none;
        }
        .submit-btn {
            background-color: #15151e;
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 6px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #e10600;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
        }
        .star-rating input[type="radio"] {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            font-size: 1.8rem;
            padding: 0 3px;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input[type="radio"]:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .article-featured-img {
            border-radius: 10px;
            overflow: hidden;
            margin: 25px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .pull-quote {
            border-left: 5px solid #e10600;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            font-size: 1.3rem;
            color: #555;
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 0 10px 10px 0;
        }
        .info-box {
            background-color: #e9f7fe;
            border-left: 5px solid #3498db;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .site-footer {
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding-right: 30px;
        }
        .footer-section h3 {
            color: #fff;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: #fff;
        }
        friend-link {
            display: inline-block;
            background-color: #2a2a35;
            color: #fff;
            padding: 8px 15px;
            border-radius: 4px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            transition: all 0.3s;
        }
        friend-link:hover {
            background-color: #e10600;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a2a35;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 20px;
                top: 15px;
            }
            .nav-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                padding: 15px 20px;
                border-bottom: 1px solid #3a3a45;
            }
            .main-content-area {
                gap: 20px;
            }
            .footer-section {
                padding-right: 0;
            }
        }
