        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #f0f0f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff7b85;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, #ff4655 0%, transparent 100%);
            padding: 2px 8px;
            border-radius: 3px;
        }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: rgba(20, 20, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff4655, #ff7b85);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #ccc;
            font-weight: 600;
        }
        .nav-desktop a:hover {
            color: #ff4655;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff4655;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 30, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #333;
            color: #ccc;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(40, 40, 55, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb span {
            color: #ff4655;
        }
        .hero {
            padding: 80px 20px;
            background: radial-gradient(circle at top right, #2d0b0f 0%, transparent 50%);
            text-align: center;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff4655, #ffb347);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
        }
        .subtitle {
            font-size: 1.3rem;
            color: #aaa;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: rgba(30, 30, 45, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #ff7b85;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffb347;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #6cb2eb;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            color: #ddd;
        }
        .image-wrapper {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #444;
        }
        .image-wrapper img {
            width: 100%;
            transition: transform 0.5s;
        }
        .image-wrapper:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #888;
            padding: 10px;
            background: rgba(0,0,0,0.3);
        }
        .sidebar {
            background: rgba(30, 30, 45, 0.7);
            border-radius: 15px;
            padding: 30px;
            height: fit-content;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #ff4655;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            background: #222;
            color: #fff;
        }
        .search-button {
            background: #ff4655;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #ff2e3f;
        }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active,
        .star:hover {
            color: #ffb347;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: #222;
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 100px;
        }
        .submit-button {
            background: #ff4655;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background 0.3s;
        }
        .submit-button:hover {
            background: #ff2e3f;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .link-list li:before {
            content: '🔥';
            position: absolute;
            left: 0;
        }
        .site-footer {
            margin-top: auto;
            background: #0a0a0f;
            padding: 60px 20px 30px;
            border-top: 3px solid #ff4655;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            color: #ff7b85;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: #6cb2eb;
        }
        friend-link:hover {
            color: #ff7b85;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .update-time {
            color: #ffb347;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .main-content, .sidebar {
                padding: 25px;
            }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            h4 { font-size: 1.2rem; }
            .section-padding { padding: 40px 0; }
        }
