* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a0a;
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #e10600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b6b;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            border-bottom: 3px solid #e10600;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #e10600, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 5px 10px;
            border: 2px solid #e10600;
            border-radius: 8px;
        }
        .my-logo:hover {
            background: linear-gradient(90deg, #ffffff, #e10600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: #ddd;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover {
            background-color: #e10600;
            color: #fff;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .hero {
            background: url('https://images.unsplash.com/photo-1584316211555-4c31b866e86a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 80px 20px;
            text-align: center;
            border-bottom: 5px solid #e10600;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 2px 2px 5px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #f0f0f0;
        }
        main {
            padding: 40px 0;
            background-color: #111;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1a1a1a;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.5rem;
            color: #e10600;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff6b6b;
            margin: 25px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #f8c555;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #ccc;
        }
        .highlight {
            background-color: #2a2a2a;
            border-left: 5px solid #e10600;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-wrapper {
            text-align: center;
            margin: 30px 0;
        }
        .image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #444;
            transition: transform 0.5s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
            padding: 15px;
            background-color: #222;
            border-radius: 8px;
        }
        .link-list a {
            background-color: #333;
            padding: 10px 15px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .link-list a:hover {
            background-color: #e10600;
        }
        aside {
            background-color: #1a1a1a;
            padding: 25px;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #444;
            border-radius: 6px;
            background-color: #222;
            color: #fff;
            font-size: 1rem;
        }
        button {
            padding: 12px 20px;
            background-color: #e10600;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #ff3b30;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .active {
            color: #f8c555;
        }
        footer {
            background-color: #000;
            padding: 40px 0 20px;
            border-top: 3px solid #333;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #fff;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: #ccc;
            padding: 8px;
            background-color: #222;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background-color: #333;
            color: #e10600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .update-time {
            color: #f8c555;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            .header-top { flex-direction: column; align-items: flex-start; }
            .hamburger { display: block; }
            nav ul {
                flex-direction: column;
                display: none;
                width: 100%;
                margin-top: 15px;
            }
            nav ul.active {
                display: flex;
            }
            .hero { padding: 50px 20px; }
            article, aside { padding: 20px; }
        }
