        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0b1a;
            color: #e8e8f0;
            line-height: 1.8;
            padding: 0 1.25rem;
            max-width: 1280px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #f5d742;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffec8a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.8rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid #f5d742;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 2rem;
            border-left: 6px solid #f5d742;
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f5d742;
        }
        h4 {
            font-size: 1.2rem;
            color: #c8d6e5;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong,
        b {
            color: #fff;
            font-weight: 700;
        }
        em,
        i {
            font-style: italic;
            color: #f5d742;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        header {
            padding: 1.5rem 0 0.5rem 0;
            border-bottom: 2px solid #2d2d4a;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5d742, #f9a825);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(245, 215, 66, 0.15);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.9rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #c8d6e5;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            background: rgba(245, 215, 66, 0.12);
            border-color: #f5d742;
            color: #f5d742;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5d742;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(245, 215, 66, 0.1);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.75rem 0 0.25rem 0;
            margin: 0 0 1.5rem 0;
            font-size: 0.85rem;
            color: #8899aa;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #f5d742;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #8899aa;
        }
        .breadcrumb a:hover {
            color: #f5d742;
        }
        .breadcrumb .current {
            color: #f5d742;
            font-weight: 600;
        }
        .search-section {
            background: #1a1a35;
            border-radius: 16px;
            padding: 2rem 2rem 2.5rem 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2d2d4a;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 1rem 1.5rem;
            border: 2px solid #2d2d4a;
            border-radius: 50px;
            background: #0b0b1a;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5d742;
        }
        .search-form button {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #f5d742, #e6b800);
            color: #0b0b1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(245, 215, 66, 0.3);
        }
        .feature-box {
            background: #1a1a35;
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid #2d2d4a;
            transition: border-color 0.3s;
        }
        .feature-box:hover {
            border-color: #f5d74244;
        }
        .grid-2,
        .grid-3 {
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }
        .grid-2 {
            grid-template-columns: 1fr 1fr;
        }
        .grid-3 {
            grid-template-columns: 1fr 1fr 1fr;
        }
        .image-wrapper {
            margin: 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            background: #1a1a35;
            padding: 0.5rem;
        }
        .image-wrapper img {
            border-radius: 10px;
            width: 100%;
        }
        .image-wrapper figcaption {
            padding: 1rem 1rem 0.5rem 1rem;
            font-size: 0.9rem;
            color: #8899aa;
            text-align: center;
            font-style: italic;
        }
        .comment-section,
        .rating-section {
            background: #1a1a35;
            border-radius: 16px;
            padding: 2rem 2rem 2.5rem 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2d2d4a;
        }
        .comment-section textarea {
            width: 100%;
            min-height: 140px;
            padding: 1.2rem;
            border: 2px solid #2d2d4a;
            border-radius: 12px;
            background: #0b0b1a;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-section textarea:focus {
            border-color: #f5d742;
        }
        .comment-section input[type="text"],
        .rating-section input[type="number"],
        .rating-section select {
            padding: 0.8rem 1.2rem;
            border: 2px solid #2d2d4a;
            border-radius: 10px;
            background: #0b0b1a;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            width: 100%;
            max-width: 400px;
        }
        .comment-section input[type="text"]:focus,
        .rating-section input[type="number"]:focus,
        .rating-section select:focus {
            border-color: #f5d742;
        }
        .btn {
            padding: 0.8rem 2.2rem;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #f5d742, #e6b800);
            color: #0b0b1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .btn:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(245, 215, 66, 0.25);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5d742;
            color: #f5d742;
        }
        .btn-outline:hover {
            background: rgba(245, 215, 66, 0.1);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: #c8d6e5;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #444;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
            color: #444;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5d742;
            transform: scale(1.1);
        }
        footer {
            margin-top: 4rem;
            padding: 3rem 0 2rem 0;
            border-top: 2px solid #2d2d4a;
        }
        friend-link {
            display: block;
            background: #1a1a35;
            border-radius: 16px;
            padding: 2rem 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid #2d2d4a;
        }
        friend-link::before {
            content: "🌐 Friends & Related Links";
            display: block;
            font-size: 1.4rem;
            font-weight: 700;
            color: #f5d742;
            margin-bottom: 1.2rem;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
            list-style: none;
            padding: 0;
        }
        .friend-list li a {
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s;
        }
        .friend-list li a:hover {
            border-bottom-color: #f5d742;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding: 1.5rem 0 0.5rem 0;
            font-size: 0.9rem;
            color: #667788;
            border-top: 1px solid #1a1a35;
            margin-top: 1rem;
        }
        .copyright strong {
            color: #8899aa;
        }
        @media (max-width: 900px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .header-top {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-wrapper {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                background: #12122a;
                border-radius: 12px;
                padding: 0.75rem;
                border: 1px solid #2d2d4a;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.7rem 1rem;
            }
            .hamburger {
                display: inline-block;
                align-self: flex-end;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .feature-box,
            .search-section,
            .comment-section,
            .rating-section {
                padding: 1.2rem;
            }
            .btn {
                padding: 0.6rem 1.4rem;
                font-size: 0.9rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .badge {
            display: inline-block;
            background: #f5d742;
            color: #0b0b1a;
            padding: 0.2rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #667788;
            margin-top: -0.5rem;
            margin-bottom: 2rem;
            display: block;
        }
        blockquote {
            border-left: 4px solid #f5d742;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: rgba(245, 215, 66, 0.04);
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8d6e5;
        }
        blockquote strong {
            color: #f5d742;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a35;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 1rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #2d2d4a;
        }
        th {
            background: #f5d742;
            color: #0b0b1a;
            font-weight: 700;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: rgba(245, 215, 66, 0.04);
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s ease forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
        .delay-4 {
            animation-delay: 0.4s;
        }
