* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f0e17;
            color: #fffffe;
            line-height: 1.8;
        }
        a {
            color: #ff8906;
            text-decoration: none;
        }
        a:hover {
            color: #f25f4c;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 2px;
            color: #ff8906 !important;
            text-transform: uppercase;
            font-style: italic;
        }
        .my-logo i {
            color: #e94560;
        }
        nav {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background: #ff8906;
            color: #0f0e17;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #1a1a2e;
            background: #0f0e17;
        }
        .breadcrumb a {
            color: #ff8906;
        }
        .breadcrumb span {
            color: #72757e;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #1a1a2e, #0f0e17);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 16px;
            color: #ff8906;
            text-transform: uppercase;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #a7a7b8;
        }
        .hero .badge {
            display: inline-block;
            background: #e94560;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 13px;
            margin-top: 16px;
            font-weight: 600;
        }
        .search-section {
            padding: 30px 20px;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            background: #1a1a2e;
            border-radius: 40px;
            overflow: hidden;
            border: 2px solid #ff8906;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 16px;
            outline: none;
        }
        .search-form button {
            background: #ff8906;
            border: none;
            padding: 14px 24px;
            font-size: 16px;
            cursor: pointer;
            color: #0f0e17;
            font-weight: 700;
        }
        .search-form button:hover {
            background: #e94560;
            color: #fff;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 40px;
            padding: 40px 20px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .article-card {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 4px solid #ff8906;
        }
        .article-card h2 {
            font-size: 1.8rem;
            color: #ff8906;
            margin-bottom: 16px;
            font-weight: 800;
        }
        .article-card h3 {
            font-size: 1.4rem;
            color: #fffffe;
            margin: 24px 0 12px;
            font-weight: 700;
        }
        .article-card h4 {
            font-size: 1.1rem;
            color: #ff8906;
            margin: 16px 0 8px;
            font-weight: 600;
        }
        .article-card p {
            color: #a7a7b8;
            margin-bottom: 16px;
            font-size: 15px;
        }
        .article-card ul, .article-card ol {
            margin: 12px 0 16px 24px;
            color: #a7a7b8;
        }
        .article-card li {
            margin-bottom: 8px;
        }
        .article-card img {
            max-width: 100%;
            border-radius: 8px;
            margin: 16px 0;
        }
        .highlight-box {
            background: #0f0e17;
            border: 1px solid #ff8906;
            border-radius: 8px;
            padding: 20px;
            margin: 16px 0;
            position: relative;
        }
        .highlight-box::before {
            content: "✦";
            color: #ff8906;
            font-size: 20px;
            position: absolute;
            top: -10px;
            left: 20px;
            background: #1a1a2e;
            padding: 0 8px;
        }
        .emoji-icon {
            font-size: 1.2rem;
            margin-right: 4px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 16px 0;
        }
        .stat-box {
            background: #0f0e17;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            border-bottom: 3px solid #ff8906;
        }
        .stat-box .number {
            font-size: 2rem;
            font-weight: 900;
            color: #ff8906;
        }
        .stat-box .label {
            font-size: 14px;
            color: #a7a7b8;
            margin-top: 4px;
        }
        .rating-section {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 28px;
            cursor: pointer;
            margin: 16px 0;
        }
        .rating-stars i {
            color: #ff8906;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .rating-form input, .rating-form select {
            width: 100%;
            padding: 12px;
            margin: 8px 0;
            background: #0f0e17;
            border: 1px solid #ff8906;
            border-radius: 6px;
            color: #fff;
            font-size: 14px;
        }
        .btn-primary {
            background: #ff8906;
            color: #0f0e17;
            padding: 12px 28px;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background: #e94560;
            color: #fff;
            transform: translateY(-2px);
        }
        .comment-section {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
        }
        .comment-item {
            background: #0f0e17;
            border-radius: 8px;
            padding: 20px;
            margin: 16px 0;
            border-left: 3px solid #e94560;
        }
        .comment-item .user {
            font-weight: 700;
            color: #ff8906;
            font-size: 15px;
        }
        .comment-item .time {
            font-size: 12px;
            color: #72757e;
            margin-left: 8px;
        }
        .comment-item p {
            color: #a7a7b8;
            margin-top: 8px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            background: #0f0e17;
            border: 1px solid #ff8906;
            border-radius: 6px;
            color: #fff;
            font-size: 14px;
            resize: vertical;
            min-height: 100px;
        }
        .comment-form input {
            width: 100%;
            padding: 12px;
            margin: 8px 0;
            background: #0f0e17;
            border: 1px solid #ff8906;
            border-radius: 6px;
            color: #fff;
        }
        .sidebar-card {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            border-top: 3px solid #ff8906;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #ff8906;
            margin-bottom: 12px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #0f0e17;
        }
        .sidebar-card ul li a {
            color: #a7a7b8;
            transition: all 0.2s;
        }
        .sidebar-card ul li a:hover {
            color: #ff8906;
            padding-left: 6px;
        }
        footer {
            background: #0f0e17;
            border-top: 3px solid #ff8906;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-content h3 {
            color: #ff8906;
            margin-bottom: 16px;
        }
        .footer-content p, .footer-content a {
            color: #a7a7b8;
            font-size: 14px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a1a2e;
            color: #72757e;
            font-size: 14px;
        }
        .footer-bottom p {
            margin: 4px 0;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            color: #a7a7b8;
            font-size: 14px;
            border-bottom: 1px solid #1a1a2e;
        }
        friend-link a {
            color: #ff8906;
            margin: 0 8px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 10px;
                padding: 16px 0;
            }
            nav.active {
                display: flex;
            }
            .content-wrapper {
                grid-template-columns: 1fr;
                padding: 20px 12px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .article-card {
                padding: 18px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-form button {
                width: 100%;
                border-radius: 0;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 30px 12px;
            }
            .rating-stars {
                font-size: 22px;
            }
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
            font-size: 14px;
        }
        .data-table th {
            background: #ff8906;
            color: #0f0e17;
            padding: 12px;
            text-align: left;
            font-weight: 700;
        }
        .data-table td {
            padding: 10px 12px;
            border-bottom: 1px solid #0f0e17;
            color: #a7a7b8;
        }
        .data-table tr:hover td {
            background: #0f0e17;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 16px 0;
        }
        .gallery-grid img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 6px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .gallery-grid img:hover {
            transform: scale(1.05);
        }
        @media (max-width: 600px) {
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
