* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0e17;
            color: #e8e6e3;
            line-height: 1.85;
            font-size: 17px;
            padding: 0 20px;
        }
        a {
            color: #f3c74d;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #111722;
            padding: 20px 30px 40px;
            border-radius: 20px;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 12px;
            border-bottom: 2px solid #2a3346;
            position: relative;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f3c74d;
            background: linear-gradient(145deg, #f3c74d, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(243, 199, 77, 0.25);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f3c74d;
            margin-right: 6px;
        }
        nav {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            color: #c8c6c2;
            transition: all 0.2s;
            border: 1px solid transparent;
        }
        nav a:hover {
            background: #1f2a3f;
            color: #f3c74d;
            border-color: #f3c74d;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: #f3c74d;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2a3f;
        }
        .nav-open {
            display: flex !important;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 14px;
            color: #9a9a9a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b0a8a0;
        }
        .breadcrumb a:hover {
            color: #f3c74d;
        }
        .breadcrumb span {
            color: #6a6a6a;
        }
        .search-box {
            display: flex;
            gap: 8px;
            max-width: 460px;
            margin: 24px 0 20px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 40px;
            border: 1px solid #2a3346;
            background: #0d121f;
            color: #e8e6e3;
            font-size: 16px;
            outline: none;
            transition: border 0.2s;
        }
        .search-box input:focus {
            border-color: #f3c74d;
        }
        .search-box button {
            padding: 12px 26px;
            border-radius: 40px;
            border: none;
            background: #f3c74d;
            color: #0b0e17;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-box button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        h1 {
            font-size: 38px;
            font-weight: 800;
            color: #f3c74d;
            margin: 30px 0 12px;
            line-height: 1.25;
            letter-spacing: -0.5px;
            border-left: 6px solid #f3c74d;
            padding-left: 20px;
        }
        h2 {
            font-size: 30px;
            font-weight: 700;
            color: #e6d5a8;
            margin: 50px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a3346;
        }
        h3 {
            font-size: 24px;
            font-weight: 600;
            color: #d4c29a;
            margin: 34px 0 12px;
        }
        h4 {
            font-size: 20px;
            font-weight: 600;
            color: #c0b08a;
            margin: 24px 0 10px;
        }
        p {
            margin: 14px 0;
            color: #dcd8d0;
        }
        .highlight {
            background: linear-gradient(90deg, #1f2a3f, #0d121f);
            padding: 4px 12px;
            border-radius: 6px;
            font-weight: 600;
            color: #f3c74d;
        }
        .emoji-big {
            font-size: 28px;
            margin-right: 8px;
        }
        ul,
        ol {
            margin: 14px 0 14px 28px;
            color: #dcd8d0;
        }
        li {
            margin: 8px 0;
        }
        blockquote {
            border-left: 4px solid #f3c74d;
            background: #1a2335;
            padding: 16px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8c0b0;
        }
        .last-updated {
            font-size: 14px;
            color: #8a8a8a;
            text-align: right;
            margin: 20px 0 8px;
            border-top: 1px solid #2a3346;
            padding-top: 16px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .rating-area {
            background: #1a2335;
            border-radius: 16px;
            padding: 30px 28px;
            margin: 40px 0 20px;
            border: 1px solid #2a3346;
        }
        .rating-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 32px;
            cursor: pointer;
            color: #444;
            margin: 12px 0 16px;
        }
        .star-rating .fa-star {
            transition: color 0.15s, transform 0.15s;
        }
        .star-rating .fa-star:hover,
        .star-rating .fa-star.active {
            color: #f3c74d;
            transform: scale(1.1);
        }
        .rating-area form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 10px;
        }
        .rating-area form input,
        .rating-area form textarea {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3346;
            background: #0d121f;
            color: #e8e6e3;
            font-size: 15px;
            outline: none;
            transition: border 0.2s;
        }
        .rating-area form input:focus,
        .rating-area form textarea:focus {
            border-color: #f3c74d;
        }
        .rating-area form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-area form button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: #f3c74d;
            color: #0b0e17;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .rating-area form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .rating-area .score-display {
            font-size: 20px;
            color: #f3c74d;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .comment-area {
            background: #1a2335;
            border-radius: 16px;
            padding: 30px 28px;
            margin: 30px 0 20px;
            border: 1px solid #2a3346;
        }
        .comment-area h3 {
            margin-top: 0;
        }
        .comment-area form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-area form input,
        .comment-area form textarea {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3346;
            background: #0d121f;
            color: #e8e6e3;
            font-size: 15px;
            outline: none;
            transition: border 0.2s;
        }
        .comment-area form input:focus,
        .comment-area form textarea:focus {
            border-color: #f3c74d;
        }
        .comment-area form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-area form button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: #f3c74d;
            color: #0b0e17;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-area form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            background: #1a2335;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 40px 0 20px;
            border: 1px solid #2a3346;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 22px;
            color: #f3c74d;
        }
        friend-link ul {
            list-style: none;
            margin: 12px 0 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 14px 28px;
        }
        friend-link ul li {
            margin: 0;
        }
        friend-link ul li a {
            color: #c8c6c2;
            font-size: 15px;
            transition: color 0.2s;
        }
        friend-link ul li a:hover {
            color: #f3c74d;
        }
        footer {
            text-align: center;
            padding: 28px 0 12px;
            border-top: 2px solid #2a3346;
            margin-top: 40px;
            font-size: 14px;
            color: #7a7a7a;
        }
        footer a {
            color: #b0a8a0;
        }
        footer a:hover {
            color: #f3c74d;
        }
        .link-list {
            background: #1a2335;
            border-radius: 12px;
            padding: 18px 24px;
            margin: 20px 0;
            border-left: 4px solid #f3c74d;
        }
        .link-list a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
                font-size: 16px;
            }
            .container {
                padding: 12px 14px 30px;
            }
            h1 {
                font-size: 28px;
                padding-left: 14px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            h4 {
                font-size: 18px;
            }
            header {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 22px;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0d121f;
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 12px;
                border: 1px solid #2a3346;
            }
            nav a {
                padding: 10px 16px;
                width: 100%;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
                text-align: center;
            }
            .star-rating {
                font-size: 28px;
            }
            friend-link ul {
                flex-direction: column;
                gap: 8px;
            }
            .breadcrumb {
                font-size: 12px;
            }
            .rating-area,
            .comment-area {
                padding: 20px 16px;
            }
            .rating-area form button,
            .comment-area form button {
                width: 100%;
                text-align: center;
            }
        }
        @media (min-width: 769px) {
            nav {
                display: flex !important;
            }
        }
        .text-gold {
            color: #f3c74d;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-small {
            padding: 6px 18px;
            border-radius: 30px;
            border: 1px solid #f3c74d;
            background: transparent;
            color: #f3c74d;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-small:hover {
            background: #f3c74d;
            color: #0b0e17;
        }
