* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0e1a;
            color: #e8edf5;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffaa00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #141b2b;
            border-bottom: 3px solid #ffcc00;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #ffcc00, #ff8800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(255, 204, 0, 0.15);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ffcc00;
            margin-right: 6px;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #ffcc00;
            color: #ffcc00;
            font-size: 24px;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #ffcc00;
            color: #0b0e1a;
        }
        .main-nav {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #c8d0e0;
            font-weight: 500;
            font-size: 15px;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            color: #ffcc00;
            border-bottom-color: #ffcc00;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a2340;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #2a3555;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #6a7a9a;
        }
        .breadcrumb a {
            color: #8a9abb;
        }
        .breadcrumb .active {
            color: #ffcc00;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0f172a, #1a2340);
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 2px solid #2a3555;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            color: #ffcc00;
            text-shadow: 0 4px 30px rgba(255, 204, 0, 0.2);
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0c0dd;
            max-width: 700px;
            margin: 0 auto 20px;
        }
        .hero .badge {
            display: inline-block;
            background: #ffcc00;
            color: #0b0e1a;
            font-weight: 700;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        .section {
            padding: 50px 0;
            border-bottom: 1px solid #1e2840;
        }
        .section:last-of-type {
            border-bottom: none;
        }
        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffcc00;
            margin-bottom: 20px;
            position: relative;
            padding-left: 18px;
        }
        .section h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            bottom: 6px;
            width: 4px;
            background: #ff8800;
            border-radius: 4px;
        }
        .section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f0e6c0;
            margin: 28px 0 14px;
        }
        .section h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d0c8a0;
            margin: 20px 0 10px;
        }
        .section p {
            margin-bottom: 16px;
            color: #d0d8e8;
        }
        .section ul,
        .section ol {
            margin: 12px 0 20px 24px;
            color: #c8d0e0;
        }
        .section li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #1a2340;
            border-left: 5px solid #ffcc00;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #ffcc00;
        }
        .img-wrapper {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a2340;
            padding: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }
        .img-wrapper img {
            border-radius: 10px;
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .img-wrapper .caption {
            text-align: center;
            padding: 10px 0 4px;
            font-size: 14px;
            color: #8a9abb;
            font-style: italic;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 520px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #2a3555;
            border-radius: 30px;
            background: #0f172a;
            color: #e8edf5;
            font-size: 16px;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #ffcc00;
            box-shadow: 0 0 20px rgba(255, 204, 0, 0.1);
        }
        .search-form button {
            padding: 12px 28px;
            border: none;
            border-radius: 30px;
            background: #ffcc00;
            color: #0b0e1a;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffaa00;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            background: #141b2b;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 28px 0;
            border: 1px solid #2a3555;
        }
        .comment-section h3,
        .rating-section h3 {
            color: #ffcc00;
            margin-top: 0;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #2a3555;
            border-radius: 10px;
            background: #0f172a;
            color: #e8edf5;
            font-size: 15px;
            margin-bottom: 14px;
            outline: none;
            transition: 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #ffcc00;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 12px 32px;
            border: none;
            border-radius: 30px;
            background: #ffcc00;
            color: #0b0e1a;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ffaa00;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            cursor: pointer;
            margin: 10px 0 16px;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a4560;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffcc00;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .link-grid a {
            background: #1a2340;
            padding: 10px 16px;
            border-radius: 8px;
            border: 1px solid #2a3555;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .link-grid a:hover {
            background: #2a3555;
            border-color: #ffcc00;
            text-decoration: none;
        }
        .site-footer {
            background: #0b0e1a;
            border-top: 3px solid #ffcc00;
            padding: 40px 0 30px;
            margin-top: 20px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .site-footer h4 {
            color: #ffcc00;
            margin-bottom: 12px;
            font-size: 18px;
        }
        .site-footer a {
            color: #8a9abb;
            display: block;
            padding: 4px 0;
            font-size: 14px;
        }
        .site-footer a:hover {
            color: #ffcc00;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #1e2840;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            color: #6a7a9a;
        }
        friend-link a:hover {
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #1e2840;
            color: #5a6a8a;
            font-size: 14px;
        }
        .copyright strong {
            color: #8a9abb;
        }
        .last-updated {
            display: inline-block;
            background: #1a2340;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 13px;
            color: #8a9abb;
            margin-top: 6px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 14px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 12px;
                border-bottom: 1px solid #1e2840;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section h2 {
                font-size: 1.5rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 22px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .star-rating {
                font-size: 24px;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 14px;
            }
            .comment-section,
            .rating-section {
                padding: 18px 16px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #ffcc00;
            color: #0b0e1a;
        }
.main-nav { display: flex !important; }
            .nav-toggle { display: none !important; }
