        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #0b0c10;
            color: #e0e0e0;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #f0e6d0;
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            letter-spacing: 0.02em;
        }
        h1 {
            font-size: 2.6rem;
            border-left: 6px solid #f7c948;
            padding-left: 1rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #2a2d35;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f7c948;
        }
        h4 {
            font-size: 1.2rem;
            color: #cfd8dc;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1rem;
            color: #d5d8dc;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
            color: #d5d8dc;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong,
        b {
            color: #f0e6d0;
            font-weight: 700;
        }
        em,
        i {
            color: #f7c948;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2d35;
            margin: 2.5rem 0;
        }
        .container {
            background: #14161c;
            border-radius: 24px;
            padding: 1.8rem 2rem 2.5rem;
            margin: 1.2rem 0 2rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .flex-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            align-items: flex-start;
        }
        .flex-col {
            flex: 1 1 280px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.8rem;
        }
        .card {
            background: #1e2129;
            border-radius: 16px;
            padding: 1.6rem;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #2e323c;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(247, 201, 72, 0.08);
        }
        .badge {
            display: inline-block;
            background: #f7c948;
            color: #0b0c10;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .top-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0 0.4rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f7c948;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f7c948, #f0a832);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #9aa0a8;
            -webkit-text-fill-color: #9aa0a8;
            display: block;
            letter-spacing: 0;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            list-style: none;
            margin: 0;
            align-items: center;
        }
        .nav-links li a {
            color: #c8ccd4;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-links li a:hover {
            color: #f7c948;
            border-bottom-color: #f7c948;
            text-decoration: none;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #f7c948;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        #nav-check {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            color: #8a909a;
            padding: 0.4rem 0 0.8rem;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a606a;
        }
        .breadcrumb a {
            color: #b0b6be;
        }
        .breadcrumb a:hover {
            color: #f7c948;
        }
        .breadcrumb .current {
            color: #f7c948;
        }
        .search-wrap {
            background: #1e2129;
            border-radius: 40px;
            padding: 0.3rem 0.3rem 0.3rem 1.4rem;
            display: flex;
            align-items: center;
            max-width: 480px;
            border: 1px solid #2e323c;
            transition: 0.2s;
            margin: 1.2rem 0 1.8rem;
        }
        .search-wrap:focus-within {
            border-color: #f7c948;
            box-shadow: 0 0 0 3px rgba(247, 201, 72, 0.15);
        }
        .search-wrap input {
            background: transparent;
            border: none;
            padding: 0.7rem 0;
            flex: 1;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-wrap input::placeholder {
            color: #7a808a;
        }
        .search-wrap button {
            background: #f7c948;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.4rem;
            color: #0b0c10;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-wrap button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .form-card {
            background: #1e2129;
            border-radius: 18px;
            padding: 1.8rem;
            border: 1px solid #2e323c;
            margin: 1.8rem 0;
        }
        .form-card label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #f0e6d0;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            margin-bottom: 1.2rem;
            border-radius: 12px;
            border: 1px solid #3a3e48;
            background: #0b0c10;
            color: #e0e0e0;
            font-size: 1rem;
            transition: 0.2s;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #f7c948;
            box-shadow: 0 0 0 3px rgba(247, 201, 72, 0.12);
        }
        .form-card textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-card .btn {
            background: #f7c948;
            color: #0b0c10;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-card .btn:hover {
            background: #ffdd77;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #4a4e58;
            cursor: pointer;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f7c948;
        }
        .feature-img {
            border-radius: 16px;
            margin: 1.5rem 0 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #8a909a;
            text-align: center;
            margin-top: -0.8rem;
            margin-bottom: 1.8rem;
            font-style: italic;
        }
        friend-link {
            display: block;
            background: #1a1d24;
            border-radius: 16px;
            padding: 1.2rem 1.8rem;
            margin: 2rem 0 0.8rem;
            border: 1px solid #2a2d35;
        }
        friend-link .fl-head {
            font-weight: 700;
            color: #f7c948;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            display: block;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            list-style: none;
            margin: 0;
        }
        friend-link .fl-list li a {
            color: #b0b6be;
            font-size: 0.9rem;
        }
        friend-link .fl-list li a:hover {
            color: #f7c948;
        }
        .footer-copy {
            text-align: center;
            padding: 1.6rem 0 0.8rem;
            font-size: 0.85rem;
            color: #6a707a;
            border-top: 1px solid #2a2d35;
            margin-top: 2rem;
        }
        .footer-copy a {
            color: #9aa0a8;
        }
        .footer-copy a:hover {
            color: #f7c948;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1.2rem 1rem 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.6rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .top-bar {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1d24;
                border-radius: 16px;
                padding: 1rem 1.2rem;
                margin-top: 0.6rem;
                gap: 0.6rem;
            }
            .menu-toggle {
                display: block;
            }
            #nav-check:checked~.nav-links {
                display: flex;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .search-wrap {
                flex-wrap: wrap;
                border-radius: 24px;
                padding: 0.3rem;
            }
            .search-wrap input {
                padding: 0.5rem 0.8rem;
                font-size: 0.9rem;
            }
            .search-wrap button {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .flex-row {
                flex-direction: column;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (min-width: 769px) {
            .menu-toggle {
                display: none !important;
            }
            .nav-links {
                display: flex !important;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0.8rem 0.6rem 1.2rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .form-card {
                padding: 1rem;
            }
            .card {
                padding: 1rem;
            }
        }
        .tagline {
            font-size: 1.2rem;
            color: #aab0b8;
            margin-bottom: 1.8rem;
            font-style: italic;
        }
        .stat-highlight {
            background: #1e2129;
            border-left: 4px solid #f7c948;
            padding: 1rem 1.4rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .stat-highlight span {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f7c948;
            display: block;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1d24;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2d35;
        }
        th {
            background: #2a2d35;
            color: #f7c948;
            font-weight: 700;
        }
        td {
            color: #d5d8dc;
        }
        .back-top {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: #f7c948;
            font-weight: 600;
            margin-top: 1.2rem;
        }
        .back-top:hover {
            text-decoration: none;
            gap: 0.8rem;
        }
        .note {
            background: #1e2129;
            padding: 1rem 1.4rem;
            border-radius: 12px;
            border: 1px dashed #3a3e48;
            font-size: 0.95rem;
            margin: 1.2rem 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
            display: inline-block;
            margin-right: 0.2rem;
        }
