        * {
            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: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #e10600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #9b0000;
            text-decoration: underline;
        }
        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: 800; }
        .highlight { background-color: #fffacd; padding: 2px 5px; }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: linear-gradient(135deg, #000 0%, #333 100%);
            color: white;
            padding: 1rem 0;
            border-bottom: 5px solid #e10600;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo span {
            color: #e10600;
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.03);
        }
        .breadcrumb {
            background-color: #f1f1f1;
            padding: 12px 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #e10600;
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: #999;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: #e10600;
            transition: width 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: #000;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 2rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                z-index: 999;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1568216651109-db0d007cb5c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 1rem;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 15px 15px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #eee;
        }
        .search-box {
            max-width: 700px;
            margin: 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .search-box h2 {
            color: #000;
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #e10600;
        }
        .search-form button {
            background: #e10600;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #b30500;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .article-content h2 {
            color: #000;
            border-left: 5px solid #e10600;
            padding-left: 15px;
            margin: 2.5rem 0 1.2rem;
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: #222;
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }
        .article-content h4 {
            color: #444;
            margin: 1.5rem 0 0.8rem;
            font-size: 1.2rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-content ul, .article-content ol {
            margin: 1rem 0 1rem 2rem;
            padding-left: 1rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .featured-image {
            width: 100%;
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 8px;
            font-size: 0.95rem;
        }
        .last-updated {
            background: #f0f8ff;
            padding: 15px;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid #4dabf7;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #000;
            margin-bottom: 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #ffc107;
            margin-bottom: 10px;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .form-group label {
            font-weight: 600;
            color: #555;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 12px;
            border: 1px solid #ccc;
            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;
        }
        .submit-btn {
            background: #000;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #333;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #eee;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: block;
            padding: 8px 10px;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: #f9f9f9;
            padding-left: 15px;
            text-decoration: none;
        }
        .site-footer {
            background: #000;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: #fff;
        }
        friend-link {
            display: inline-block;
            background: #111;
            color: #e10600;
            padding: 8px 15px;
            margin: 5px 10px 5px 0;
            border-radius: 5px;
            font-weight: bold;
            border: 1px solid #333;
        }
        friend-link a {
            color: inherit;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
