* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-red: #d32f2f;
            --primary-blue: #1976d2;
            --dark-bg: #0d1117;
            --light-bg: #f5f5f5;
            --text-primary: #e1e1e1;
            --text-secondary: #aaa;
            --accent-yellow: #ffc107;
            --spider-web: rgba(255, 255, 255, 0.05);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            background-image:
                radial-gradient(circle at 25% 25%, var(--spider-web) 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, var(--spider-web) 2px, transparent 2px);
            background-size: 40px 40px;
        }
        a {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0a0e14 0%, #1a1f29 100%);
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .my-logo span {
            color: var(--accent-yellow);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: var(--text-primary);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-red);
            transition: var(--transition);
        }
        nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-primary);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-yellow);
        }
        .search-box {
            margin: 2rem auto;
            max-width: 800px;
            background: rgba(30, 35, 45, 0.8);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 5px solid var(--primary-blue);
        }
        .search-box h3 {
            margin-bottom: 1rem;
            color: var(--accent-yellow);
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #444;
            border-radius: 8px;
            background: #1a1f29;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, var(--primary-red), #c62828);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #c62828, var(--primary-red));
            transform: translateY(-2px);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: rgba(20, 25, 35, 0.85);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border: 1px solid #333;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 0.7rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin: 2.5rem 0 1.2rem 0;
            padding-left: 0.5rem;
            border-left: 5px solid var(--primary-red);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--text-primary);
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.2rem;
            background: rgba(25, 118, 210, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-blue);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(255, 193, 7, 0.15);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 5px solid var(--accent-yellow);
        }
        .featured-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            border: 3px solid var(--primary-red);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            transition: var(--transition);
        }
        .featured-img:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: rgba(30, 35, 45, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 4px solid var(--primary-red);
            transition: var(--transition);
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5);
        }
        .card h4 {
            color: var(--accent-yellow);
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            padding: 2rem;
            background: rgba(211, 47, 47, 0.1);
            border-radius: 12px;
            margin: 2rem 0;
            border-left: 5px solid var(--primary-red);
            color: #ffccbc;
        }
        .stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-box {
            flex: 1;
            min-width: 200px;
            background: linear-gradient(135deg, #1a237e, #283593);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            color: white;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-yellow);
        }
        .link-list {
            columns: 2;
            column-gap: 2rem;
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            break-inside: avoid;
        }
        .interactive-section {
            background: rgba(25, 30, 40, 0.9);
            padding: 2rem;
            border-radius: 16px;
            margin: 3rem 0;
            border: 1px solid #444;
        }
        .rating-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-yellow);
        }
        .interactive-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .interactive-form input,
        .interactive-form textarea {
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #555;
            background: #1a1f29;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .interactive-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .interactive-form button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, var(--primary-blue), #1565c0);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            justify-self: start;
        }
        .interactive-form button:hover {
            background: linear-gradient(90deg, #1565c0, var(--primary-blue));
            transform: translateY(-2px);
        }
        footer {
            background: #0a0e14;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--primary-red);
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-yellow);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.7rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            margin: 0.3rem;
            border: 1px solid #333;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255, 193, 7, 0.1);
            border-color: var(--accent-yellow);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--accent-yellow);
            font-weight: bold;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .header-container { flex-wrap: wrap; }
            nav ul { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }
            nav ul {
                flex-direction: column;
                gap: 0.8rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .link-list {
                columns: 1;
            }
            .stats {
                flex-direction: column;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
