        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0c10;
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background: #111;
            border-bottom: 2px solid #f0c040;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0c040, #c79800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-shadow: 0 0 12px rgba(240, 192, 64, 0.3);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c040;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #ddd;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            background: #f0c04022;
            color: #f0c040;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a1a1a;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #777;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb .current {
            color: #f0c040;
        }
        main {
            padding: 2rem 0 3rem;
            min-height: 70vh;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: #f0c040;
            margin-bottom: 0.8rem;
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
            letter-spacing: 1px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f0c040;
            margin: 2.4rem 0 1rem;
            border-left: 5px solid #f0c040;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8c84a;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4b43a;
            margin: 1.4rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .highlight {
            color: #f0c040;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.3rem;
            margin-right: 0.3rem;
        }
        .last-updated {
            background: #1a1a1a;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.9rem;
            color: #aaa;
            border: 1px solid #333;
            margin-bottom: 1.8rem;
        }
        .last-updated i {
            margin-right: 0.5rem;
            color: #f0c040;
        }
        .feature-image-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
        }
        .feature-image-wrap img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .feature-image-wrap figcaption {
            background: #111;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: #aaa;
            border-top: 1px solid #2a2a2a;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #16181f;
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #2a2d35;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(240, 192, 64, 0.08);
            border-color: #f0c04044;
        }
        .card h3 {
            margin-top: 0;
        }
        .card h4 {
            margin-top: 0;
            color: #f0c040;
        }
        .card i {
            color: #f0c040;
            margin-right: 0.4rem;
        }
        .quote-block {
            background: #1a1d26;
            border-left: 5px solid #f0c040;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: #ccc;
        }
        .quote-block .author {
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #f0c040;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            background: #1a1d26;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin: 1.2rem 0;
            border: 1px solid #2a2d35;
        }
        .link-list-inline a {
            font-weight: 500;
        }
        .interactive-section {
            background: #16181f;
            border-radius: 12px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2d35;
        }
        .interactive-section h2 {
            margin-top: 0;
            border-left-color: #f0c040;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #ddd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #0b0c10;
            border: 1px solid #333;
            border-radius: 6px;
            color: #eee;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0c040;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f0c040;
            color: #0b0c10;
            border: none;
            padding: 0.7rem 1.8rem;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #ffd75a;
            transform: scale(1.02);
        }
        .btn i {
            margin-right: 0.5rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f0c040;
            transform: scale(1.15);
        }
        .rating-value {
            margin-left: 0.8rem;
            font-size: 1.3rem;
            font-weight: 700;
            color: #f0c040;
        }
        footer {
            background: #0d0e12;
            border-top: 2px solid #1f2229;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        footer h4 {
            color: #f0c040;
            margin-bottom: 0.8rem;
        }
        footer a {
            color: #bbb;
        }
        footer a:hover {
            color: #f0c040;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: #1a1d26;
            border-radius: 20px;
            margin: 0.2rem 0.4rem 0.2rem 0;
            font-size: 0.9rem;
            border: 1px solid #2a2d35;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #f0c04022;
            border-color: #f0c04066;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1f2229;
            color: #888;
            font-size: 0.9rem;
        }
        .copyright a {
            color: #f0c040;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0 0.4rem;
                gap: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.5rem 0.8rem;
                width: 100%;
                border-radius: 4px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .feature-image-wrap img {
                max-height: 280px;
            }
            .interactive-section {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .last-updated {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0b0c10;
        }
        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        .section-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #f0c04044, transparent);
            margin: 2.8rem 0;
        }
