        * { 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: #f0f0f0;
            background: #121212;
            background-image: linear-gradient(to bottom, #1a1a2e, #16213e);
            padding-top: 80px;
        }
        a { color: #e63946; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #ff7b8f; text-shadow: 0 0 8px rgba(230, 57, 70, 0.5); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding { padding: 40px 0; }
        .text-center { text-align: center; }
        .bold { font-weight: 800; color: #ffd166; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .last-updated { font-style: italic; color: #8ecae6; margin: 20px 0; }
        header {
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #e63946;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #e63946, #ffd166);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo:hover { transform: scale(1.05); }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: #f1faee;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover { background: rgba(230, 57, 70, 0.2); }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f1faee;
        }
        .breadcrumb {
            background: #1d3557;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #8ecae6; }
        .breadcrumb a:hover { color: #ffd166; }
        main { background: rgba(26, 26, 46, 0.8); padding: 30px 0; }
        article { max-width: 900px; margin: 0 auto; padding: 25px; background: rgba(29, 53, 87, 0.7); border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        h1 { font-size: 3rem; color: #ffd166; margin-bottom: 25px; text-align: center; text-shadow: 0 3px 6px rgba(0,0,0,0.5); }
        h2 { font-size: 2.2rem; color: #e63946; margin-top: 40px; margin-bottom: 20px; border-left: 5px solid #ffd166; padding-left: 15px; }
        h3 { font-size: 1.8rem; color: #8ecae6; margin-top: 30px; margin-bottom: 15px; }
        h4 { font-size: 1.4rem; color: #a8dadc; margin-top: 20px; margin-bottom: 10px; }
        p { margin-bottom: 22px; font-size: 1.1rem; text-align: justify; }
        .highlight-box {
            background: #1a1a2e;
            border-left: 4px solid #e63946;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 8px 20px rgba(0,0,0,0.7);
            transition: transform 0.4s ease;
        }
        .image-container img:hover { transform: scale(1.02); }
        .caption { font-size: 0.9rem; color: #ccc; margin-top: 10px; }
        .search-box, .comment-form, .rating-form {
            background: #1d3557;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);
        }
        .search-box h3, .comment-form h3, .rating-form h3 { color: #ffd166; }
        form { display: grid; gap: 15px; }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #457b9d;
            border-radius: 5px;
            background: #2a3c5a;
            color: #f1faee;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #e63946, #d00000);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s;
        }
        button:hover { background: linear-gradient(90deg, #ff4d5a, #e63946); transform: translateY(-3px); }
        .stars { display: flex; gap: 10px; justify-content: center; }
        .stars i { color: #ffd166; font-size: 1.8rem; cursor: pointer; transition: color 0.3s; }
        .stars i:hover { color: #ffb347; }
        footer {
            background: #0d1b2a;
            color: #e0e1dd;
            padding: 40px 0 20px;
            border-top: 3px solid #e63946;
        }
        friend-link {
            display: block;
            background: #1b263b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 10px;
        }
        friend-link h3 { color: #ffd166; }
        .friend-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
        .friend-links a {
            display: block;
            padding: 10px;
            background: #415a77;
            border-radius: 5px;
            text-align: center;
            color: #e0e1dd;
        }
        .friend-links a:hover { background: #778da9; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #415a77;
            font-size: 0.9rem;
            color: #8ecae6;
        }
        @media (max-width: 768px) {
            body { padding-top: 70px; }
            .header-content { flex-wrap: wrap; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(18, 18, 18, 0.98);
                position: absolute;
                top: 70px;
                left: 0;
                padding: 20px;
                border-top: 1px solid #e63946;
            }
            nav.active ul { display: flex; }
            .hamburger { display: block; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 20px; }
            .container { padding: 0 15px; }
        }
        @media (min-width: 769px) {
            .friend-links { grid-template-columns: repeat(4, 1fr); }
        }
