        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd43b;
            text-decoration: underline;
        }
        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(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
            background: rgba(30, 30, 40, 0.6);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd43b;
        }
        main {
            padding: 30px 0;
        }
        article {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #444;
        }
        h1, h2, h3, h4 {
            color: #ffd93d;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px #000;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.8rem;
            color: #6bcf7f;
            margin-top: 30px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 107, 107, 0.2), rgba(255, 217, 59, 0.2));
            border-left: 4px solid #ffd43b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .note {
            background: rgba(59, 130, 246, 0.15);
            border-left: 4px solid #3b82f6;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip {
            background: rgba(107, 207, 127, 0.15);
            border-left: 4px solid #6bcf7f;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .card {
            background: rgba(40, 40, 60, 0.7);
            padding: 25px;
            border-radius: 10px;
            border-top: 5px solid #ff6b6b;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(255, 107, 107, 0.2);
        }
        .card h4 {
            color: #ffd43b;
            font-size: 1.5rem;
        }
        .search-section {
            text-align: center;
            margin: 50px 0;
            padding: 30px;
            background: rgba(30, 30, 50, 0.7);
            border-radius: 15px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 20px auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
            background: #222;
            color: #fff;
        }
        .search-form button {
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ff5252, #ff7b7b);
        }
        .interaction-section {
            margin: 50px 0;
            padding: 40px;
            background: rgba(30, 30, 50, 0.7);
            border-radius: 15px;
        }
        .rating-form, .comment-form {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #444;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd43b;
        }
        .comment-form textarea {
            width: 100%;
            padding: 20px;
            border-radius: 10px;
            background: #222;
            color: #fff;
            border: 1px solid #555;
            font-size: 1.1rem;
            min-height: 150px;
            margin-bottom: 20px;
        }
        .submit-btn {
            background: linear-gradient(90deg, #6bcf7f, #4caf50);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #5cb85c, #43a047);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
            padding: 40px;
            background: rgba(20, 20, 30, 0.9);
            border-radius: 15px;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.7);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(60, 60, 80, 0.9);
        }
        footer {
            background: #0a0a14;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid #333;
        }
        .copyright {
            color: #888;
            font-size: 0.95rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 20, 0.98);
                flex-direction: column;
                padding: 20px;
                border-top: 1px solid #333;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            article { padding: 25px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 8px; margin-bottom: 10px; }
            .search-form button { border-radius: 8px; padding: 15px; }
        }
