        * { 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: #f8f9fa;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
            color: white;
            padding: 1.5rem 0;
            border-bottom: 5px solid #e10600;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
            background: linear-gradient(to right, #e10600, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            transition: transform 0.3s;
            flex-shrink: 0;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.6rem;
            display: block;
            color: #aaa;
            letter-spacing: 1px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: #e10600;
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
            border-bottom: 1px solid #eee;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #e10600;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 3.2rem;
            color: #0a0a0a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 8px solid #e10600;
            padding-left: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #2a2a2a;
            margin: 2.8rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: #444;
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: #666;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #555;
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #ffcc00;
            margin-bottom: 2.5rem;
        }
        b, strong {
            color: #e10600;
            font-weight: 700;
        }
        emoji {
            font-style: normal;
            margin-right: 5px;
        }
        a.content-link {
            color: #e10600;
            text-decoration: underline;
            text-underline-offset: 3px;
            font-weight: 600;
        }
        a.content-link:hover {
            color: #ff3300;
            text-decoration: none;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid #f0f0f0;
            transition: transform 0.5s;
        }
        .feature-img:hover {
            transform: scale(1.008);
        }
        .info-box {
            background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
            border-left: 5px solid #007bff;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2.5rem;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            font-size: 1.4rem;
            color: #0a0a0a;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box h3 i { color: #e10600; }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem 1rem;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background: #e10600;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #c10500; }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form button, .rating-form button {
            width: 100%;
            padding: 1rem;
            background: #2a2a2a;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover { background: #444; }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .stars i:hover { transform: scale(1.2); }
        .update-time {
            font-size: 0.9rem;
            color: #888;
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            border-top: 5px solid #e10600;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            color: #fff;
            font-weight: 900;
            text-decoration: none;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        friend-link a {
            color: #ffcc00;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 1px solid #444;
            border-radius: 4px;
            transition: all 0.3s;
        }
        friend-link a:hover {
            background: #333;
            border-color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #999;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .my-logo { margin-bottom: 1rem; }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 15px;
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
                gap: 0.5rem;
            }
            .main-nav.active ul { display: flex; }
            .main-nav a { display: block; padding: 0.8rem; }
            article { padding: 1.5rem; }
            aside { position: static; }
        }
