* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d1f17;
            color: #e8e0d0;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #c9a84c;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f0d080;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0d1f17 0%, #1a3a2a 100%);
            border-bottom: 3px solid #c9a84c;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #c9a84c;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .my-logo span {
            color: #f5f0e8;
            font-weight: 300;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #f0d080;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #c9a84c;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(201, 168, 76, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 14px;
            color: #e8e0d0;
            transition: background 0.3s, color 0.3s;
        }
        .nav-menu a:hover {
            background: #c9a84c;
            color: #0d1f17;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #c9a84c;
            color: #0d1f17;
        }
        .breadcrumb {
            background: #1a3a2a;
            padding: 10px 0;
            border-bottom: 1px solid #2a4a3a;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 13px;
        }
        .breadcrumb ul li+li::before {
            content: "›";
            margin-right: 10px;
            color: #c9a84c;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b0a890;
        }
        .breadcrumb a:hover {
            color: #c9a84c;
        }
        .breadcrumb .current {
            color: #c9a84c;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 40px;
            font-weight: 800;
            color: #c9a84c;
            margin-bottom: 16px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            border-left: 5px solid #c9a84c;
            padding-left: 20px;
        }
        h2 {
            font-size: 30px;
            font-weight: 700;
            color: #f0d080;
            margin-top: 48px;
            margin-bottom: 18px;
            border-bottom: 2px solid #2a4a3a;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 22px;
            font-weight: 600;
            color: #e8d5a0;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #d0c0a0;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #d8d0c0;
        }
        .content-card {
            background: #152820;
            border-radius: 14px;
            padding: 32px 36px;
            margin-bottom: 32px;
            border: 1px solid #2a4a3a;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        .highlight-box {
            background: #1e3a2a;
            border-left: 5px solid #c9a84c;
            padding: 18px 24px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
            font-style: italic;
        }
        .emoji-lg {
            font-size: 24px;
            margin-right: 6px;
        }
        .btn {
            display: inline-block;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #c9a84c;
            color: #0d1f17;
        }
        .btn:hover {
            background: #f0d080;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #c9a84c;
            color: #c9a84c;
        }
        .btn-outline:hover {
            background: #c9a84c;
            color: #0d1f17;
        }
        .image-wrapper {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
        }
        .image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        .image-caption {
            background: #1a3a2a;
            padding: 10px 18px;
            font-size: 13px;
            color: #b0a890;
            text-align: center;
        }
        .search-section {
            background: #1a3a2a;
            border-radius: 12px;
            padding: 24px 28px;
            margin-bottom: 36px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            border: 1px solid #2a4a3a;
        }
        .search-section label {
            font-weight: 600;
            color: #f0d080;
            font-size: 16px;
        }
        .search-section form {
            display: flex;
            flex: 1;
            min-width: 200px;
            gap: 10px;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #2a4a3a;
            border-radius: 30px;
            background: #0d1f17;
            color: #e8e0d0;
            font-size: 15px;
            outline: none;
            transition: border 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #c9a84c;
        }
        .search-section button {
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            background: #c9a84c;
            color: #0d1f17;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-section button:hover {
            background: #f0d080;
        }
        .rating-section {
            background: #152820;
            border-radius: 12px;
            padding: 24px 28px;
            margin-bottom: 36px;
            border: 1px solid #2a4a3a;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 32px;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #4a4a3a;
            transition: color 0.2s;
            cursor: pointer;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f0d080;
        }
        .rating-stars label i {
            pointer-events: none;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            margin-top: 12px;
        }
        .rating-form input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 10px 16px;
            border: 2px solid #2a4a3a;
            border-radius: 30px;
            background: #0d1f17;
            color: #e8e0d0;
            outline: none;
        }
        .rating-form input[type="text"]:focus {
            border-color: #c9a84c;
        }
        .comment-section {
            background: #152820;
            border-radius: 12px;
            padding: 28px 32px;
            margin-bottom: 36px;
            border: 1px solid #2a4a3a;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 12px 18px;
            border: 2px solid #2a4a3a;
            border-radius: 10px;
            background: #0d1f17;
            color: #e8e0d0;
            font-size: 15px;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #c9a84c;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comment-form .form-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 160px;
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .links-list a {
            display: block;
            padding: 10px 16px;
            background: #1a3a2a;
            border-radius: 8px;
            border: 1px solid #2a4a3a;
            transition: all 0.3s;
            font-weight: 500;
        }
        .links-list a:hover {
            background: #c9a84c;
            color: #0d1f17;
            border-color: #c9a84c;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .links-list a i {
            margin-right: 8px;
            color: #c9a84c;
        }
        .links-list a:hover i {
            color: #0d1f17;
        }
        footer {
            background: linear-gradient(135deg, #0a1810 0%, #152820 100%);
            border-top: 3px solid #c9a84c;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #c9a84c;
            font-size: 16px;
            margin-bottom: 14px;
            border-bottom: 1px solid #2a4a3a;
            padding-bottom: 6px;
        }
        .footer-grid a {
            display: block;
            padding: 4px 0;
            font-size: 14px;
            color: #b0a890;
        }
        .footer-grid a:hover {
            color: #f0d080;
        }
        .friend-link {
            display: block;
            padding: 6px 0;
            font-size: 14px;
        }
        .friend-link a {
            color: #c9a84c;
        }
        .friend-link a:hover {
            color: #f0d080;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a4a3a;
            font-size: 13px;
            color: #7a7a6a;
        }
        .copyright strong {
            color: #b0a890;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding-top: 16px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 16px;
                border-radius: 6px;
                background: #1a3a2a;
                border-bottom: 1px solid #2a4a3a;
            }
            h1 {
                font-size: 28px;
                padding-left: 14px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .content-card {
                padding: 20px 18px;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-section form {
                flex-direction: column;
            }
            .rating-form {
                flex-direction: column;
            }
            .rating-stars {
                font-size: 28px;
                justify-content: center;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .links-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .breadcrumb ul {
                font-size: 12px;
                gap: 4px 8px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .content-card {
                padding: 26px 24px;
            }
            .links-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d1f17;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a4a3a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #c9a84c;
        }
        .last-updated {
            display: inline-block;
            background: #1a3a2a;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 13px;
            color: #b0a890;
            border: 1px solid #2a4a3a;
            margin-bottom: 20px;
        }
        .last-updated i {
            color: #c9a84c;
            margin-right: 6px;
        }
        .text-gold {
            color: #c9a84c;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
