        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e1a;
            color: #e8eaf0;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #7ec8e3;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #b3e4ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7e05e, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 1.5rem 0 0.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0d78c;
            margin: 2.5rem 0 1rem;
            border-bottom: 2px solid #2a2f4a;
            padding-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #d4c27e;
            margin: 2rem 0 0.75rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #b8a86a;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.25rem;
            font-size: 1.0625rem;
            color: #d6dae5;
        }
        .text-muted {
            color: #9aa2b8;
        }
        .text-small {
            font-size: 0.9rem;
        }
        header {
            padding: 1.5rem 0 0.5rem;
            position: relative;
        }
        .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7e05e, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            display: inline-block;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 1rem;
            font-weight: 400;
            -webkit-text-fill-color: #9aa2b8;
            color: #9aa2b8;
            margin-left: 0.5rem;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8cee0;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-bar a:hover {
            background: #1e2340;
            color: #f0d78c;
            text-decoration: none;
        }
        .nav-bar a i {
            margin-right: 0.35rem;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e8eaf0;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1e2340;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.6rem;
            padding: 0.75rem 0;
            font-size: 0.9rem;
            color: #9aa2b8;
            list-style: none;
            margin-top: 0.5rem;
            border-top: 1px solid #1e2340;
            border-bottom: 1px solid #1e2340;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #5a6280;
            font-size: 1.2rem;
            margin-right: 0.4rem;
        }
        .breadcrumb a {
            color: #7ec8e3;
        }
        .breadcrumb .active {
            color: #f0d78c;
            font-weight: 500;
        }
        .container {
            padding: 1rem 0 3rem;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .flex-row {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: flex-start;
        }
        .flex-row>div {
            flex: 1 1 280px;
        }
        .card {
            background: #13172b;
            border-radius: 14px;
            padding: 1.5rem;
            border: 1px solid #1e2340;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
            border-color: #3a4168;
        }
        .card h4 {
            margin-top: 0;
        }
        .card i {
            color: #f0d78c;
            margin-right: 0.5rem;
        }
        .featured-img {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            background: #1a1f38;
        }
        .featured-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-img figcaption {
            padding: 0.75rem 1.25rem;
            font-size: 0.9rem;
            color: #9aa2b8;
            font-style: italic;
            background: #0d1121;
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: #d4c27e;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            background: #0d1121;
            border: 1px solid #2a2f4a;
            border-radius: 8px;
            color: #e8eaf0;
            font-size: 1rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .form-control:focus {
            outline: none;
            border-color: #f0d78c;
            box-shadow: 0 0 0 3px rgba(240, 215, 140, 0.15);
        }
        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 2rem;
            background: linear-gradient(135deg, #f0d78c, #d4b85e);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 215, 140, 0.3);
            opacity: 0.95;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0d78c;
            color: #f0d78c;
        }
        .btn-outline:hover {
            background: #f0d78c;
            color: #0b0e1a;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
            font-size: 1.8rem;
            margin: 0.5rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3a4168;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
            transform: scale(1.05);
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #1e2340;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item strong {
            color: #f0d78c;
        }
        .comment-item .date {
            font-size: 0.85rem;
            color: #7a829e;
            margin-left: 1rem;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 1px solid #1e2340;
            margin-top: 2rem;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
            list-style: none;
            padding: 0;
            margin-top: 0.5rem;
        }
        friend-link ul li a {
            color: #7ec8e3;
            font-weight: 500;
        }
        friend-link ul li a:hover {
            color: #b3e4ff;
        }
        footer {
            padding: 2rem 0 3rem;
            border-top: 1px solid #1e2340;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #7a829e;
        }
        footer .copyright {
            margin-top: 0.75rem;
            font-weight: 400;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2f4a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4168;
        }
        @media (max-width: 900px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0d1121;
                border-radius: 12px;
                padding: 1rem 0.5rem;
                margin-top: 0.75rem;
                border: 1px solid #1e2340;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-bar a {
                padding: 0.75rem 1rem;
                width: 100%;
            }
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .flex-row>div {
                flex: 1 1 100%;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 0.3rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.8rem;
            }
            .btn {
                padding: 0.6rem 1.25rem;
                font-size: 0.9rem;
            }
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .pt-2 {
            padding-top: 2rem;
        }
        .pb-2 {
            padding-bottom: 2rem;
        }
        .text-center {
            text-align: center;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(240, 215, 140, 0.12), rgba(240, 215, 140, 0.04));
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
            font-weight: 600;
            color: #f0d78c;
        }
        .badge {
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            background: #1e2340;
            color: #f0d78c;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #2a2f4a, transparent);
            margin: 2.5rem 0;
        }
