* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a12;
            color: #e0d5c1;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #d4a843;
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: #f0d080;
            text-shadow: 0 0 8px rgba(212, 168, 67, 0.3);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
            border-bottom: 2px solid #d4a843;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        }
        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #d4a843, #f0d080);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #d4a843;
            margin-right: 8px;
        }
        .hamburger {
            display: none;
            font-size: 30px;
            background: none;
            border: none;
            color: #d4a843;
            cursor: pointer;
            padding: 5px 10px;
            transition: color 0.3s;
        }
        .hamburger:hover {
            color: #f0d080;
        }
        nav {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            font-size: 15px;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s, color 0.3s;
        }
        nav a:hover {
            border-bottom-color: #d4a843;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #12121f;
            padding: 12px 0;
            border-bottom: 1px solid #1e1e32;
            font-size: 13px;
            color: #888;
        }
        .breadcrumb a {
            color: #d4a843;
        }
        .breadcrumb span {
            color: #aaa;
        }
        .hero {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a0a0a 100%);
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 1px solid #2a1a1a;
            position: relative;
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 900;
            color: #d4a843;
            text-shadow: 0 0 40px rgba(212, 168, 67, 0.15);
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 10px;
            color: #c0b8a8;
        }
        .hero .last-updated {
            font-size: 14px;
            color: #777;
            margin-top: 20px;
        }
        .hero .last-updated i {
            margin-right: 6px;
        }
        .search-section {
            background: #12121f;
            padding: 30px 0;
            border-bottom: 1px solid #1e1e32;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 0;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid #d4a843;
            background: #0a0a12;
        }
        .search-form input {
            flex: 1;
            padding: 14px 24px;
            border: none;
            background: transparent;
            color: #e0d5c1;
            font-size: 16px;
            outline: none;
        }
        .search-form input::placeholder {
            color: #666;
        }
        .search-form button {
            padding: 14px 30px;
            background: #d4a843;
            border: none;
            color: #0a0a12;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #f0d080;
        }
        .content {
            padding: 50px 0;
        }
        .content h2 {
            font-size: 34px;
            color: #d4a843;
            margin: 50px 0 20px;
            border-bottom: 2px solid #1e1e32;
            padding-bottom: 10px;
            font-weight: 800;
        }
        .content h2:first-child {
            margin-top: 0;
        }
        .content h3 {
            font-size: 26px;
            color: #e8d5a0;
            margin: 35px 0 15px;
            font-weight: 700;
        }
        .content h4 {
            font-size: 20px;
            color: #d4c4a0;
            margin: 25px 0 12px;
            font-weight: 600;
        }
        .content p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 17px;
        }
        .content ul,
        .content ol {
            margin: 15px 0 20px 30px;
        }
        .content li {
            margin-bottom: 10px;
            font-size: 17px;
        }
        .content img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid #2a2a40;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            display: block;
        }
        .content .img-caption {
            font-size: 14px;
            color: #888;
            text-align: center;
            margin-top: -20px;
            margin-bottom: 30px;
            font-style: italic;
        }
        .highlight {
            color: #d4a843;
            font-weight: 700;
        }
        .emoji-big {
            font-size: 24px;
            margin-right: 6px;
        }
        .blockquote {
            border-left: 4px solid #d4a843;
            padding: 20px 30px;
            margin: 30px 0;
            background: #12121f;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            font-size: 18px;
            color: #c0b8a8;
        }
        .blockquote strong {
            color: #d4a843;
        }
        .img-placeholder {
            background: linear-gradient(135deg, #1a1a2e, #0d0d1a);
            border: 2px dashed #d4a84344;
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            margin: 30px 0;
            color: #888;
            font-size: 18px;
            position: relative;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 12px;
        }
        .img-placeholder i {
            font-size: 64px;
            color: #d4a84333;
        }
        .img-placeholder span {
            font-size: 14px;
            color: #666;
        }
        .rating-section {
            background: #12121f;
            padding: 40px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #1e1e32;
        }
        .rating-section h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            gap: 8px;
            font-size: 32px;
            color: #444;
            cursor: pointer;
            margin: 15px 0;
        }
        .stars i {
            transition: color 0.3s, transform 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #d4a843;
            transform: scale(1.15);
        }
        .rating-form textarea {
            width: 100%;
            padding: 16px;
            border-radius: 8px;
            border: 1px solid #2a2a40;
            background: #0a0a12;
            color: #e0d5c1;
            font-size: 16px;
            min-height: 120px;
            margin: 15px 0;
            resize: vertical;
            font-family: inherit;
        }
        .rating-form textarea:focus {
            outline: none;
            border-color: #d4a843;
        }
        .btn {
            padding: 14px 36px;
            background: #d4a843;
            border: none;
            color: #0a0a12;
            font-weight: 700;
            font-size: 16px;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-block;
        }
        .btn:hover {
            background: #f0d080;
            transform: translateY(-2px);
        }
        .btn i {
            margin-right: 8px;
        }
        .comments-section {
            margin: 40px 0;
            padding: 40px;
            background: #12121f;
            border-radius: 12px;
            border: 1px solid #1e1e32;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comment-item {
            padding: 20px 0;
            border-bottom: 1px solid #1e1e32;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 700;
            color: #d4a843;
        }
        .comment-item .date {
            font-size: 13px;
            color: #666;
            margin-left: 15px;
        }
        .comment-item .text {
            margin-top: 8px;
            color: #c0b8a8;
        }
        friend-link {
            display: block;
            padding: 40px 0;
            border-top: 1px solid #1e1e32;
            margin-top: 40px;
        }
        friend-link h3 {
            font-size: 22px;
            color: #d4a843;
            margin-bottom: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 0 20px 10px 0;
            padding: 8px 20px;
            background: #1a1a2e;
            border-radius: 50px;
            border: 1px solid #2a2a40;
            transition: background 0.3s, border-color 0.3s;
            font-size: 15px;
        }
        friend-link a:hover {
            background: #2a2a40;
            border-color: #d4a843;
        }
        footer {
            background: #07070f;
            padding: 30px 0;
            border-top: 2px solid #1a1a2e;
            text-align: center;
            color: #666;
            font-size: 14px;
        }
        footer .copyright {
            margin-top: 10px;
            color: #555;
        }
        footer a {
            color: #d4a843;
        }
        @media (max-width: 768px) {
            .header-flex {
                flex-wrap: nowrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 12px;
                padding: 20px 0 10px;
                border-top: 1px solid #1e1e32;
                margin-top: 12px;
            }
            .nav-toggle:checked~nav {
                display: flex;
            }
            .hero h1 {
                font-size: 30px;
            }
            .hero p {
                font-size: 17px;
            }
            .content h2 {
                font-size: 26px;
            }
            .content h3 {
                font-size: 22px;
            }
            .content p {
                font-size: 16px;
            }
            .rating-section,
            .comments-section {
                padding: 24px;
            }
            .stars {
                font-size: 26px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-form input {
                padding: 12px 18px;
            }
            .search-form button {
                padding: 12px 18px;
            }
            .my-logo {
                font-size: 22px;
            }
            .breadcrumb {
                font-size: 12px;
            }
            .content ul,
            .content ol {
                margin-left: 18px;
            }
            .img-placeholder {
                min-height: 180px;
                padding: 24px 16px;
            }
            .img-placeholder i {
                font-size: 40px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 24px;
            }
            .hero p {
                font-size: 15px;
            }
            .content h2 {
                font-size: 22px;
            }
            .content h3 {
                font-size: 19px;
            }
            .content h4 {
                font-size: 17px;
            }
            .container {
                padding: 0 14px;
            }
            .rating-section,
            .comments-section {
                padding: 16px;
            }
            .btn {
                padding: 12px 24px;
                font-size: 14px;
            }
            .stars {
                font-size: 22px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
