* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        a {
            color: #7ec8e3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b5e4f7;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #131a24;
            padding: 0 24px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0 12px;
            border-bottom: 1px solid #2a3a4a;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c27f, #fc5c7d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(252, 92, 125, 0.2);
            font-style: italic;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #8a9bb5;
            color: #8a9bb5;
            letter-spacing: 0.3px;
            display: block;
            font-style: normal;
        }
        .my-logo a {
            text-decoration: none;
            color: inherit;
            -webkit-text-fill-color: inherit;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #c8d6e5;
            transition: background 0.25s, color 0.25s;
        }
        nav a:hover {
            background: #1e2d3d;
            color: #f0c27f;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 1px solid #3a4a5a;
            color: #e8edf5;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1e2d3d;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 16px 0 8px;
            font-size: 0.85rem;
            color: #7a8a9a;
            gap: 6px;
        }
        .breadcrumb a {
            color: #7ec8e3;
        }
        .breadcrumb span {
            color: #b0c4d8;
        }
        .search-box {
            display: flex;
            max-width: 520px;
            margin: 24px 0 20px;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid #2a3a4a;
            background: #0f151e;
            transition: border 0.3s;
        }
        .search-box:focus-within {
            border-color: #f0c27f;
        }
        .search-box input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #5a6a7a;
        }
        .search-box button {
            padding: 14px 28px;
            background: #1e2d3d;
            border: none;
            color: #f0c27f;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-box button:hover {
            background: #2a3a4a;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 28px 0 12px;
            background: linear-gradient(135deg, #f0c27f, #fc5c7d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #1e2d3d;
            color: #f0c27f;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e8cfa0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #b8ccdd;
        }
        p {
            margin-bottom: 18px;
            color: #d0dce8;
            font-size: 1.02rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #e8edf5;
            font-weight: 400;
            background: #1a2532;
            padding: 20px 24px;
            border-radius: 16px;
            border-left: 4px solid #f0c27f;
            margin: 24px 0;
        }
        .highlight {
            background: #1a2532;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
            color: #f0c27f;
        }
        .emoji-lg {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        .img-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a2532;
            padding: 8px;
        }
        .img-wrapper img {
            display: block;
            width: 100%;
            border-radius: 12px;
        }
        .img-wrapper figcaption {
            text-align: center;
            padding: 12px 8px 4px;
            font-size: 0.9rem;
            color: #8a9bb5;
            font-style: italic;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 48px 0 32px;
            background: #0f151e;
            border-radius: 20px;
            padding: 28px 32px;
            border: 1px solid #1e2d3d;
        }
        .comment-section,
        .rating-section {
            background: #131c28;
            padding: 24px;
            border-radius: 16px;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            color: #f0c27f;
        }
        .comment-section textarea,
        .rating-section input,
        .rating-section select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #2a3a4a;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            margin-bottom: 12px;
            font-family: inherit;
        }
        .comment-section textarea:focus,
        .rating-section input:focus,
        .rating-section select:focus {
            border-color: #f0c27f;
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #f0c27f, #fc5c7d);
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(252, 92, 125, 0.3);
        }
        .btn-secondary {
            background: #1e2d3d;
            color: #e8edf5;
        }
        .btn-secondary:hover {
            background: #2a3a4a;
            box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #3a4a5a;
            cursor: pointer;
            margin: 8px 0 16px;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f0c27f;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            background: #0f151e;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 40px 0 20px;
            border: 1px solid #1e2d3d;
        }
        friend-link h3 {
            margin-top: 0;
            color: #f0c27f;
            font-size: 1.4rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 0;
        }
        friend-link li {
            margin: 0;
        }
        friend-link a {
            color: #7ec8e3;
            font-weight: 500;
        }
        footer {
            padding: 28px 0 20px;
            border-top: 1px solid #1e2d3d;
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #6a7a8a;
        }
        footer a {
            color: #7ec8e3;
        }
        .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
            color: #5a6a7a;
        }
        @media (max-width: 820px) {
            .container {
                padding: 0 16px 30px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            nav {
                width: 100%;
            }
            .nav-menu a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 10px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-box button {
                border-radius: 0 0 16px 16px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 8px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 12px 24px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .lead {
                font-size: 1rem;
                padding: 16px;
            }
            .interaction-area {
                padding: 12px;
            }
            .comment-section,
            .rating-section {
                padding: 16px;
            }
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-1 {
            margin-bottom: 8px;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .gap-2 {
            gap: 16px;
        }
        .text-muted {
            color: #6a7a8a;
        }
        .badge {
            display: inline-block;
            background: #1e2d3d;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #b0c4d8;
            letter-spacing: 0.3px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #5a6a7a;
            margin: 8px 0 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #f0c27f;
        }
