* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d0d1a;
            color: #e8e0d0;
            line-height: 1.8;
            font-size: 17px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #d4a017;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f5d742;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        header {
            background: linear-gradient(145deg, #14142a 0%, #1a1a3a 100%);
            border-bottom: 3px solid #d4a017;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5d742, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 160, 23, 0.2);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 14px;
            letter-spacing: 1px;
            background: none;
            -webkit-text-fill-color: #b8a88a;
            color: #b8a88a;
            font-weight: 400;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 15px;
            color: #d0c8b8;
            transition: background 0.3s, color 0.3s;
            white-space: nowrap;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: rgba(212, 160, 23, 0.18);
            color: #f5d742;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #d4a017;
            color: #d4a017;
            font-size: 24px;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: rgba(212, 160, 23, 0.15);
        }
        .breadcrumb {
            background: rgba(20, 20, 42, 0.7);
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 160, 23, 0.2);
            font-size: 14px;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #d4a017;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b8a88a;
        }
        .breadcrumb .current {
            color: #f5d742;
            font-weight: 600;
        }
        main {
            flex: 1;
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f5d742;
            margin-bottom: 12px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 10px rgba(212, 160, 23, 0.15);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #e8c84a;
            margin-top: 50px;
            margin-bottom: 18px;
            border-left: 5px solid #d4a017;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #d4b87a;
            margin-top: 32px;
            margin-bottom: 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c9a84c;
            margin-top: 22px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            color: #ddd6c8;
        }
        .content-img {
            width: 100%;
            max-width: 820px;
            height: auto;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(212, 160, 23, 0.25);
            display: block;
        }
        .img-caption {
            font-size: 14px;
            color: #b8a88a;
            margin-top: -24px;
            margin-bottom: 30px;
            font-style: italic;
        }
        .highlight-box {
            background: rgba(212, 160, 23, 0.08);
            border-left: 4px solid #d4a017;
            padding: 18px 24px;
            border-radius: 0 10px 10px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #f5d742;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 15px;
            background: rgba(20, 20, 42, 0.5);
            border-radius: 10px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(212, 160, 23, 0.15);
        }
        th {
            background: rgba(212, 160, 23, 0.2);
            color: #f5d742;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        tr:hover td {
            background: rgba(212, 160, 23, 0.06);
        }
        ul,
        ol {
            margin: 16px 0 20px 24px;
            color: #ddd6c8;
        }
        li {
            margin-bottom: 8px;
        }
        .btn {
            display: inline-block;
            padding: 10px 26px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-gold {
            background: linear-gradient(135deg, #d4a017, #b8860b);
            color: #0d0d1a;
        }
        .btn-gold:hover {
            background: linear-gradient(135deg, #f5d742, #d4a017);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 160, 23, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #d4a017;
            color: #d4a017;
        }
        .btn-outline:hover {
            background: rgba(212, 160, 23, 0.12);
            transform: translateY(-2px);
        }
        .search-section {
            background: rgba(20, 20, 42, 0.6);
            padding: 30px;
            border-radius: 14px;
            margin: 40px 0;
            border: 1px solid rgba(212, 160, 23, 0.15);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 8px;
            border: 2px solid rgba(212, 160, 23, 0.3);
            background: rgba(13, 13, 26, 0.8);
            color: #e8e0d0;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #d4a017;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 8px;
            border: none;
            background: linear-gradient(135deg, #d4a017, #b8860b);
            color: #0d0d1a;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(135deg, #f5d742, #d4a017);
            transform: translateY(-2px);
        }
        .rating-section {
            background: rgba(20, 20, 42, 0.6);
            padding: 30px;
            border-radius: 14px;
            margin: 40px 0;
            border: 1px solid rgba(212, 160, 23, 0.15);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 32px;
            color: #444;
            cursor: pointer;
            margin: 10px 0 16px;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5d742;
            transform: scale(1.1);
        }
        .rating-form button {
            margin-top: 12px;
        }
        .comments-section {
            background: rgba(20, 20, 42, 0.6);
            padding: 30px;
            border-radius: 14px;
            margin: 40px 0;
            border: 1px solid rgba(212, 160, 23, 0.15);
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 8px;
            border: 2px solid rgba(212, 160, 23, 0.3);
            background: rgba(13, 13, 26, 0.8);
            color: #e8e0d0;
            font-size: 15px;
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #d4a017;
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 8px;
            border: 2px solid rgba(212, 160, 23, 0.3);
            background: rgba(13, 13, 26, 0.8);
            color: #e8e0d0;
            font-size: 15px;
            transition: border-color 0.3s;
        }
        .comment-form input[type="text"]:focus {
            outline: none;
            border-color: #d4a017;
        }
        friend-link {
            display: block;
            padding: 30px 0 20px;
            border-top: 1px solid rgba(212, 160, 23, 0.2);
            margin-top: 20px;
        }
        friend-link h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            color: #d4b87a;
        }
        .friend-links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .friend-links-list li a {
            color: #b8a88a;
            font-size: 15px;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.3s;
        }
        .friend-links-list li a:hover {
            color: #f5d742;
            border-bottom-color: #d4a017;
            text-decoration: none;
        }
        footer {
            background: linear-gradient(145deg, #0d0d1a, #14142a);
            border-top: 3px solid #d4a017;
            padding: 30px 0 20px;
            text-align: center;
            color: #999080;
            font-size: 14px;
            margin-top: 30px;
        }
        footer .copyright {
            margin-top: 12px;
            font-size: 13px;
            color: #7a7268;
        }
        footer .copyright strong {
            color: #b8a88a;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-wrapper {
                order: 3;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                display: none;
                margin-top: 10px;
            }
            .nav-wrapper.open {
                display: flex;
            }
            .nav-list {
                flex-direction: column;
                gap: 2px;
            }
            .nav-list li a {
                display: block;
                padding: 12px 16px;
                background: rgba(20, 20, 42, 0.6);
                border-radius: 4px;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: 100%;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form input[type="text"] {
                min-width: 100%;
            }
            .star-rating {
                font-size: 28px;
            }
            .breadcrumb ol {
                font-size: 13px;
            }
            .container {
                padding: 0 14px;
            }
            table {
                font-size: 13px;
            }
            th,
            td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .my-logo {
                font-size: 22px;
            }
            .my-logo small {
                font-size: 12px;
            }
            .rating-section,
            .comments-section,
            .search-section {
                padding: 18px;
            }
        }
        @media (min-width: 769px) {
            .nav-wrapper {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0d1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #d4a017;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5d742;
        }
        ::selection {
            background: #d4a017;
            color: #0d0d1a;
        }
