        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            min-height: 100vh;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #a5d8ff; transform: translateY(-2px); }
        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; }
        .text-highlight { color: #ffd43b; font-weight: bold; }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #e03131, #c22525);
            color: white;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(224, 49, 49, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #c22525, #a61e1e);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(224, 49, 49, 0.5);
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, #ff6b6b, #ffd93d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b6b;
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffd93d;
            cursor: pointer;
        }
        .breadcrumb {
            background: rgba(30, 30, 46, 0.8);
            padding: 12px 0;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child):after {
            content: '>';
            margin: 0 10px;
            color: #888;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(circle at center, rgba(26, 26, 46, 0.9), rgba(10, 10, 10, 1)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            border-bottom: 3px solid #e03131;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ffd93d, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 60px;
        }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
        }
        .main-content h2 {
            font-size: 2.5rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
            color: #ffd93d;
        }
        .main-content h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #4dabf7;
        }
        .main-content h4 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: #a5d8ff;
        }
        .main-content p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .main-content blockquote {
            border-left: 5px solid #e03131;
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            background: rgba(50, 50, 70, 0.3);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .main-content ul, .main-content ol {
            padding-left: 25px;
            margin-bottom: 1.5em;
        }
        .main-content li { margin-bottom: 0.5em; }
        .featured-img {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            margin: 30px 0;
            border: 3px solid #444;
        }
        .sidebar {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ffd93d;
            padding-bottom: 8px;
            border-bottom: 1px solid #555;
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 25px;
            border: 2px solid #555;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            border-radius: 25px;
        }
        .rating-form .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #555;
        }
        .rating-form .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-form .stars i:hover,
        .rating-form .stars i.active { color: #ffd93d; }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #555;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .site-footer {
            background: #0a0a0a;
            padding: 50px 0 20px;
            border-top: 3px solid #e03131;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffd93d;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #444;
        }
        friend-link:last-child { border-bottom: none; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .update-time {
            background: rgba(224, 49, 49, 0.1);
            padding: 10px 20px;
            border-radius: 10px;
            margin: 20px 0;
            display: inline-block;
            color: #ffd93d;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            .main-content h2 { font-size: 2rem; }
            .main-content h3 { font-size: 1.6rem; }
        }
