        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-red: #e62429;
            --primary-blue: #0081cc;
            --dark-bg: #1a1a2e;
            --medium-bg: #16213e;
            --light-bg: #0f3460;
            --text-light: #e6e6e6;
            --text-gray: #b0b0b0;
            --accent-gold: #ffd700;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--medium-bg) 50%, var(--light-bg) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        .site-header {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary-red);
            padding: 1rem 2rem;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-red);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 3px 3px 0 #000;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: var(--accent-gold);
            transform: scale(1.05);
        }
        .my-logo i {
            font-size: 2rem;
        }
        .breadcrumb {
            background: var(--medium-bg);
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary-red);
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--text-gray);
        }
        .main-nav {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
        .nav-menu {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }
        .nav-menu a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .nav-menu a:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-section {
            background: linear-gradient(135deg, var(--medium-bg), var(--light-bg));
            padding: 3rem 2rem;
            margin: 2rem auto;
            border-radius: 12px;
            max-width: 800px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--primary-blue);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-red);
            background: rgba(255, 255, 255, 0.15);
        }
        .search-btn {
            padding: 1rem 2rem;
            background: linear-gradient(45deg, var(--primary-red), #ff4757);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230, 36, 41, 0.4);
        }
        .main-content {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 16px;
            padding: 3rem;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        h1 {
            color: var(--accent-gold);
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--primary-red);
            font-size: 2.2rem;
            margin: 3rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 5px solid var(--primary-blue);
        }
        h3 {
            color: var(--primary-blue);
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            color: var(--text-light);
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-gray);
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-light);
            font-weight: 500;
            line-height: 1.8;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(0, 129, 204, 0.1);
            border-radius: 8px;
            border-left: 4px solid var(--primary-blue);
        }
        .highlight {
            background: linear-gradient(45deg, rgba(230, 36, 41, 0.1), rgba(255, 215, 0, 0.1));
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px solid rgba(230, 36, 41, 0.3);
        }
        .note {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2.5rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }
        .featured-image:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .widget-title {
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-red);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2rem;
            color: var(--text-gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
            transform: scale(1.2);
        }
        .rating-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(45deg, var(--primary-blue), #00b4d8);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            margin-top: 1rem;
        }
        .rating-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 129, 204, 0.4);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input,
        .form-textarea {
            padding: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            background: rgba(255, 255, 255, 0.1);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 1rem 2rem;
            background: linear-gradient(45deg, var(--primary-red), #ff6b6b);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 36, 41, 0.4);
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
        }
        .link-card {
            background: rgba(26, 26, 46, 0.8);
            padding: 1.5rem;
            border-radius: 8px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-decoration: none;
            display: block;
        }
        .link-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-red);
            box-shadow: 0 8px 25px rgba(230, 36, 41, 0.3);
        }
        .link-card h4 {
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        .link-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin-bottom: 0;
        }
        .site-footer {
            background: rgba(15, 20, 40, 0.95);
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-red);
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .footer-links a:hover {
            color: var(--primary-red);
            padding-left: 0.5rem;
        }
        friend-link {
            display: block;
            background: rgba(26, 26, 46, 0.8);
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 8px;
            border-left: 4px solid var(--primary-blue);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(26, 26, 46, 1);
            transform: translateX(5px);
        }
        friend-link a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--accent-gold);
            font-weight: 600;
            margin-left: 0.5rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 3rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background: rgba(26, 26, 46, 0.95);
                padding: 1rem;
                border-radius: 8px;
            }
            .nav-menu.active {
                display: flex;
            }
            .main-nav {
                width: 100%;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input,
            .search-btn {
                width: 100%;
            }
            .article-content {
                padding: 2rem 1.5rem;
            }
            .related-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .site-header {
                padding: 1rem;
            }
            .my-logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .featured-image {
                margin: 1.5rem 0;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; color: var(--accent-gold); }
        .text-red { color: var(--primary-red); }
        .text-blue { color: var(--primary-blue); }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
