        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #0b0e1a;
            color: #e8eaf0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #7ec8e3;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #b5e4f7;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #141a2b;
        }
        ::-webkit-scrollbar-thumb {
            background: #3d4a6a;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5b6d94;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #0f1425, #181f35);
            border-bottom: 2px solid #2a3555;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7d875, #f0a85c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px rgba(247, 216, 117, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7d875;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8d0e0;
            transition: all 0.25s ease;
            position: relative;
        }
        nav a:hover {
            background: rgba(126, 200, 227, 0.12);
            color: #f0f4ff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        nav a.active {
            background: rgba(126, 200, 227, 0.18);
            color: #7ec8e3;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #3d4a6a;
            color: #e8eaf0;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #1e2740;
            border-color: #5b6d94;
        }
        .breadcrumb {
            background: #0d1222;
            padding: 10px 0;
            border-bottom: 1px solid #1e2740;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li {
            font-size: 0.85rem;
            color: #8892b0;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #4a5a7a;
            font-size: 1.2rem;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #7ec8e3;
        }
        .breadcrumb a:hover {
            color: #b5e4f7;
        }
        .breadcrumb .current {
            color: #c8d0e0;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0f1a2e 0%, #1a2a4a 50%, #0f1a2e 100%);
            padding: 48px 0 40px;
            text-align: center;
            border-bottom: 1px solid #1e2740;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7d875, #f0a85c, #e8894a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #a8b4d0;
            max-width: 780px;
            margin: 0 auto 20px;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px 30px;
            font-size: 0.9rem;
            color: #7a88a8;
        }
        .hero .meta-info i {
            margin-right: 6px;
            color: #f0a85c;
        }
        .search-section {
            background: #0d1222;
            padding: 24px 0;
            border-bottom: 1px solid #1e2740;
        }
        .search-form {
            display: flex;
            max-width: 620px;
            margin: 0 auto;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #2a3555;
            border-radius: 40px;
            background: #131b2e;
            color: #e8eaf0;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #7ec8e3;
            box-shadow: 0 0 0 4px rgba(126, 200, 227, 0.15);
        }
        .search-form input::placeholder {
            color: #5a6a8a;
        }
        .search-form button {
            padding: 14px 28px;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #f0a85c, #e8894a);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(232, 137, 74, 0.35);
        }
        main {
            flex: 1;
            padding: 40px 0 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-body h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f0d48a;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a3555;
        }
        .content-body h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #c8d8f0;
            margin: 28px 0 12px;
        }
        .content-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #a8bce0;
            margin: 20px 0 8px;
        }
        .content-body p {
            margin-bottom: 18px;
            color: #d0d8e8;
            font-size: 1.02rem;
        }
        .content-body .highlight-box {
            background: #141c30;
            border-left: 4px solid #f0a85c;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content-body .highlight-box strong {
            color: #f7d875;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 18px;
            color: #c8d0e4;
        }
        .content-body li strong {
            color: #e8d48a;
        }
        .content-body .exclusive-tag {
            display: inline-block;
            background: #f0a85c;
            color: #0b0e1a;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 40px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-right: 6px;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 28px;
            border-radius: 12px;
            overflow: hidden;
            background: #101826;
        }
        .styled-table thead {
            background: #1a2340;
        }
        .styled-table th {
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
            color: #f0d48a;
            font-size: 0.95rem;
        }
        .styled-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #1e2740;
            color: #c8d0e4;
        }
        .styled-table tbody tr:hover {
            background: #18203a;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #101826;
            border: 1px solid #1e2740;
            border-radius: 16px;
            padding: 20px 22px;
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            color: #f0d48a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 8px;
        }
        .sidebar-card li a {
            display: block;
            padding: 6px 0;
            color: #a8bce0;
            font-size: 0.92rem;
            border-bottom: 1px solid #1a2340;
            transition: 0.2s;
        }
        .sidebar-card li a:hover {
            color: #7ec8e3;
            padding-left: 4px;
            text-decoration: none;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #0d1222;
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #7a88a8;
            background: #0d1222;
            text-align: center;
        }
        .feedback-section {
            background: #0d1222;
            border-top: 1px solid #1e2740;
            padding: 40px 0;
            margin-top: 40px;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .feedback-card {
            background: #101826;
            border: 1px solid #1e2740;
            border-radius: 16px;
            padding: 24px 28px;
        }
        .feedback-card h3 {
            font-size: 1.2rem;
            color: #f0d48a;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #2a3555;
            border-radius: 10px;
            background: #131b2e;
            color: #e8eaf0;
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #7ec8e3;
            box-shadow: 0 0 0 4px rgba(126, 200, 227, 0.1);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 24px;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #f0a85c, #e8894a);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(232, 137, 74, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #3d4a6a;
            cursor: pointer;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i.active {
            color: #f0a85c;
        }
        .rating-stars i:hover {
            color: #f0c27a;
            transform: scale(1.1);
        }
        footer {
            background: #080c1a;
            border-top: 2px solid #1a2340;
            padding: 36px 0 20px;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .footer-brand .my-logo {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        .footer-brand p {
            color: #7a88a8;
            font-size: 0.9rem;
            max-width: 340px;
        }
        .footer-links h4 {
            color: #c8d0e0;
            font-size: 1rem;
            margin-bottom: 12px;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 6px;
        }
        .footer-links a {
            color: #7a88a8;
            font-size: 0.88rem;
        }
        .footer-links a:hover {
            color: #7ec8e3;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #1a2340;
            padding-top: 18px;
            margin-top: 16px;
            text-align: center;
            color: #5a6a8a;
            font-size: 0.85rem;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            padding: 12px 0;
            margin: 8px 0;
            border-top: 1px solid #1a2340;
            border-bottom: 1px solid #1a2340;
        }
        friend-link a {
            color: #7a88a8;
            font-size: 0.88rem;
            padding: 2px 0;
        }
        friend-link a:hover {
            color: #7ec8e3;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f1425;
                padding: 12px 0;
                border-radius: 12px;
                margin-top: 8px;
                border: 1px solid #1e2740;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 20px;
                width: 100%;
                border-radius: 0;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .styled-table {
                font-size: 0.85rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 8px 10px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .feedback-card {
                padding: 16px 18px;
            }
            .breadcrumb ul {
                gap: 4px 10px;
                font-size: 0.75rem;
            }
        }
        .text-glow {
            text-shadow: 0 0 30px rgba(247, 216, 117, 0.08);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
        }
