        * { 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: #e0e0e0;
            background: #0a0a0a;
            background-image: linear-gradient(to bottom, #111 0%, #0a0a0a 100%);
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        a { color: #e10600; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ff6b6b; text-shadow: 0 0 8px rgba(225, 6, 0, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
        h1, h2, h3, h4 { font-family: 'Formula1', 'Arial Black', sans-serif; color: #fff; margin-top: 1.5em; margin-bottom: 0.7em; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); border-bottom: 3px solid #e10600; padding-bottom: 0.3em; }
        h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: #ffcc00; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: #4dabf7; }
        h4 { font-size: 1.4rem; color: #69db7c; }
        p { margin-bottom: 1.5em; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; color: #adb5bd; font-weight: 300; }
        .highlight { background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.1), transparent); padding: 0.2em 0.5em; border-left: 4px solid #e10600; }
        .emoji { font-size: 1.2em; margin-right: 0.3em; }
        .site-header { background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #333; position: sticky; top: 0; z-index: 1000; padding: 1rem 0; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-family: 'Formula1', 'Arial Black', sans-serif; font-size: 2.2rem; font-weight: 900; color: #e10600; text-transform: uppercase; letter-spacing: 2px; }
        .my-logo span { color: #fff; }
        .nav-desktop { display: flex; gap: 2rem; }
        @media (max-width: 992px) { .nav-desktop { display: none; } }
        .nav-desktop a { color: #ccc; padding: 0.5rem 1rem; border-radius: 4px; }
        .nav-desktop a:hover { background: #333; color: #fff; }
        .hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }
        @media (max-width: 992px) { .hamburger { display: block; } }
        .nav-mobile { display: none; flex-direction: column; background: #1a1a1a; padding: 1rem; border-radius: 8px; margin-top: 1rem; border: 1px solid #444; }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { color: #ccc; padding: 0.8rem; border-bottom: 1px solid #333; }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #888; }
        .breadcrumb a { color: #aaa; }
        .breadcrumb i { margin: 0 0.5rem; }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; margin: 2rem 0; }
        @media (max-width: 768px) { .main-content { grid-template-columns: 1fr; } }
        article { background: rgba(30, 30, 30, 0.7); border-radius: 12px; padding: 2.5rem; border: 1px solid #444; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        aside { background: rgba(25, 25, 25, 0.8); border-radius: 12px; padding: 2rem; border: 1px solid #444; align-self: start; position: sticky; top: 120px; }
        .widget { margin-bottom: 2rem; }
        .widget-title { color: #ffcc00; border-bottom: 2px solid #444; padding-bottom: 0.5rem; margin-bottom: 1rem; font-size: 1.4rem; }
        .form-group { margin-bottom: 1.5rem; }
        label { display: block; margin-bottom: 0.5rem; color: #ccc; }
        input, textarea, select {
            width: 100%; padding: 0.8rem 1rem; background: #222; border: 1px solid #555; border-radius: 6px; color: #fff; font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #e10600; box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.2); }
        button, .btn {
            background: linear-gradient(to right, #e10600, #b30500); color: white; border: none; padding: 0.9rem 1.8rem; border-radius: 6px;
            cursor: pointer; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; display: inline-block;
        }
        button:hover, .btn:hover { background: linear-gradient(to right, #ff1a1a, #e10600); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(225, 6, 0, 0.4); }
        .rating-stars { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .rating-stars i { color: #555; cursor: pointer; font-size: 1.5rem; transition: color 0.2s; }
        .rating-stars i:hover, .rating-stars i.active { color: #ffcc00; }
        .feature-box {
            background: linear-gradient(145deg, #1a1a1a, #222); border-radius: 10px; padding: 2rem; margin: 2rem 0; border-left: 5px solid #e10600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .update-time { color: #69db7c; font-style: italic; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #444; }
        .site-footer { background: #111; border-top: 1px solid #333; margin-top: 4rem; padding: 3rem 0; text-align: center; }
        .friend-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin: 2rem 0; }
        friend-link { display: inline-block; background: #222; padding: 0.7rem 1.5rem; border-radius: 20px; border: 1px solid #444; }
        .copyright { color: #777; font-size: 0.9rem; margin-top: 2rem; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 1rem; }
        .mt-3 { margin-top: 1rem; }
        .d-flex { display: flex; }
        .justify-between { justify-content: space-between; }
        .align-center { align-items: center; }
