* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0d0f;
            color: #e8edf2;
            line-height: 1.75;
            padding: 0 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f0b27a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #f7d8b0;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #13171c;
            padding: 20px 24px 32px;
            border-radius: 28px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 1px solid #2a2f36;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f4a261, #e76f51);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.75rem;
            -webkit-text-fill-color: #8a9ba8;
            color: #8a9ba8;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 1px solid #3a4048;
            color: #e8edf2;
            font-size: 1.6rem;
            padding: 4px 14px;
            border-radius: 8px;
            cursor: pointer;
        }
        .hamburger:hover {
            background: #2a2f36;
        }
        nav#mainNav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
        }
        nav#mainNav a {
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav#mainNav a:hover {
            border-bottom-color: #f4a261;
            color: #f7d8b0;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 8px;
            font-size: 0.85rem;
            color: #8a9ba8;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b0c4d8;
        }
        .breadcrumb a:hover {
            color: #f4a261;
        }
        .breadcrumb span {
            color: #6a7a88;
        }
        .search-wrap {
            display: flex;
            justify-content: flex-end;
            margin: 20px 0 12px;
        }
        .search-form {
            display: flex;
            background: #1e242b;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #2f3740;
            width: 100%;
            max-width: 380px;
        }
        .search-form input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 10px 18px;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: none;
        }
        .search-form input::placeholder {
            color: #6a7a88;
        }
        .search-form button {
            background: #2f3740;
            border: none;
            color: #e8edf2;
            padding: 0 20px;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.2s;
        }
        .search-form button:hover {
            background: #f4a261;
            color: #0b0d0f;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin: 28px 0 12px;
            background: linear-gradient(135deg, #f7d8b0, #f4a261);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #f4a261;
            border-left: 5px solid #e76f51;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e8c9a0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #d4b896;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d5dee6;
        }
        .content-img {
            margin: 30px 0;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
        }
        .highlight {
            background: #1e242b;
            padding: 6px 14px;
            border-radius: 6px;
            font-weight: 600;
            color: #f7d8b0;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .data-box {
            background: #1a2027;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 30px 0;
            border-left: 6px solid #f4a261;
        }
        .data-box ul {
            list-style: none;
            padding-left: 0;
        }
        .data-box li {
            padding: 6px 0;
            border-bottom: 1px solid #2a2f36;
        }
        .data-box li:last-child {
            border-bottom: none;
        }
        .data-box i {
            color: #f4a261;
            width: 28px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #1a2027;
            border-radius: 16px;
            padding: 20px 22px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
        }
        .card i {
            font-size: 2rem;
            color: #f4a261;
            margin-bottom: 10px;
        }
        .card h4 {
            margin-top: 0;
        }
        .btn {
            display: inline-block;
            background: #2f3740;
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 500;
            transition: 0.2s;
        }
        .btn:hover {
            background: #f4a261;
            color: #0b0d0f;
            text-decoration: none;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 20px;
        }
        .comment-box,
        .score-box {
            background: #1a2027;
            border-radius: 18px;
            padding: 24px 26px;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-box form,
        .score-box form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .comment-box input,
        .comment-box textarea,
        .score-box select,
        .score-box input {
            background: #0f1318;
            border: 1px solid #2f3740;
            border-radius: 10px;
            padding: 10px 14px;
            color: #e8edf2;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: 0.2s;
        }
        .comment-box input:focus,
        .comment-box textarea:focus,
        .score-box select:focus,
        .score-box input:focus {
            border-color: #f4a261;
        }
        .comment-box textarea {
            min-height: 80px;
            resize: vertical;
        }
        .comment-box button,
        .score-box button {
            background: #f4a261;
            border: none;
            color: #0b0d0f;
            font-weight: 700;
            padding: 10px 0;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #e76f51;
            transform: scale(1.02);
        }
        footer {
            margin-top: 50px;
            padding-top: 28px;
            border-top: 1px solid #2a2f36;
            font-size: 0.95rem;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            padding: 16px 0;
            background: #1a2027;
            border-radius: 16px;
            padding: 18px 24px;
            margin-bottom: 24px;
        }
        .friend-link a {
            font-weight: 500;
        }
        .friend-link a::before {
            content: "🔗 ";
            font-size: 0.8rem;
        }
        .copyright {
            text-align: center;
            color: #6a7a88;
            padding: 16px 0 4px;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #b0c4d8;
        }
        .last-update {
            text-align: right;
            font-size: 0.8rem;
            color: #5a6a78;
            margin-top: 4px;
        }
        @media (max-width: 820px) {
            .container {
                padding: 14px 16px 24px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav#mainNav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 0;
                gap: 6px;
            }
            nav#mainNav.open {
                display: flex;
            }
            .search-wrap {
                justify-content: stretch;
            }
            .search-form {
                max-width: 100%;
            }
            .friend-link {
                flex-direction: column;
                gap: 8px;
            }
            .data-box {
                padding: 16px 18px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 6px;
            }
            .container {
                padding: 10px 10px 20px;
                border-radius: 18px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
