        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0c0c14;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #f0131e;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff6b6b;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1.5rem 0;
            border-bottom: 3px solid #f0131e;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(240, 19, 30, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f0131e, #ff8a00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-family: 'Arial Black', sans-serif;
        }
        .logo a {
            background: none;
            color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #ccc;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f0131e;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
        }
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #f0131e;
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a1a2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #ccc;
            padding: 1rem;
            border-bottom: 1px solid #333;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: #22223a;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #11111a;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .breadcrumb span {
            color: #f0131e;
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 26, 46, 0.8);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #f0131e;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #ff8a00;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #333;
        }
        h3 {
            font-size: 1.5rem;
            color: #4dabf7;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(240,19,30,0.1), transparent);
            border-left: 4px solid #f0131e;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #fff;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .image-container img {
            max-height: 500px;
            object-fit: cover;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .image-caption {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .internal-link {
            background-color: #22223a;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin: 0.5rem 0;
            display: inline-block;
            border: 1px solid #444;
        }
        .internal-link:hover {
            background-color: #33335a;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(26, 26, 46, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #333;
        }
        .widget h3 {
            color: #ff8a00;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .search-form input {
            width: 100%;
            padding: 0.8rem;
            border-radius: 25px;
            border: 2px solid #444;
            background-color: #111;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 0.8rem;
            padding: 0.8rem;
            background: linear-gradient(90deg, #f0131e, #c1121f);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .rating-widget .stars i {
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #ffcc00;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border-radius: 10px;
            border: 2px solid #444;
            background-color: #111;
            color: #fff;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            margin-top: 0.8rem;
            padding: 0.8rem;
            background: linear-gradient(90deg, #1e3c72, #2a5298);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .comment-form button:hover {
            transform: scale(1.05);
        }
        .footer-links {
            background-color: #11111a;
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 3px solid #333;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #1a1a2e;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #f0131e;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(240, 19, 30, 0.3);
        }
        .copyright {
            text-align: center;
            padding: 2rem;
            background-color: #0a0a10;
            color: #888;
            font-size: 0.9rem;
            border-top: 1px solid #333;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 900;
            color: #fff;
        }
        .spacer {
            height: 2rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
