* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #131a23;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
            border-radius: 20px 20px 0 0;
            overflow: hidden;
            padding: 0 24px 24px;
        }
        header {
            padding: 20px 0 10px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #2a3548;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c040, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
            text-shadow: 0 0 20px rgba(240, 192, 64, 0.15);
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #b0b8c8;
            color: #b0b8c8;
            letter-spacing: 2px;
            display: block;
            font-style: italic;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            color: #f0c040;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2a38;
        }
        nav {
            display: flex;
            gap: 12px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #c8d0dc;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #1f2a38;
            color: #f0c040;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 0.85rem;
            color: #8892a4;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #8892a4;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb span {
            color: #c8d0dc;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin: 24px 0 16px;
            background: linear-gradient(135deg, #f7d875, #f0a830);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 20px;
            color: #f0c040;
            border-left: 6px solid #f0c040;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 36px 0 16px;
            color: #e8d48b;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: #d4c080;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #dce2ec;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8892a4;
            text-align: right;
            margin: 6px 0 20px;
            border-bottom: 1px solid #1f2a38;
            padding-bottom: 12px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .featured-img {
            width: 100%;
            max-width: 900px;
            margin: 28px auto;
            display: block;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            border: 1px solid #2a3548;
        }
        .highlight-box {
            background: #1a2433;
            border-left: 6px solid #f0c040;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 28px 0;
            box-shadow: inset 0 0 0 1px #2a3548;
        }
        .highlight-box strong {
            color: #f0c040;
        }
        ul,
        ol {
            margin: 16px 0 24px 28px;
            color: #dce2ec;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.02rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            background: #0f1620;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        th {
            background: #1f2a38;
            color: #f0c040;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid #1f2a38;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1a2433;
        }
        .btn {
            display: inline-block;
            background: #f0c040;
            color: #0b0e14;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: background 0.2s, transform 0.1s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn i {
            margin-right: 8px;
        }
        .search-section {
            background: #0f1620;
            padding: 28px 24px;
            border-radius: 16px;
            margin: 32px 0;
            border: 1px solid #2a3548;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 30px;
            border: 2px solid #2a3548;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f0c040;
        }
        .search-section .btn {
            padding: 14px 32px;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0;
        }
        .feedback-card {
            background: #0f1620;
            padding: 24px 28px;
            border-radius: 16px;
            border: 1px solid #2a3548;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card textarea,
        .feedback-card input {
            padding: 12px 16px;
            border-radius: 12px;
            border: 2px solid #2a3548;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            resize: vertical;
            font-family: inherit;
            transition: border 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f0c040;
        }
        .feedback-card textarea {
            min-height: 100px;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a4558;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c040;
        }
        friend-link {
            display: block;
            background: #0f1620;
            padding: 28px 24px;
            border-radius: 16px;
            margin: 32px 0 16px;
            border: 1px solid #2a3548;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.5rem;
            color: #f0c040;
        }
        friend-link ul {
            list-style: none;
            margin: 16px 0 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        friend-link ul li a {
            color: #c8d0dc;
            font-weight: 500;
        }
        friend-link ul li a:hover {
            color: #f0c040;
        }
        footer {
            margin-top: 40px;
            padding: 24px 0 16px;
            border-top: 2px solid #2a3548;
            text-align: center;
            color: #8892a4;
            font-size: 0.9rem;
        }
        footer p {
            color: #8892a4;
            font-size: 0.9rem;
            margin-bottom: 6px;
        }
        footer a {
            color: #c8d0dc;
        }
        footer a:hover {
            color: #f0c040;
        }
        @media (max-width: 820px) {
            .container {
                padding: 0 16px 16px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.75rem;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                gap: 6px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 14px;
                border-radius: 8px;
                background: #1a2433;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
                width: 100%;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 10px 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.25rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.1rem;
            }
            .highlight-box {
                padding: 14px 16px;
            }
            .feedback-card {
                padding: 16px;
            }
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 8px 10px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3548;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3e4d66;
        }
