* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: #f5f5f1;
            color: #1a1a1a;
            line-height: 1.7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #0b0b0d;
            border-bottom: 4px solid #e10600;
            padding: 15px 0;
        }
        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        .my-logo {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #e10600, #ff4d4d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #e10600;
            margin-right: 6px;
        }
        .my-logo a {
            color: #e10600;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            background: none;
            -webkit-text-fill-color: #e10600;
        }
        .top-actions {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .search-box {
            display: flex;
            background: #1d1d20;
            border-radius: 40px;
            padding: 4px 10px;
            border: 1px solid #333;
        }
        .search-box input {
            background: transparent;
            border: none;
            color: #fff;
            padding: 8px 12px;
            width: 180px;
            font-size: 0.9rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #888;
        }
        .search-box button {
            background: #e10600;
            border: none;
            color: white;
            border-radius: 40px;
            padding: 8px 16px;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.85rem;
        }
        .nav-wrapper {
            background: #0b0b0d;
            padding: 8px 0;
            border-bottom: 1px solid #222;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 28px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #ddd;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .nav-menu a:hover {
            color: #e10600;
        }
        .burger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            font-size: 0.8rem;
            padding: 12px 0;
            color: #666;
        }
        .breadcrumb a {
            color: #e10600;
            text-decoration: none;
        }
        .breadcrumb .sep {
            margin: 0 6px;
            color: #aaa;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            margin: 30px 0;
        }
        .main-article {
            background: white;
            padding: 30px;
            border-radius: 18px;
            box-shadow: 0 6px 24px rgba(0,0,0,0.04);
        }
        .main-article h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.8rem;
            line-height: 1.15;
            color: #0b0b0d;
            border-left: 8px solid #e10600;
            padding-left: 22px;
            margin-bottom: 25px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .meta {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .meta span {
            background: #f1f1ef;
            padding: 4px 12px;
            border-radius: 30px;
        }
        .hero-img {
            width: 100%;
            border-radius: 14px;
            margin: 20px 0 24px;
        }
        .hero-img img {
            width: 100%;
            border-radius: 14px;
            display: block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .hero-img figcaption {
            font-size: 0.85rem;
            color: #555;
            margin-top: 6px;
        }
        h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 18px;
            color: #0b0b0d;
            border-bottom: 2px solid #e10600;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 30px 0 12px;
            color: #111;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 10px;
            color: #333;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .highlight {
            background: #fef2f0;
            border-left: 4px solid #e10600;
            padding: 18px 22px;
            border-radius: 8px;
            margin: 24px 0;
        }
        ul, ol {
            margin: 0 0 1.4rem 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .feature-box {
            background: #f8f9fc;
            border: 1px solid #e8e8e8;
            border-radius: 16px;
            padding: 20px;
            margin: 24px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }
        .feature-item {
            background: white;
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            text-align: center;
        }
        .feature-item i {
            color: #e10600;
            font-size: 2rem;
            margin-bottom: 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #0b0b0d;
            color: white;
            padding: 14px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 14px;
            border-bottom: 1px solid #f0f0f0;
        }
        tr:nth-child(even) {
            background: #fafafa;
        }
        .comment-section, .rating-section {
            background: white;
            padding: 30px;
            border-radius: 20px;
            margin-top: 40px;
            box-shadow: 0 6px 24px rgba(0,0,0,0.03);
        }
        .comment-form input, .comment-form textarea, .rating-form input, .rating-form select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 12px;
            font-size: 1rem;
            margin-bottom: 14px;
        }
        .btn {
            background: #e10600;
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn:hover {
            background: #a30400;
            transform: scale(1.02);
        }
        .sidebar {
            background: transparent;
        }
        .side-widget {
            background: white;
            border-radius: 18px;
            padding: 24px;
            margin-bottom: 25px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.04);
        }
        .side-widget h3 {
            font-size: 1.2rem;
            border-bottom: 2px solid #e10600;
            padding-bottom: 8px;
            margin-bottom: 16px;
            font-weight: 700;
            color: #111;
        }
        .side-widget ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .side-widget ul li {
            margin-bottom: 12px;
            border-bottom: 1px solid #f3f3f3;
            padding-bottom: 8px;
        }
        .side-widget a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 500;
            display: block;
            transition: color 0.2s;
        }
        .side-widget a:hover {
            color: #e10600;
        }
        .side-widget a i {
            margin-right: 8px;
            color: #e10600;
            width: 20px;
        }
        .friend-link {
            display: block;
            background: white;
            border-radius: 18px;
            padding: 24px;
            margin: 40px 0 20px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.04);
            font-size: 0.9rem;
        }
        .friend-link a {
            color: #e10600;
            text-decoration: none;
        }
        .site-footer {
            background: #0b0b0d;
            color: #aaa;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 4px solid #e10600;
        }
        .footer-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            border-top: 1px solid #1e1e1e;
            font-size: 0.85rem;
            color: #777;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                align-items: flex-start;
                background: #0b0b0d;
                padding: 15px;
                width: 100%;
                border-radius: 12px;
            }
            .nav-menu.active {
                display: flex;
            }
            .header-flex {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box {
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
            .main-article {
                padding: 18px;
            }
            .main-article h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .feature-box {
                grid-template-columns: 1fr;
            }
        }
