        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-weight: 800; color: #ff4655; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; margin-top: 2rem; text-shadow: 0 0 15px rgba(255, 70, 85, 0.5); }
        h2 { font-size: 2.2rem; border-left: 5px solid #ff4655; padding-left: 15px; margin-top: 3rem; }
        h3 { font-size: 1.8rem; color: #4fc3f7; margin-top: 2.5rem; }
        h4 { font-size: 1.4rem; color: #b388ff; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #4fc3f7; text-decoration: none; transition: color 0.3s, transform 0.3s; }
        a:hover { color: #ff4655; transform: translateY(-2px); }
        .highlight { background: linear-gradient(90deg, transparent, rgba(255, 70, 85, 0.1), transparent); padding: 0.5rem 1rem; border-radius: 4px; }
        strong { color: #ffb74d; }
        em { color: #a5d6a7; }
        .lead { font-size: 1.3rem; color: #bbbbbb; font-weight: 300; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, #ff4655, #ff8a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s;
        }
        .my-logo:hover {
            filter: drop-shadow(0 0 10px #ff4655);
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .main-nav a:hover, .main-nav a.active {
            background: #ff4655;
            color: #000;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(0, 0, 0, 0.98);
                padding: 2rem;
                transition: left 0.4s ease;
                z-index: 999;
            }
            .main-nav.active { left: 0; }
            .main-nav ul { flex-direction: column; gap: 1rem; }
            .hamburger { display: block; }
        }
        .breadcrumb {
            padding: 1rem 0;
            color: #888;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #aaa; }
        .search-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            border: 1px solid #333;
            transition: border-color 0.3s;
        }
        .search-box:focus-within { border-color: #4fc3f7; }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1rem;
            outline: none;
            padding: 0.5rem;
        }
        .search-box button {
            background: #4fc3f7;
            color: #000;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #29b6f6; }
        .sidebar {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 2rem;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget-title {
            color: #ffb74d;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #333;
        }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #555;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i.active, .stars i:hover { color: #ffc107; }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(45deg, #ff4655, #ff8a00);
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .comment-form button:hover { transform: translateY(-3px); }
        .article-image {
            border-radius: 10px;
            overflow: hidden;
            margin: 2.5rem auto;
            border: 3px solid #ff4655;
            box-shadow: 0 10px 30px rgba(255, 70, 85, 0.3);
            max-width: 800px;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.9rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
        }
        .related-links { padding: 1.5rem; background: rgba(255, 70, 85, 0.05); border-radius: 10px; }
        .related-links ul { list-style: none; }
        .related-links li { margin-bottom: 0.8rem; padding-left: 1.2rem; position: relative; }
        .related-links li:before { content: '➤'; color: #ff4655; position: absolute; left: 0; }
        .site-footer {
            background: #0a0a0f;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #222;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-title { color: #ff4655; margin-bottom: 1.5rem; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.03);
            padding: 1rem;
            margin-bottom: 0.8rem;
            border-radius: 6px;
            border-left: 4px solid #4fc3f7;
            transition: all 0.3s;
        }
        friend-link:hover { background: rgba(79, 195, 247, 0.1); transform: translateX(5px); }
        .copyright {
            text-align: center;
            color: #666;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #222;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .p-3 { padding: 1.5rem; }
        .rounded { border-radius: 10px; }
