        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            font-size: 1.05rem;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .primary-color { color: #e10600; }
        .secondary-color { color: #1e1e1e; }
        .bg-light { background-color: #ffffff; }
        .shadow { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .rounded { border-radius: 8px; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .p-2 { padding: 1rem; }
        .p-3 { padding: 1.5rem; }
        .hidden { display: none; }
        @media (min-width: 768px) {
            .hidden-desktop { display: none; }
        }
        .site-header {
            background: linear-gradient(135deg, #1e1e1e 0%, #000000 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 4px solid #e10600;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Teko', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            line-height: 1;
        }
        .my-logo span {
            color: #e10600;
            font-weight: 800;
        }
        .my-logo:hover {
            color: #ffffff;
            text-shadow: 0 0 8px rgba(225, 6, 0, 0.5);
        }
        .breadcrumb {
            background-color: #f1f1f1;
            padding: 0.75rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #e10600;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: #e10600;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #e10600;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 767px) {
            .hamburger-btn {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 86px; 
                left: 0;
                width: 100%;
                background-color: #1e1e1e;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #333;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: #eee;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto 3rem;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background-color: #e10600;
            color: white;
            border: none;
            padding: 0 1.8rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #c10500;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .article-content h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #1e1e1e;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: #e10600;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 2rem 0 0.8rem;
            color: #333;
        }
        .article-content h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: #555;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .article-content ul, .article-content ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .article-content blockquote {
            border-left: 4px solid #e10600;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .article-content img {
            margin: 2rem auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .article-content a {
            color: #e10600;
            text-decoration: none;
            border-bottom: 1px dotted #e10600;
            transition: all 0.2s;
        }
        .article-content a:hover {
            color: #000;
            border-bottom: 1px solid #000;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
            border: 1px solid #ffcccc;
            border-left: 5px solid #e10600;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #777;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .sidebar {
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #1e1e1e;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
        }
        .sidebar a {
            color: #333;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f5f5f5;
            transition: color 0.3s, padding-left 0.3s;
        }
        .sidebar a:hover {
            color: #e10600;
            padding-left: 8px;
            border-bottom-color: #e10600;
        }
        .rating-widget {
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            margin-top: 2rem;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin: 0.5rem 0;
        }
        .stars i {
            cursor: pointer;
            margin: 0 2px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rate-text {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
        }
        .comments-section {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .comments-section h2 {
            color: #1e1e1e;
            margin-bottom: 1.5rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.3rem;
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e10600;
            box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
        }
        .submit-btn {
            background-color: #e10600;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            align-self: flex-start;
            transition: background-color 0.3s, transform 0.2s;
        }
        .submit-btn:hover {
            background-color: #c10500;
            transform: translateY(-2px);
        }
        .site-footer {
            background-color: #1e1e1e;
            color: #ccc;
            padding: 3rem 0 2rem;
            border-top: 4px solid #e10600;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.6rem;
        }
        .footer-section a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: #e10600;
        }
        friend-link {
            display: inline-block;
            background-color: #333;
            color: #ccc;
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s;
        }
        friend-link:hover {
            background-color: #e10600;
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #888;
        }
