        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b0d17;
            color: #e0e6f0;
            line-height: 1.8;
            padding: 0 1rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        a {
            color: #f0c94b;
            text-decoration: none;
            transition: color 0.3s ease, border-color 0.3s ease;
        }
        a:hover,
        a:focus {
            color: #ffe066;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 1rem;
            box-shadow: 0 8px 30px rgba(240, 201, 75, 0.15);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
            color: #f5f9ff;
            letter-spacing: 0.02em;
        }
        h1 {
            font-size: 2.6rem;
            margin: 1.5rem 0 1rem;
            background: linear-gradient(135deg, #f0c94b, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            border-left: 4px solid #f0c94b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.8rem;
            color: #f0e6c5;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.6rem;
            color: #cbd5e6;
        }
        p {
            margin-bottom: 1.2rem;
            color: #cfd9e8;
        }
        strong {
            color: #f5f9ff;
            font-weight: 600;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.5rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #f0c94b44, #f0c94b, #f0c94b44);
            margin: 2.5rem 0;
        }
        blockquote {
            border-left: 4px solid #f0c94b;
            background: #151a2b;
            padding: 1.2rem 1.8rem;
            margin: 1.5rem 0;
            border-radius: 0 1rem 1rem 0;
            font-style: italic;
            color: #d4dcee;
        }
        blockquote cite {
            display: block;
            margin-top: 0.6rem;
            font-size: 0.9rem;
            color: #f0c94b;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        header {
            padding: 1.2rem 0;
            border-bottom: 2px solid #1f2538;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c94b, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.05em;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.9rem;
            -webkit-text-fill-color: #8a96b0;
            color: #8a96b0;
            font-weight: 400;
            display: block;
            line-height: 1.2;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c94b;
            color: #f0c94b;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .nav-toggle:hover {
            background: #f0c94b22;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            align-items: center;
        }
        nav a {
            color: #bcc5d6;
            font-weight: 500;
            padding: 0.3rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
            font-size: 0.95rem;
        }
        nav a:hover {
            color: #f0c94b;
            border-bottom-color: #f0c94b;
            text-decoration: none;
        }
        .breadcrumb {
            width: 100%;
            font-size: 0.85rem;
            color: #8892a8;
            padding: 0.6rem 0 0.2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .breadcrumb a {
            color: #8892a8;
        }
        .breadcrumb a:hover {
            color: #f0c94b;
        }
        .breadcrumb span {
            color: #f0c94b;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0 2rem;
            max-width: 500px;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #2a314a;
            border-radius: 2rem;
            background: #131827;
            color: #e0e6f0;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #f0c94b;
            box-shadow: 0 0 0 3px #f0c94b33;
        }
        .search-form button {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 2rem;
            background: #f0c94b;
            color: #0b0d17;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #ffe066;
            transform: scale(1.02);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: #131827;
            border-radius: 1.2rem;
            padding: 1.8rem;
            border: 1px solid #1f2538;
            transition: 0.4s ease;
        }
        .feature-card:hover {
            border-color: #f0c94b66;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(240, 201, 75, 0.08);
        }
        .feature-card i {
            font-size: 2.2rem;
            color: #f0c94b;
            margin-bottom: 0.8rem;
        }
        .feature-card h3 {
            margin-top: 0;
        }
        .hero-image {
            margin: 2rem 0;
            border-radius: 1.2rem;
            overflow: hidden;
            background: #131827;
            padding: 0.5rem;
            border: 1px solid #1f2538;
        }
        .hero-image img {
            border-radius: 0.8rem;
            width: 100%;
        }
        .hero-image figcaption {
            text-align: center;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.9rem;
            color: #8892a8;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-form {
            background: #131827;
            padding: 1.8rem;
            border-radius: 1.2rem;
            border: 1px solid #1f2538;
        }
        .feedback-form label {
            display: block;
            margin: 0.8rem 0 0.3rem;
            font-weight: 500;
            color: #e0e6f0;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 2px solid #2a314a;
            border-radius: 0.6rem;
            background: #0b0d17;
            color: #e0e6f0;
            font-size: 1rem;
            transition: 0.3s;
            font-family: inherit;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #f0c94b;
            box-shadow: 0 0 0 3px #f0c94b33;
            outline: none;
        }
        .feedback-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-form button {
            margin-top: 1rem;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 2rem;
            background: #f0c94b;
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .feedback-form button:hover {
            background: #ffe066;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #3a4160;
            cursor: pointer;
            margin: 0.4rem 0 0.6rem;
        }
        .star-rating i {
            transition: 0.2s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f0c94b;
        }
        footer {
            margin-top: 3rem;
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #1f2538;
            text-align: center;
            font-size: 0.9rem;
            color: #8892a8;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            font-size: 1rem;
        }
        friend-link a {
            margin: 0 0.6rem;
            color: #bcc5d6;
        }
        friend-link a:hover {
            color: #f0c94b;
        }
        .copyright {
            margin-top: 1.2rem;
            font-size: 0.85rem;
            color: #6a7490;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0;
                gap: 0.6rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                font-size: 1rem;
                padding: 0.4rem 0;
                border-bottom: none;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .search-form {
                flex-direction: column;
                max-width: 100%;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .hero-image {
                margin: 1rem 0;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        .text-gold {
            color: #f0c94b;
        }
        .text-muted {
            color: #8892a8;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .badge {
            display: inline-block;
            background: #f0c94b22;
            color: #f0c94b;
            padding: 0.2rem 1rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #f0c94b44;
        }
        * {
            transition: background-color 0.2s ease, border-color 0.2s ease;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #131827;
            border-radius: 0.8rem;
            overflow: hidden;
            border: 1px solid #1f2538;
        }
        .data-table th {
            background: #1a2138;
            color: #f0c94b;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-top: 1px solid #1f2538;
            color: #cfd9e8;
        }
        .data-table tr:hover td {
            background: #1a213855;
        }
        @media (max-width: 600px) {
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        .interview-card {
            background: #151a2b;
            border-radius: 1rem;
            padding: 1.5rem 1.8rem;
            margin: 1.5rem 0;
            border-left: 4px solid #f0c94b;
        }
        .interview-card .author {
            font-weight: 700;
            color: #f0c94b;
        }
        .interview-card .role {
            font-size: 0.85rem;
            color: #8892a8;
        }
