        * {
            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, #0f1923 0%, #1a2b3c 100%);
            color: #e8e8e8;
            overflow-x: hidden;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #fff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 25, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff4655, #0f1923);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding: 5px 0;
        }
        .logo a {
            background: none;
        }
        .logo span {
            color: #ff4655;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            width: 0;
            height: 2px;
            background: #ff4655;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: calc(100% - 24px);
        }
        .nav-links a.active {
            background: rgba(255, 70, 85, 0.1);
            color: #ff4655;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ff4655;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        main {
            padding: 40px 0;
            background: rgba(26, 43, 60, 0.7);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #3a506b;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #aaa;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            font-size: 1.1rem;
        }
        h2, h3 {
            color: #fff;
            margin-top: 2.5em;
            margin-bottom: 0.8em;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff4655;
        }
        h2 {
            font-size: 2.2rem;
        }
        h3 {
            font-size: 1.7rem;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #ccc;
            background: rgba(255,70,85,0.05);
            padding: 25px;
            border-left: 5px solid #ff4655;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5em;
        }
        .highlight {
            background: rgba(255,70,85,0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #ff4655;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .img-caption {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 10px;
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #3a506b;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #ff4655;
        }
        .stat-card h4 {
            color: #ff4655;
            margin-bottom: 10px;
        }
        aside {
            background: rgba(15, 25, 35, 0.8);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #3a506b;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            border-bottom: none;
            padding-bottom: 0;
        }
        .search-box {
            display: flex;
            margin-bottom: 20px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #3a506b;
            background: rgba(255,255,255,0.05);
            color: #fff;
            border-radius: 4px 0 0 4px;
            outline: none;
        }
        .search-box button {
            background: #ff4655;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #e63e4d;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 12px;
        }
        .quick-links a {
            display: block;
            padding: 10px 15px;
            background: rgba(255,255,255,0.03);
            border-radius: 4px;
            border-left: 3px solid transparent;
        }
        .quick-links a:hover {
            background: rgba(255,70,85,0.1);
            border-left-color: #ff4655;
        }
        .rating-widget, .comments-widget {
            background: rgba(255,255,255,0.05);
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #3a506b;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
            transform: scale(1.1);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border: 1px solid #3a506b;
            border-radius: 4px;
            color: #fff;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 120px;
            outline: none;
        }
        .comment-form button {
            background: #ff4655;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #e63e4d;
        }
        .comment {
            padding: 20px;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            margin-top: 20px;
            border-left: 4px solid #3a506b;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 40px 0;
            border-top: 1px solid #3a506b;
            border-bottom: 1px solid #3a506b;
            margin-top: 60px;
        }
        .web-link {
            padding: 15px;
            background: rgba(255,255,255,0.03);
            border-radius: 6px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,70,85,0.1);
        }
        footer {
            padding: 40px 0 20px;
            text-align: center;
            color: #aaa;
            font-size: 0.95rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 25px 0;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            font-size: 1.2rem;
        }
        .social-icons a:hover {
            background: #ff4655;
            transform: translateY(-5px);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: rgba(15, 25, 35, 0.98);
                width: 250px;
                height: calc(100vh - 80px);
                padding: 40px 30px;
                transition: right 0.4s ease;
                box-shadow: -5px 0 20px rgba(0,0,0,0.3);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: flex;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
            .header-content {
                padding: 0 15px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .longtail-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
