* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
            color: #1a1a2e;
            line-height: 1.8;
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            padding: 18px 0;
            border-bottom: 4px solid #ff4757;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: 1px;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo span {
            font-weight: 300;
            font-size: 14px;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            font-size: 28px;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav a {
            color: #ddd;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .nav a:hover {
            color: #fff;
            background: rgba(255, 71, 87, 0.2);
            border-color: #ff4757;
            transform: translateY(-2px);
        }
        .nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
            font-size: 14px;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #888;
            font-size: 18px;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #ff4757;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #555;
        }
        .main {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .article {
            background: #fff;
            border-radius: 16px;
            padding: 40px 36px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }
        .article h1 {
            font-size: 36px;
            font-weight: 800;
            color: #0f0c29;
            margin-bottom: 12px;
            line-height: 1.3;
            border-left: 6px solid #ff4757;
            padding-left: 20px;
        }
        .article .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #777;
            font-size: 14px;
            margin-bottom: 28px;
            border-bottom: 1px solid #eee;
            padding-bottom: 18px;
        }
        .article .meta i {
            margin-right: 6px;
            color: #ff4757;
        }
        .article h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a2e;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #feca57;
        }
        .article h3 {
            font-size: 22px;
            font-weight: 600;
            color: #2d2d44;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .article h4 {
            font-size: 18px;
            font-weight: 600;
            color: #3d3d5c;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        .article p {
            margin-bottom: 18px;
            color: #2d2d44;
        }
        .article ul,
        .article ol {
            margin-bottom: 20px;
            padding-left: 26px;
            color: #2d2d44;
        }
        .article li {
            margin-bottom: 8px;
        }
        .article strong {
            color: #0f0c29;
            font-weight: 700;
        }
        .article .highlight {
            background: linear-gradient(135deg, #fff3cd, #ffeaa7);
            padding: 20px 24px;
            border-radius: 12px;
            border-left: 6px solid #feca57;
            margin: 24px 0;
        }
        .article .highlight i {
            color: #f39c12;
            margin-right: 8px;
        }
        .article .tip-box {
            background: #eef2ff;
            padding: 20px 24px;
            border-radius: 12px;
            border-left: 6px solid #4a6cf7;
            margin: 24px 0;
        }
        .article .tip-box i {
            color: #4a6cf7;
            margin-right: 8px;
        }
        .article .interview-box {
            background: #fdf2f2;
            padding: 24px 28px;
            border-radius: 12px;
            border-left: 6px solid #ff4757;
            margin: 28px 0;
        }
        .article .interview-box p {
            font-style: italic;
        }
        .article .img-wrapper {
            margin: 28px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .article .img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        .article .img-wrapper figcaption {
            background: #f1f3f5;
            padding: 12px 18px;
            font-size: 14px;
            color: #555;
            text-align: center;
        }
        .article .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .article .link-list-inline a {
            background: #f1f3f5;
            padding: 6px 16px;
            border-radius: 20px;
            color: #302b63;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .article .link-list-inline a:hover {
            background: #302b63;
            color: #fff;
            border-color: #302b63;
            transform: translateY(-2px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 14px;
            padding: 24px 22px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .sidebar-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0f0c29;
            margin-bottom: 16px;
            border-bottom: 2px solid #feca57;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card a {
            color: #302b63;
            text-decoration: none;
            font-size: 15px;
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid #f1f3f5;
            transition: color 0.3s, padding-left 0.3s;
        }
        .sidebar-card a:hover {
            color: #ff4757;
            padding-left: 8px;
        }
        .sidebar-card a i {
            margin-right: 8px;
            color: #ff4757;
            font-size: 12px;
        }
        .search-form {
            display: flex;
            gap: 0;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #e9ecef;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #ff4757;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            outline: none;
            font-size: 15px;
            background: #fff;
        }
        .search-form button {
            padding: 12px 20px;
            background: #ff4757;
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #e0404e;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 14px;
            padding: 28px 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-top: 40px;
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0f0c29;
            margin-bottom: 18px;
            border-bottom: 2px solid #feca57;
            padding-bottom: 10px;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 15px;
            outline: none;
            transition: border-color 0.3s;
            margin-bottom: 14px;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #ff4757;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form .form-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
        }
        .btn {
            padding: 12px 32px;
            background: linear-gradient(135deg, #ff4757, #e0404e);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 71, 87, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #ff4757;
            color: #ff4757;
        }
        .btn-outline:hover {
            background: #ff4757;
            color: #fff;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 32px;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 18px;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.3s, transform 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #feca57;
            transform: scale(1.1);
        }
        .rating-stars .active {
            color: #feca57;
        }
        .footer {
            background: #0f0c29;
            color: #ccc;
            padding: 48px 0 28px;
            border-top: 4px solid #ff4757;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer h4 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 16px;
            border-bottom: 2px solid #ff4757;
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer p {
            font-size: 14px;
            line-height: 1.7;
        }
        .footer a {
            color: #feca57;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: #ff6b6b;
        }
        .footer .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            list-style: none;
        }
        .footer .friend-links li {
            margin-bottom: 4px;
        }
        .footer .friend-links a {
            background: rgba(255, 255, 255, 0.06);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 13px;
            color: #ccc;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s;
        }
        .footer .friend-links a:hover {
            background: #ff4757;
            color: #fff;
            border-color: #ff4757;
        }
        .footer .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #888;
        }
        .footer .copyright strong {
            color: #feca57;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                margin-top: 14px;
                padding-top: 14px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav.show {
                display: flex;
            }
            .nav a {
                padding: 10px 12px;
                font-size: 15px;
            }
            .article {
                padding: 28px 18px;
            }
            .article h1 {
                font-size: 26px;
                padding-left: 14px;
            }
            .article h2 {
                font-size: 22px;
            }
            .article h3 {
                font-size: 18px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .breadcrumb {
                font-size: 12px;
                padding: 10px 0;
            }
            .rating-stars {
                font-size: 28px;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 22px;
            }
            .article h1 {
                font-size: 22px;
            }
            .article {
                padding: 18px 12px;
            }
            .container {
                padding: 0 12px;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        html {
            scroll-behavior: smooth;
        }
