        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff7b84;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff4655, #ff7b84);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(255, 70, 85, 0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #1a1a2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-left: 4px solid #ff4655;
            background: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #fff;
            line-height: 1.2;
            background: linear-gradient(90deg, #fff, #ff4655);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #ff7b84;
            border-left: 5px solid #ff4655;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #e0e0e0;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255,70,85,0.1), rgba(30,30,46,0.9));
            border-left: 5px solid #ff4655;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid #444;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #333;
        }
        .widget h3 {
            margin-top: 0;
            color: #ff7b84;
            font-size: 1.5rem;
        }
        .search-form input {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 2px solid #444;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 15px;
            padding: 15px;
            background: linear-gradient(90deg, #ff4655, #ff7b84);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
        }
        .rating-widget .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #444;
            cursor: pointer;
        }
        .rating-widget .stars .star {
            transition: color 0.2s;
        }
        .rating-widget .stars .star:hover,
        .rating-widget .stars .star.active {
            color: #ffcc00;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 2px solid #444;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #4655ff, #7b84ff);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
            padding: 30px;
            background: rgba(20, 20, 35, 0.9);
            border-radius: 15px;
        }
        .web-link {
            padding: 15px;
            background: rgba(255,70,85,0.05);
            border-radius: 8px;
            border: 1px solid #333;
            transition: transform 0.3s, border-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #ff4655;
        }
        .web-link a {
            color: #e0e0e0;
            font-weight: 500;
        }
        .web-link a:hover {
            color: #ff7b84;
        }
        .site-footer {
            background: #0a0a0a;
            padding: 40px 0 20px;
            border-top: 2px solid #ff4655;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #aaa;
        }
        .copyright {
            color: #666;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(90deg, #ff4655, #ff7b84);
            color: white;
            border-radius: 8px;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            margin: 10px 0;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255,70,85,0.4);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #333;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: scale(1.05);
            border-color: #ff4655;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ff4655;
            margin-bottom: 15px;
        }
