        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #6c5ce7;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: transparent;
            background: linear-gradient(90deg, #ff6b6b, #6c5ce7, #00cec9);
            -webkit-background-clip: text;
            background-clip: text;
            text-decoration: none;
            letter-spacing: 2px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .main-nav a {
            color: #a29bfe;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: #6c5ce7;
            color: white;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6c5ce7;
        }
        .breadcrumb {
            background-color: #1a1a2e;
            padding: 1rem 2rem;
            font-size: 0.95rem;
            border-bottom: 1px solid #33334d;
        }
        .breadcrumb a {
            color: #74b9ff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
        .main-content {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid #33334d;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-align: center;
            background: linear-gradient(90deg, #fd79a8, #a29bfe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.5rem;
            color: #6c5ce7;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 3px dashed #6c5ce7;
        }
        h3 {
            font-size: 1.8rem;
            color: #00cec9;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #fd79a8;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #74b9ff;
            font-weight: 300;
            margin-bottom: 2.5rem;
            text-align: center;
            padding: 1rem;
            border-left: 5px solid #6c5ce7;
            background: rgba(108, 92, 231, 0.1);
        }
        .highlight {
            background-color: rgba(255, 234, 167, 0.15);
            border-left: 5px solid #ffeaa7;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: #ffeaa7;
        }
        strong {
            color: #6c5ce7;
            font-weight: 700;
        }
        em {
            color: #55efc4;
            font-style: italic;
        }
        a.content-link {
            color: #74b9ff;
            text-decoration: none;
            border-bottom: 1px dotted #74b9ff;
            transition: color 0.3s;
        }
        a.content-link:hover {
            color: #0984e3;
            border-bottom-style: solid;
        }
        .article-image {
            width: 100%;
            margin: 3rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border: 3px solid #6c5ce7;
        }
        .article-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .article-image:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #a29bfe;
            padding: 1rem;
            background-color: rgba(26, 26, 46, 0.9);
        }
        .sidebar {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            padding: 2rem;
            height: fit-content;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            border: 1px solid #33334d;
        }
        .widget {
            margin-bottom: 3rem;
        }
        .widget-title {
            color: #fd79a8;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #fd79a8;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-box input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid #6c5ce7;
            background-color: #1a1a2e;
            color: white;
            border-radius: 10px 0 0 10px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #6c5ce7;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #5b4fcf;
        }
        .rating-form, .comment-form {
            background-color: rgba(30, 30, 50, 0.7);
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffeaa7;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #a29bfe;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            background-color: #1a1a2e;
            border: 2px solid #33334d;
            border-radius: 10px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #6c5ce7, #a29bfe);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(108, 92, 231, 0.4);
        }
        .site-footer {
            background: #1a1a2e;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #6c5ce7;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #6c5ce7;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            color: #74b9ff;
            text-decoration: none;
            padding: 0.5rem;
            display: block;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        friend-link a:hover {
            background-color: rgba(108, 92, 231, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #33334d;
            color: #a29bfe;
            font-size: 0.95rem;
        }
        .update-time {
            text-align: center;
            font-size: 0.9rem;
            color: #55efc4;
            margin-top: 2rem;
            padding: 1rem;
            background-color: rgba(85, 239, 196, 0.1);
            border-radius: 10px;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .my-logo {
                order: 0;
                font-size: 2.2rem;
            }
            .main-nav {
                order: 2;
                flex-basis: 100%;
                display: none;
                margin-top: 1.5rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .main-content, .sidebar {
                padding: 2rem;
            }
            .container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
        }
