        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0a0f;
            color: #e8e3e0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #d4a84b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f5d78e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f5e7c8;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 2px solid #d4a84b33;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 4px solid #d4a84b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #ecd9b0;
        }
        h4 {
            font-size: 1.15rem;
            color: #dcc8a0;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d9d2cc;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1625 0%, #2c2438 100%);
            border-bottom: 2px solid #d4a84b33;
            padding: 0.6rem 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: 0.8rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5d78e, #d4a84b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #d4a84b;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .main-nav a {
            color: #c8bda8;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #d4a84b22;
            color: #f5d78e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5d78e;
            font-size: 1.7rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #d4a84b22;
        }
        .breadcrumb {
            background: #1a1625;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2c2438;
            font-size: 0.85rem;
            color: #a09888;
        }
        .breadcrumb a {
            color: #c8bda8;
        }
        .breadcrumb a:hover {
            color: #f5d78e;
        }
        .breadcrumb span {
            margin: 0 0.3rem;
        }
        .hero-section {
            background: linear-gradient(145deg, #1f1a2e, #0e0c14);
            padding: 2.5rem 0 2rem;
            text-align: center;
            border-bottom: 1px solid #d4a84b22;
        }
        .hero-section h1 {
            font-size: 2.6rem;
            border-bottom: none;
            margin-top: 0;
            padding-bottom: 0;
        }
        .hero-section .tagline {
            font-size: 1.1rem;
            color: #c8bda8;
            max-width: 700px;
            margin: 0.5rem auto 0;
        }
        .hero-section .last-updated {
            display: inline-block;
            margin-top: 0.8rem;
            font-size: 0.85rem;
            color: #a09888;
            background: #2c2438;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
        }
        .hero-section .last-updated i {
            margin-right: 0.4rem;
            color: #d4a84b;
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
            align-items: start;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #1a1625;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            border: 1px solid #2c2438;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 1px solid #2c2438;
            padding-bottom: 0.6rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1f1a2e;
        }
        .sidebar ul li a {
            font-size: 0.9rem;
            display: block;
        }
        .content-block {
            background: #14111e;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            border: 1px solid #2c2438;
            margin-bottom: 2rem;
        }
        .content-block .featured-image {
            margin: 1.5rem 0;
            border-radius: 14px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .highlight-box {
            background: #1f1a2e;
            border-left: 4px solid #d4a84b;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: #1a1625;
            padding: 1.2rem 1rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2c2438;
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 700;
            color: #f5d78e;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #a09888;
            margin-top: 0.2rem;
        }
        .interview-card {
            background: #1a1625;
            border-radius: 14px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid #2c2438;
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        .interview-card .avatar {
            font-size: 3rem;
            color: #d4a84b;
            flex-shrink: 0;
        }
        .interview-card .quote {
            font-style: italic;
            color: #d9d2cc;
            flex: 1;
        }
        .interview-card .quote-author {
            font-weight: 600;
            color: #f5d78e;
            margin-top: 0.4rem;
        }
        .pro-tip {
            background: #2c2438;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        .pro-tip i {
            font-size: 1.6rem;
            color: #f5d78e;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }
        .pro-tip .tip-content {
            flex: 1;
        }
        .pro-tip .tip-content p:last-child {
            margin-bottom: 0;
        }
        .form-section {
            background: #1a1625;
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid #2c2438;
            margin-bottom: 2rem;
        }
        .form-section h2 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            color: #f5e7c8;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #2c2438;
            background: #0e0c14;
            color: #e8e3e0;
            font-size: 0.95rem;
            transition: border 0.25s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #d4a84b;
            box-shadow: 0 0 0 3px #d4a84b22;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(135deg, #d4a84b, #b8903a);
            color: #0b0a0f;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px #d4a84b44;
        }
        .btn-secondary {
            background: #2c2438;
            color: #f5d78e;
        }
        .btn-secondary:hover {
            background: #3d3250;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #4a3f5a;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f5d78e;
        }
        .star-rating.selected i.active {
            color: #f5d78e;
        }
        .site-footer {
            background: #0e0c14;
            border-top: 2px solid #2c2438;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-grid h4 {
            color: #f5e7c8;
            margin-top: 0;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-grid ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-grid ul li {
            padding: 0.25rem 0;
        }
        .footer-grid ul li a {
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #2c2438;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.5rem;
            font-size: 0.9rem;
            color: #a09888;
        }
        friend-link a:hover {
            color: #f5d78e;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1f1a2e;
            font-size: 0.85rem;
            color: #6a6258;
        }
        .copyright a {
            color: #a09888;
        }
        @media (max-width: 992px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1625;
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                border: 1px solid #2c2438;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 8px;
            }
            .hamburger {
                display: block;
            }
            .hero-section h1 {
                font-size: 1.9rem;
            }
            .content-block {
                padding: 1.2rem 1rem;
            }
            .content-block .featured-image {
                margin: 1rem 0;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .interview-card {
                flex-direction: column;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .hero-section h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .form-section {
                padding: 1.2rem;
            }
        }
        .text-gold {
            color: #f5d78e;
        }
        .text-muted {
            color: #a09888;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .emoji-lg {
            font-size: 1.6rem;
        }
        .badge {
            display: inline-block;
            background: #d4a84b22;
            color: #f5d78e;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
