* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0b0c10;
            color: #e5e7eb;
            line-height: 1.8;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #f59e0b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #fbbf24;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0 12px;
            border-bottom: 1px solid #1f2937;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f59e0b;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.55rem;
            -webkit-text-fill-color: initial;
            color: #9ca3af;
            font-weight: 400;
            display: block;
            letter-spacing: 0.3px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f59e0b;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2937;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
        }
        nav a {
            color: #d1d5db;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav a:hover {
            color: #f59e0b;
            border-bottom-color: #f59e0b;
            text-decoration: none;
        }
        nav a i {
            margin-right: 4px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            font-size: 0.85rem;
            color: #9ca3af;
            padding: 14px 0 8px;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #6b7280;
            font-size: 1.1rem;
        }
        .breadcrumb a {
            color: #9ca3af;
        }
        .breadcrumb a:hover {
            color: #f59e0b;
        }
        .breadcrumb .current {
            color: #f59e0b;
            font-weight: 600;
        }
        main {
            padding: 28px 0 48px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f59e0b, #ef4444, #f59e0b);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 6s ease-in-out infinite;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        @keyframes shimmer {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #fbbf24;
            margin-top: 44px;
            margin-bottom: 14px;
            border-left: 4px solid #ef4444;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: #f59e0b;
            margin-top: 32px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #e5e7eb;
            margin-top: 22px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.05rem;
            color: #d1d5db;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.10));
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.3rem;
            margin-right: 4px;
        }
        .info-box {
            background: #1f2937;
            border-left: 4px solid #f59e0b;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 28px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .info-box p:last-child {
            margin-bottom: 0;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .card {
            background: #1a1d23;
            border-radius: 14px;
            padding: 20px 18px;
            border: 1px solid #2d3748;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(245, 158, 11, 0.08);
            border-color: #f59e0b;
        }
        .card i {
            font-size: 1.8rem;
            color: #f59e0b;
            margin-bottom: 8px;
        }
        .card h4 {
            margin-top: 0;
            color: #fbbf24;
        }
        .card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a1d23;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
            min-height: 200px;
            object-fit: cover;
            background: #2d3748;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #9ca3af;
            padding: 10px 0 4px;
            font-style: italic;
        }
        .form-section {
            background: #1a1d23;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 32px 0;
            border: 1px solid #2d3748;
        }
        .form-section h3 i {
            color: #f59e0b;
            margin-right: 8px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 4px;
            color: #d1d5db;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            background: #0b0c10;
            border: 1px solid #374151;
            border-radius: 8px;
            color: #e5e7eb;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f59e0b;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
        }
        .btn-secondary {
            background: #374151;
            color: #e5e7eb;
        }
        .btn-secondary:hover {
            background: #4b5563;
            box-shadow: none;
            transform: none;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #4b5563;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        .comment-item {
            background: #1f2937;
            border-radius: 10px;
            padding: 16px 20px;
            margin-bottom: 12px;
            border-left: 3px solid #f59e0b;
        }
        .comment-item strong {
            color: #fbbf24;
        }
        .comment-item small {
            color: #6b7280;
            font-size: 0.8rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1d23;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid #2d3748;
        }
        th {
            background: #f59e0b;
            color: #0b0c10;
            font-weight: 700;
        }
        tr:hover td {
            background: #1f2937;
        }
        footer {
            border-top: 1px solid #1f2937;
            padding: 32px 0 24px;
            margin-top: 32px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }
        footer h4 {
            color: #f59e0b;
            font-size: 1.1rem;
            margin-top: 0;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 6px;
        }
        footer ul li a {
            font-size: 0.9rem;
            color: #9ca3af;
        }
        footer ul li a:hover {
            color: #f59e0b;
        }
        .copyright {
            text-align: center;
            color: #6b7280;
            font-size: 0.85rem;
            padding-top: 16px;
            border-top: 1px solid #1f2937;
        }
        friend-link {
            display: block;
            margin: 12px 0;
            padding: 12px 16px;
            background: #1a1d23;
            border-radius: 10px;
            border: 1px solid #2d3748;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 12px;
            }
            header {
                padding: 14px 0 8px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 2px;
                padding: 12px 0 6px;
                border-top: 1px solid #1f2937;
                margin-top: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 0;
                border-bottom: 1px solid #1f2937;
                width: 100%;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .form-section {
                padding: 18px 16px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 6px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .info-box {
                padding: 14px 16px;
            }
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: #9ca3af;
            background: #1f2937;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .tag {
            display: inline-block;
            background: #374151;
            color: #f59e0b;
            font-size: 0.75rem;
            padding: 2px 12px;
            border-radius: 12px;
            font-weight: 600;
        }
        .section-divider {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #f59e0b, transparent);
            margin: 40px 0;
        }
        html {
            scroll-behavior: smooth;
        }
        .toast {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #1f2937;
            color: #e5e7eb;
            padding: 14px 24px;
            border-radius: 10px;
            border-left: 4px solid #f59e0b;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            transform: translateY(120px);
            opacity: 0;
            transition: 0.4s ease;
            z-index: 999;
            font-weight: 500;
        }
        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }
        .toast i {
            margin-right: 8px;
            color: #f59e0b;
        }
