        * { 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, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; margin-bottom: 1rem; color: #ffcc00; }
        h1 { font-size: 2.8rem; text-align: center; margin-top: 1.5rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid #4CAF50; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: #4db8ff; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; }
        .highlight { background: linear-gradient(90deg, rgba(255,204,0,0.2), transparent); padding: 0.2rem 0.5rem; border-radius: 4px; }
        b, strong { color: #ffcc00; }
        a { color: #4db8ff; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #ffcc00; text-decoration: underline; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        header { background: rgba(12, 26, 45, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #ffcc00; }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ffcc00, #ff6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover { text-decoration: none; }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        nav ul li a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: #ffcc00;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 26, 45, 0.98);
                padding: 1rem;
                display: none;
                border-top: 1px solid #444;
            }
            nav ul.show { display: flex; }
            nav ul li { margin: 0.5rem 0; }
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a { color: #4db8ff; }
        .search-box {
            background: rgba(255,255,255,0.08);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
            border: 1px solid #444;
        }
        .search-box h2 { text-align: center; border: none; }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(45deg, #4CAF50, #2E7D32);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover { background: linear-gradient(45deg, #66BB6A, #388E3C); }
        main { padding: 2rem 0; }
        .hero-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 2rem;
        }
        .hero-card {
            background: linear-gradient(145deg, #1e3a5f, #152642);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            border: 1px solid #2a4a75;
        }
        .hero-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 204, 0, 0.2);
            border-color: #ffcc00;
        }
        .hero-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid #ffcc00;
        }
        .hero-info { padding: 1.5rem; }
        .hero-info h3 { margin-top: 0; }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 1rem 0;
        }
        .tag {
            background: rgba(77, 184, 255, 0.2);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        aside { padding: 1rem; }
        .sidebar-widget {
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid #444;
        }
        .sidebar-widget h3 { text-align: center; border-bottom: 2px solid #ffcc00; padding-bottom: 10px; }
        .rating-section, .comment-section {
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
            border: 1px solid #444;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover, .star.active { color: #ffcc00; }
        .rating-form, .comment-form {
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(255,255,255,0.08);
            color: white;
            font-size: 1rem;
        }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(45deg, #ff6600, #ffcc00);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            display: block;
            margin: 0 auto;
            transition: transform 0.3s;
        }
        .submit-btn:hover { transform: scale(1.05); }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(0,0,0,0.3);
            border-radius: 12px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 12px 20px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover { background: rgba(255,204,0,0.1); }
        footer {
            background: rgba(8, 18, 33, 0.98);
            padding: 3rem 0 1.5rem;
            text-align: center;
            border-top: 2px solid #ffcc00;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .content-wrapper { gap: 25px; }
            .hero-list { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
            .search-form { flex-direction: column; }
            .search-form input, .search-form button { border-radius: 30px; margin: 5px 0; }
        }
