        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #f94b4b;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff6b6b;
            text-shadow: 0 0 8px rgba(249, 75, 75, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0c0f17 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #f94b4b;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f94b4b, #ff9a3d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .my-logo a:hover {
            filter: brightness(1.2);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #b0b7c3;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #fff;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f94b4b;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: #151a24;
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #8a9bb2;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: #1a1f2e;
                flex-direction: column;
                transition: right 0.4s ease;
                padding: 2rem;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: radial-gradient(circle at center, #1e2535 0%, #0f1419 70%);
            margin-bottom: 3rem;
            border-radius: 10px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #f94b4b, #ff9a3d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #2a3243;
            border-radius: 50px 0 0 50px;
            background: #151a24;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(90deg, #f94b4b, #ff9a3d);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: filter 0.3s;
        }
        .search-box button:hover {
            filter: brightness(1.2);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #151a24;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        h1, h2, h3, h4 {
            color: #fff;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 3.5rem; }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #f94b4b;
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff9a3d;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #8a9bb2;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        strong {
            color: #ff9a3d;
            font-weight: 700;
        }
        .highlight {
            background: rgba(249, 75, 75, 0.1);
            border-left: 4px solid #f94b4b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .img-container img {
            border-radius: 10px;
            border: 3px solid #2a3243;
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .img-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #8a9bb2;
            font-size: 0.95rem;
        }
        .quote {
            font-size: 1.3rem;
            color: #ff9a3d;
            text-align: center;
            padding: 2rem;
            border-top: 2px solid #2a3243;
            border-bottom: 2px solid #2a3243;
            margin: 3rem 0;
            font-weight: 300;
        }
        aside {
            background: #151a24;
            border-radius: 12px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3243;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #2a3243;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .link-list i {
            color: #f94b4b;
        }
        .interactive-section {
            background: #151a24;
            border-radius: 12px;
            padding: 2.5rem;
            margin-top: 3rem;
        }
        .interactive-section h2 {
            margin-top: 0;
        }
        .rating-widget {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
        }
        .stars i {
            color: #444;
            cursor: pointer;
            font-size: 1.8rem;
            transition: color 0.2s;
        }
        .stars i.active,
        .stars i:hover {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #b0b7c3;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 1rem;
            background: #1e2535;
            border: 1px solid #2a3243;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #f94b4b;
        }
        .btn {
            background: linear-gradient(90deg, #f94b4b, #ff9a3d);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: filter 0.3s, transform 0.2s;
        }
        .btn:hover {
            filter: brightness(1.2);
            transform: translateY(-2px);
        }
        .site-footer {
            background: #0a0d14;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #2a3243;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f94b4b, #ff9a3d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            color: #8a9bb2;
        }
        friend-link a {
            color: #8a9bb2;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3243;
            color: #6c757d;
            font-size: 0.9rem;
        }
        .update-time {
            color: #ff9a3d;
            font-style: italic;
            margin: 2rem 0;
            text-align: right;
        }
