* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0e14;
            color: #e6edf3;
            line-height: 1.75;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.2s, border-bottom 0.2s;
        }
        a:hover {
            color: #ffcd7e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #141a24;
            border-bottom: 2px solid #2a3549;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #f5a623;
            font-size: 2rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #9aa9c0;
            font-weight: 400;
            letter-spacing: 0.3px;
            display: block;
            margin-left: 4px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3a4a62;
            color: #f5a623;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #cbd5e1;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: #2a3549;
            color: #f5a623;
            text-decoration: none;
        }
        .nav-menu .active {
            color: #f5a623;
            border-bottom: 2px solid #f5a623;
        }
        .breadcrumb {
            padding: 18px 0 6px;
            font-size: 0.9rem;
            color: #8899b0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #9aa9c0;
        }
        .breadcrumb a:hover {
            color: #f5a623;
        }
        .breadcrumb span {
            color: #f5a623;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 920px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #f7c948, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .article-body h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 18px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a3549;
            color: #f5a623;
        }
        .article-body h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #f7c948;
        }
        .article-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #e0b354;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #d3dcec;
            font-size: 1.02rem;
        }
        .article-body strong {
            color: #ffd966;
            font-weight: 700;
        }
        .article-body em {
            color: #bacee6;
            font-style: italic;
        }
        .article-body ul,
        .article-body ol {
            margin: 16px 0 22px 24px;
            color: #cbd5e1;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body blockquote {
            border-left: 4px solid #f5a623;
            padding: 14px 24px;
            margin: 24px 0;
            background: #1a2230;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #d3dcec;
        }
        .featured-image-wrapper {
            margin: 28px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .featured-image-wrapper img {
            width: 100%;
            display: block;
        }
        .caption {
            text-align: center;
            font-size: 0.85rem;
            color: #8899b0;
            padding: 8px 0 0;
        }
        .last-updated {
            display: inline-block;
            background: #1f2a3a;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #9aa9c0;
            margin-bottom: 18px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f5a623;
        }
        .sidebar {
            background: #141a24;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #2a3549;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #f5a623;
            margin-bottom: 18px;
            border-bottom: 1px solid #2a3549;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            display: block;
            padding: 8px 12px;
            background: #1b2433;
            border-radius: 8px;
            border-left: 3px solid transparent;
            transition: all 0.2s;
            font-size: 0.95rem;
        }
        .sidebar a:hover {
            background: #253042;
            border-left-color: #f5a623;
            text-decoration: none;
            color: #ffcd7e;
        }
        .search-box {
            background: #1b2433;
            border-radius: 40px;
            padding: 4px 4px 4px 18px;
            display: flex;
            align-items: center;
            border: 1px solid #2a3549;
            margin-bottom: 28px;
        }
        .search-box input {
            background: transparent;
            border: none;
            color: #e6edf3;
            font-size: 0.95rem;
            padding: 10px 0;
            flex: 1;
            outline: none;
        }
        .search-box input::placeholder {
            color: #6a7b94;
        }
        .search-box button {
            background: #f5a623;
            border: none;
            color: #0b0e14;
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-box button:hover {
            background: #ffcd7e;
            transform: scale(1.02);
        }
        .interaction-area {
            background: #141a24;
            border-radius: 16px;
            padding: 32px 28px;
            margin: 48px 0 32px;
            border: 1px solid #2a3549;
        }
        .interaction-area h2 {
            font-size: 1.8rem;
            color: #f7c948;
            margin-bottom: 12px;
            border-bottom: none;
        }
        .interaction-area p {
            color: #9aa9c0;
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #cbd5e1;
            margin-bottom: 6px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: #1b2433;
            border: 1px solid #2a3549;
            border-radius: 10px;
            color: #e6edf3;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f5a623;
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .form-row .form-group {
            flex: 1;
            min-width: 180px;
        }
        .btn-submit {
            background: #f5a623;
            color: #0b0e14;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-submit:hover {
            background: #ffcd7e;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #3a4a62;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #f5a623;
        }
        .rating-stars i:hover {
            color: #f7c948;
        }
        friend-link {
            display: block;
            padding: 20px 0 10px;
            border-top: 1px solid #2a3549;
            margin-top: 30px;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: #f7c948;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
            font-size: 0.95rem;
        }
        .site-footer {
            background: #0d111a;
            border-top: 2px solid #1f2a3a;
            padding: 32px 0 24px;
            margin-top: 40px;
            text-align: center;
        }
        .site-footer p {
            color: #6a7b94;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            color: #4a5a70;
            font-size: 0.82rem;
            margin-top: 8px;
            letter-spacing: 0.3px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 14px;
                gap: 6px;
                background: #141a24;
                padding: 12px 0;
                border-top: 1px solid #2a3549;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 16px;
                border-radius: 0;
                border-bottom: 1px solid #1f2a3a;
            }
            .article-body h1 {
                font-size: 1.9rem;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .sidebar {
                position: static;
                margin-top: 30px;
            }
            .main-grid {
                gap: 20px;
            }
            .interaction-area {
                padding: 20px 16px;
            }
            .form-row {
                flex-direction: column;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f5a623;
            color: #0b0e14;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
            border: none;
            z-index: 99;
        }
        .scroll-top:hover {
            transform: scale(1.1);
            background: #ffcd7e;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: #1a2230;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #253042;
            color: #f5a623;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #2a3549;
            color: #cbd5e1;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1f2a3a;
        }
        @media (max-width: 600px) {
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
        }
        .text-accent {
            color: #f5a623;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-10 {
            margin-bottom: 10px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .tag {
            background: #1f2a3a;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #9aa9c0;
            display: inline-block;
        }
