        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf3;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #6ab0f3;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #a6d0ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #f0f5fc;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 0.6rem;
            border-left: 5px solid #f5a623;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.4rem;
            color: #d6e4f5;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #c0d4eb;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin-left: 1.8rem;
            margin-bottom: 1.4rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #f5c542;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .section-spacing {
            padding: 2.5rem 0;
        }
        .site-header {
            background: linear-gradient(145deg, #141a24, #1a212e);
            border-bottom: 2px solid #2c3a4a;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(245, 166, 35, 0.15);
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #aab8c9;
            color: #aab8c9;
            display: block;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3f5068;
            color: #d6e4f5;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a3649;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c8d6e8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .breadcrumb {
            background: #121a24;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            color: #8fa3bb;
            margin-top: 0.8rem;
            border: 1px solid #253240;
        }
        .breadcrumb a {
            color: #7fb4e8;
        }
        .breadcrumb span {
            color: #b0c7e0;
        }
        .search-section {
            background: #101721;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0 2.5rem;
            border: 1px solid #253240;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            color: #d6e4f5;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.6rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            border: 2px solid #2c3a4a;
            background: #0b0e14;
            color: #e8edf3;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #f5a623;
            box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
        }
        .search-form button {
            background: #f5a623;
            color: #0b0e14;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 1.6rem;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #f7c948;
            transform: scale(1.02);
        }
        .info-card {
            background: #141e2b;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            border: 1px solid #253e55;
            margin-bottom: 1.8rem;
            transition: 0.3s;
        }
        .info-card:hover {
            border-color: #3a5a78;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        .info-card h4 {
            margin-top: 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #1a2536;
            color: #f5c542;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #2c3a4a;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #1e2c3d;
        }
        .data-table tr:hover td {
            background: #17212f;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        @media (max-width:700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .score-box {
            background: #141e2b;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #253e55;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box textarea {
            width: 100%;
            min-height: 100px;
            background: #0b0e14;
            border: 2px solid #2c3a4a;
            border-radius: 12px;
            padding: 0.8rem 1rem;
            color: #e8edf3;
            font-size: 0.95rem;
            resize: vertical;
            outline: none;
            transition: 0.3s;
            font-family: inherit;
            margin: 0.6rem 0;
        }
        .comment-box textarea:focus {
            border-color: #f5a623;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 0.6rem 1rem;
            border-radius: 30px;
            border: 2px solid #2c3a4a;
            background: #0b0e14;
            color: #e8edf3;
            font-size: 0.95rem;
            outline: none;
            margin-bottom: 0.4rem;
            transition: 0.3s;
        }
        .comment-box input[type="text"]:focus {
            border-color: #f5a623;
        }
        .btn-submit {
            background: #f5a623;
            color: #0b0e14;
            border: none;
            border-radius: 30px;
            padding: 0.65rem 2rem;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-submit:hover {
            background: #f7c948;
            transform: scale(1.02);
        }
        .btn-submit.secondary {
            background: #2c3a4a;
            color: #e8edf3;
        }
        .btn-submit.secondary:hover {
            background: #3f5068;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3f5068;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .score-display {
            font-size: 1.1rem;
            font-weight: 600;
            color: #f5c542;
            margin-top: 0.4rem;
        }
        friend-link {
            display: block;
            background: #101721;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            border: 1px solid #253240;
            margin: 2rem 0 1rem;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #d6e4f5;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: #1a2536;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #2c3a4a;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #2a3649;
            border-color: #f5a623;
            text-decoration: none;
        }
        .site-footer {
            background: #0d121d;
            border-top: 2px solid #1e2c3d;
            padding: 2.2rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
            color: #7b8fa8;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            color: #5a6f88;
            margin-top: 1rem;
            border-top: 1px solid #1a2536;
            padding-top: 1rem;
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.4rem;
                padding: 1rem 0 0.4rem;
                border-top: 1px solid #253240;
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0.8rem;
                border-radius: 10px;
                background: #1a2536;
                border-bottom: none;
            }
            .main-nav a:hover {
                background: #253240;
            }
            .search-section {
                flex-direction: column;
                padding: 1.2rem;
            }
            .search-form {
                width: 100%;
            }
            .data-table {
                font-size: 0.82rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            .info-card {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .btn-submit {
                width: 100%;
                justify-content: center;
            }
        }
        .tag {
            display: inline-block;
            background: #1e2c3d;
            border-radius: 20px;
            padding: 0.15rem 0.8rem;
            font-size: 0.75rem;
            color: #aab8c9;
            margin-right: 0.3rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a2536, #0f1a28);
            border-left: 5px solid #f5a623;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            margin: 1.2rem 0;
        }
        .flex-icon-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            list-style: none;
            margin-left: 0;
        }
        .flex-icon-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.4rem;
        }
        .two-col-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 1.4rem 0;
        }
        @media (max-width:600px) {
            .two-col-grid {
                grid-template-columns: 1fr;
            }
        }
        .inline-img-wrap {
            margin: 1.8rem auto;
            max-width: 700px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .inline-img-wrap img {
            width: 100%;
            display: block;
        }
        .inline-img-wrap figcaption {
            background: #141e2b;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #8fa3bb;
            text-align: center;
            border-top: 1px solid #253240;
        }
