        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: #0a0a0a;
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #e10600;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        a:hover {
            color: #ff6b6b;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            border-bottom: 3px solid #e10600;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px #e10600;
        }
        .my-logo span {
            color: #e10600;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #ddd;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background: rgba(225, 6, 0, 0.2);
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #111;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #e10600;
        }
        .breadcrumb span {
            color: #666;
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 0 20px #e10600;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1.1rem;
            background: rgba(255,255,255,0.1);
            color: #fff;
            backdrop-filter: blur(10px);
        }
        .search-box button {
            background: #e10600;
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ff3333;
        }
        main {
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #111;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        article h2 {
            color: #e10600;
            font-size: 2.5rem;
            margin-bottom: 25px;
            border-left: 5px solid #e10600;
            padding-left: 15px;
        }
        article h3 {
            color: #fff;
            font-size: 1.8rem;
            margin: 35px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #333;
        }
        article h4 {
            color: #ccc;
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #bbb;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .highlight {
            background: rgba(225, 6, 0, 0.1);
            border-left: 4px solid #e10600;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid #333;
            transition: transform 0.5s;
        }
        .featured-img:hover {
            transform: scale(1.01);
        }
        sidebar {
            background: #111;
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 30px;
        }
        .rating-widget h3, .comment-widget h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .stars i {
            color: #555;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover, .stars i.active {
            color: gold;
        }
        .rating-widget button, .comment-widget button {
            width: 100%;
            padding: 12px;
            background: #e10600;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background: #ff3333;
        }
        .comment-widget textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background: #222;
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            margin-bottom: 15px;
            resize: vertical;
        }
        .update-time {
            background: #222;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 20px;
        }
        footer {
            background: #000;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 3px solid #e10600;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #aaa;
        }
        .footer-section a:hover {
            color: #e10600;
        }
        friend-link {
            display: inline-block;
            background: #222;
            padding: 8px 15px;
            border-radius: 5px;
            margin: 5px;
            border: 1px solid #444;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1a1a;
                padding: 20px;
                border-top: 2px solid #e10600;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            article {
                padding: 25px;
            }
            article h2 {
                font-size: 2rem;
            }
        }
