        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.8;
            min-height: 100vh;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            padding: 20px 0;
            border-bottom: 2px solid #f0c04033;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c040, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #f0c04033;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            font-weight: 400;
            letter-spacing: 0;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c040;
            color: #f0c040;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c04055;
            color: #f0c040;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-toggle:hover {
            background: #f0c04022;
            border-color: #f0c040;
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #ddd;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        nav a:hover {
            background: #f0c04018;
            color: #f0c040;
            border-color: #f0c04055;
            text-decoration: none;
        }
        nav a.active {
            background: #f0c04022;
            color: #f0c040;
            border-color: #f0c04088;
        }
        .breadcrumb {
            padding: 14px 0 6px 0;
            font-size: 0.85rem;
            color: #aaa;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: #f0c040bb;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb span {
            color: #888;
            margin: 0 4px;
        }
        .hero {
            padding: 50px 0 30px 0;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a1a3e33 0%, transparent 70%);
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, #f0c040, #f5a623, #f0c040);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 780px;
            margin: 0 auto 24px auto;
        }
        .hero .badge {
            display: inline-block;
            background: #f0c04022;
            border: 1px solid #f0c04055;
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: #f0c040;
        }
        section {
            padding: 40px 0;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: #f0c040;
            margin-bottom: 20px;
            border-left: 5px solid #f0c040;
            padding-left: 18px;
        }
        h3 {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 600;
            color: #f5d060;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-weight: 600;
            color: #e8c878;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            color: #d0d0dd;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        .content-grid.single {
            grid-template-columns: 1fr;
        }
        .card {
            background: #1a1a2ecc;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #2a2a4e;
            transition: all 0.4s ease;
            backdrop-filter: blur(8px);
        }
        .card:hover {
            border-color: #f0c04055;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px #00000055;
        }
        .card i {
            color: #f0c040;
            font-size: 1.8rem;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .highlight {
            background: #f0c04011;
            border-left: 4px solid #f0c040;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight strong {
            color: #f0c040;
        }
        .emoji-big {
            font-size: 2rem;
            margin-right: 8px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #f0c040, #e5a520);
            color: #0f0f1a;
            font-weight: 700;
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px #f0c04044;
            text-decoration: none;
            color: #0f0f1a;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c040aa;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: #f0c04022;
            color: #f0c040;
        }
        .search-box {
            display: flex;
            gap: 0;
            max-width: 600px;
            margin: 20px auto 30px auto;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #2a2a4e;
            background: #1a1a2e;
            transition: border-color 0.3s ease;
        }
        .search-box:focus-within {
            border-color: #f0c04088;
        }
        .search-box input {
            flex: 1;
            padding: 16px 24px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #888;
        }
        .search-box button {
            padding: 16px 28px;
            background: #f0c040;
            color: #0f0f1a;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 1rem;
        }
        .search-box button:hover {
            background: #ffd966;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        .comment-area textarea,
        .comment-area input {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid #2a2a4e;
            background: #15152a;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            margin-bottom: 14px;
            font-family: inherit;
        }
        .comment-area textarea:focus,
        .comment-area input:focus {
            border-color: #f0c04088;
            outline: none;
        }
        .comment-area textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            cursor: pointer;
            color: #444;
            margin: 12px 0;
        }
        .rating-stars i {
            transition: all 0.2s ease;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f0c040;
            transform: scale(1.1);
        }
        .rating-stars i:hover~i {
            color: #444;
        }
        .featured-image {
            margin: 40px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 16px 50px #00000066;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            max-height: 550px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #0f0f1aaa;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #ccc;
            backdrop-filter: blur(8px);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a2ecc;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #2a2a4e;
        }
        th {
            background: #f0c04022;
            color: #f0c040;
            font-weight: 600;
        }
        tr:hover td {
            background: #2a2a4e44;
        }
        friend-link {
            display: block;
            padding: 30px 0;
            border-top: 1px solid #2a2a4e;
            margin-top: 20px;
        }
        friend-link .fl-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #f0c040;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 16px;
            background: #1a1a2e;
            border-radius: 30px;
            border: 1px solid #2a2a4e;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        friend-link a:hover {
            border-color: #f0c04055;
            background: #2a2a4e;
            text-decoration: none;
        }
        footer {
            background: #0a0a14;
            padding: 30px 0;
            border-top: 1px solid #2a2a4e;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }
        footer .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #888;
            text-align: right;
            margin-top: 10px;
            border-top: 1px dashed #2a2a4e;
            padding-top: 14px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f0c04088;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding-top: 14px;
                border-top: 1px solid #2a2a4e;
                margin-top: 10px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .card {
                padding: 20px 16px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-box input {
                padding: 14px 18px;
            }
            .search-box button {
                padding: 14px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 10px 12px;
            }
            .featured-image figcaption {
                font-size: 0.75rem;
                padding: 8px 14px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .container {
                padding: 0 30px;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .tag {
            display: inline-block;
            background: #f0c04011;
            color: #f0c040;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid #f0c04033;
            margin: 2px 4px 2px 0;
        }
        .divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #f0c040, transparent);
            margin: 20px 0 30px 0;
            border-radius: 4px;
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        i.fa-solid,
        i.fa-regular,
        i.fa-brands {
            margin-right: 6px;
        }
