* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0c10;
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f5b041;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f7dc6f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
            padding: 20px 0;
            border-bottom: 3px solid #f5b041;
            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: 16px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 4px;
            background: linear-gradient(135deg, #f5b041, #f7dc6f, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 176, 65, 0.2);
            text-transform: uppercase;
            font-family: 'Impact', 'Arial Black', sans-serif;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5b041;
            color: #f5b041;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .nav-toggle:hover {
            background: #f5b041;
            color: #0b0c10;
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #e0e0e0;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(245, 176, 65, 0.15);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        nav a:hover {
            background: #f5b041;
            color: #0b0c10;
            text-decoration: none;
            border-color: #f5b041;
            box-shadow: 0 0 20px rgba(245, 176, 65, 0.3);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #f5b041;
        }
        .breadcrumb a {
            color: #a0a0a0;
        }
        .breadcrumb a:hover {
            color: #f5b041;
        }
        .breadcrumb .active {
            color: #f5b041;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 3.2rem;
            font-weight: 900;
            color: #f5b041;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 16px;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(245, 176, 65, 0.15);
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f7dc6f;
            margin-top: 56px;
            margin-bottom: 20px;
            border-left: 5px solid #f5b041;
            padding-left: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #f5b041;
            margin-top: 40px;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #f7dc6f;
            margin-top: 28px;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #d0d0d0;
        }
        .lead {
            font-size: 1.3rem;
            color: #e8e8e8;
            font-weight: 300;
            border-left: 3px solid #f5b041;
            padding-left: 24px;
            margin-bottom: 32px;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(245, 176, 65, 0.08), rgba(247, 220, 111, 0.04));
            border: 1px solid rgba(245, 176, 65, 0.2);
            border-radius: 16px;
            padding: 28px 32px;
            margin: 32px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .highlight-box strong {
            color: #f5b041;
        }
        .hero-image-wrapper {
            margin: 36px 0 40px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }
        .hero-image-wrapper img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .hero-image-wrapper .caption {
            background: rgba(0, 0, 0, 0.7);
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #ccc;
            text-align: center;
            border-radius: 0 0 12px 12px;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 32px 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(245, 176, 65, 0.1);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            border-color: rgba(245, 176, 65, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }
        .stat-card .number {
            font-size: 2.4rem;
            font-weight: 900;
            color: #f5b041;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #a0a0a0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        ul,
        ol {
            margin: 20px 0 20px 28px;
            color: #d0d0d0;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 32px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #1a1a2e;
            color: #f5b041;
            padding: 14px 18px;
            text-align: left;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        tr:hover td {
            background: rgba(245, 176, 65, 0.04);
        }
        .search-section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(245, 176, 65, 0.12);
            border-radius: 20px;
            padding: 36px 40px;
            margin: 48px 0;
        }
        .search-section h2 {
            margin-top: 0;
            border-left-color: #f5b041;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border-radius: 40px;
            border: 2px solid rgba(245, 176, 65, 0.2);
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #f5b041;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: #f5b041;
            color: #0b0c10;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .search-form button:hover {
            background: #f7dc6f;
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(245, 176, 65, 0.3);
        }
        .comments-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(245, 176, 65, 0.1);
            border-radius: 20px;
            padding: 36px 40px;
            margin: 48px 0;
        }
        .comments-section h2 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 18px 22px;
            border-radius: 16px;
            border: 2px solid rgba(245, 176, 65, 0.15);
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #f5b041;
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            padding: 14px 22px;
            border-radius: 40px;
            border: 2px solid rgba(245, 176, 65, 0.15);
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 1rem;
            outline: none;
            min-width: 180px;
            transition: border-color 0.3s;
        }
        .comment-form .form-row input:focus {
            border-color: #f5b041;
        }
        .comment-form button {
            padding: 14px 40px;
            border-radius: 40px;
            border: none;
            background: #f5b041;
            color: #0b0c10;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 16px;
        }
        .comment-form button:hover {
            background: #f7dc6f;
            transform: scale(1.02);
        }
        .rating-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(245, 176, 65, 0.1);
            border-radius: 20px;
            padding: 36px 40px;
            margin: 48px 0;
        }
        .rating-section h2 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 8px;
            justify-content: flex-end;
            margin: 16px 0 20px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.4rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b041;
            transform: scale(1.1);
        }
        .rating-section .rating-submit {
            padding: 12px 36px;
            border-radius: 40px;
            border: none;
            background: #f5b041;
            color: #0b0c10;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .rating-section .rating-submit:hover {
            background: #f7dc6f;
            transform: scale(1.02);
        }
        footer {
            background: #0a0a14;
            border-top: 3px solid rgba(245, 176, 65, 0.2);
            padding: 48px 0 32px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        footer h4 {
            color: #f5b041;
            margin-top: 0;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        footer p,
        footer a {
            font-size: 0.95rem;
            color: #a0a0a0;
        }
        footer a:hover {
            color: #f5b041;
        }
        friend-link {
            display: block;
            margin-top: 12px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 8px;
            padding: 6px 16px;
            border: 1px solid rgba(245, 176, 65, 0.12);
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        friend-link a:hover {
            border-color: #f5b041;
            background: rgba(245, 176, 65, 0.06);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            color: #666;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .copyright strong {
            color: #888;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.35rem;
            }
            .two-col {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: row;
                justify-content: space-between;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding-top: 16px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 20px;
                border-radius: 12px;
                text-align: center;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 14px;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 16px;
            }
            .search-section,
            .comments-section,
            .rating-section {
                padding: 24px 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                width: 100%;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .my-logo {
                font-size: 1.6rem;
                letter-spacing: 2px;
            }
            .hero-image-wrapper img {
                max-height: 280px;
            }
            .stat-card .number {
                font-size: 1.8rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .lead {
                font-size: 1.1rem;
                padding-left: 16px;
            }
            .star-rating label {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.05rem;
            }
            p,
            li {
                font-size: 0.95rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            nav a {
                font-size: 0.85rem;
                padding: 10px 14px;
            }
            .highlight-box {
                padding: 18px 16px;
            }
            .search-section,
            .comments-section,
            .rating-section {
                padding: 18px 14px;
                border-radius: 14px;
            }
            .table-wrap {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 8px 10px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0c10;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5b041;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f7dc6f;
        }
        html {
            scroll-behavior: smooth;
        }
        .last-updated {
            display: inline-block;
            background: rgba(245, 176, 65, 0.1);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f5b041;
            border: 1px solid rgba(245, 176, 65, 0.15);
            margin-bottom: 24px;
        }
