*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f4f8;
            color: #1a1a2e;
            line-height: 1.7;
        }
        a {
            color: #e10600;
            text-decoration: none;
            transition: all .3s ease;
        }
        a:hover {
            text-decoration: underline;
            color: #b30500;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            letter-spacing: -1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo span {
            color: #e10600;
            font-style: italic;
        }
        .my-logo small {
            font-size: .55em;
            color: #aaa;
            font-weight: 400;
            display: block;
            letter-spacing: 1px;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
        }
        .nav-menu li a {
            color: #ddd;
            padding: 10px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: .9rem;
            transition: background .3s, color .3s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-menu li a:hover {
            background: #e10600;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 8px;
        }
        .breadcrumb {
            background: #fff;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
            font-size: .85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: '›';
            color: #999;
            margin: 0 6px;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb .active {
            color: #1a1a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('https://images.unsplash.com/photo-1541447271487-09612b3f49f7?q=80&w=1470&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            color: #fff;
            text-align: center;
            padding: 100px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .hero h1 span {
            color: #e10600;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #ddd;
        }
        .hero-btn {
            background: #e10600;
            color: #fff;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            display: inline-block;
            border: none;
            cursor: pointer;
            transition: all .3s;
        }
        .hero-btn:hover {
            background: #ff1a1a;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(225, 6, 0, .4);
            text-decoration: none;
            color: #fff;
        }
        .main-wrap {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 50px 0;
        }
        .article-content {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
        }
        .article-content h2 {
            font-size: 2rem;
            color: #1a1a2e;
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e10600;
            position: relative;
        }
        .article-content h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #e10600;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 35px 0 15px;
            font-weight: 700;
        }
        .article-content h4 {
            font-size: 1.15rem;
            color: #555;
            margin: 25px 0 10px;
            font-weight: 600;
        }
        .article-content p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            color: #2d2d44;
        }
        .article-content img {
            max-width: 100%;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
        }
        .info-box {
            background: #f8f9fa;
            border-left: 4px solid #e10600;
            padding: 20px 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
            font-size: .95rem;
        }
        .info-box strong {
            color: #e10600;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: .95rem;
        }
        .data-table th {
            background: #1a1a2e;
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #eee;
        }
        .data-table tr:hover td {
            background: #f9f0f0;
        }
        .blockquote {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            position: relative;
            font-style: italic;
            border: 1px solid #eee;
        }
        .blockquote::before {
            content: '"';
            font-size: 4rem;
            color: #e10600;
            position: absolute;
            top: -10px;
            left: 15px;
            font-family: Georgia, serif;
        }
        .blockquote p {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        .blockquote footer {
            font-style: normal;
            font-size: .9rem;
            color: #666;
            font-weight: 600;
        }
        .search-section,
        .comment-section,
        .score-section {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border: 1px solid #e0e0e0;
        }
        .search-section form,
        .comment-section form,
        .score-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-section input[type="text"],
        .comment-section textarea,
        .score-section select {
            flex: 1;
            min-width: 200px;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color .3s;
        }
        .search-section input[type="text"]:focus,
        .comment-section textarea:focus,
        .score-section select:focus {
            outline: none;
            border-color: #e10600;
        }
        .btn-submit {
            background: #e10600;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: .95rem;
            cursor: pointer;
            transition: all .3s;
        }
        .btn-submit:hover {
            background: #b30500;
            transform: scale(1.03);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
        }
        .widget h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #1a1a2e;
            border-left: 4px solid #e10600;
            padding-left: 12px;
        }
        .widget ul {
            list-style: none;
        }
        .widget ul li {
            margin-bottom: 10px;
            padding: 4px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .widget ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #444;
            font-size: .95rem;
        }
        .widget ul li a:hover {
            color: #e10600;
            padding-left: 5px;
        }
        .widget ul li a i {
            color: #e10600;
            font-size: .8rem;
        }
        .site-footer {
            background: #1a1a2e;
            color: #aaa;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        .footer-grid p,
        .footer-grid li {
            font-size: .9rem;
            margin-bottom: 8px;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li a {
            color: #aaa;
        }
        .footer-grid ul li a:hover {
            color: #e10600;
        }
        friend-link {
            display: block;
            background: #20203a;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            font-size: .9rem;
            color: #ccc;
            border-left: 4px solid #e10600;
        }
        friend-link a {
            color: #e10600;
            margin: 0 6px;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            font-size: .85rem;
            color: #777;
        }
        .copyright a {
            color: #999;
        }
        @media (max-width: 992px) {
            .main-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 20px 0;
            }
            .nav-menu.show {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .article-content {
                padding: 20px;
            }
            .article-content h2 {
                font-size: 1.5rem;
            }
            .article-content h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                gap: 10px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 60px 15px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 15px;
            }
        }
