* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #fdf8f0;
            color: #2d2d2d;
            line-height: 1.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header.site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 18px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #e94560;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(45deg, #f8b500, #e94560);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform .3s;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            gap: 18px;
            list-style: none;
        }
        .nav-links a {
            color: #f0f0f0;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 30px;
            transition: background 0.3s, color 0.3s;
        }
        .nav-links a:hover {
            background: #e94560;
            color: #fff;
        }
        .breadcrumb {
            background: #fff5eb;
            padding: 10px 0;
            border-bottom: 1px solid #f0e0d0;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: #0f3460;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #999;
        }
        .hero {
            background: radial-gradient(circle at 20% 30%, #f8d49a 0%, #f8b500 40%, #e94560 100%);
            padding: 60px 0;
            text-align: center;
            color: #1a1a2e;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.6);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.25);
            border: 2px solid #fff;
            border-radius: 50px;
            padding: 8px 24px;
            font-weight: 700;
            font-size: 1rem;
            backdrop-filter: blur(4px);
        }
        .search-bar {
            margin: 30px auto 0;
            max-width: 500px;
            display: flex;
            background: #fff;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .search-bar input {
            flex: 1;
            border: none;
            padding: 14px 20px;
            font-size: 1rem;
            outline: none;
        }
        .search-bar button {
            background: #1a1a2e;
            color: #fff;
            border: none;
            padding: 0 24px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-bar button:hover {
            background: #e94560;
        }
        main {
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: #fff;
            border-radius: 20px;
            padding: 30px 35px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .content-area h2 {
            font-size: 2rem;
            color: #0f3460;
            margin: 40px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f8b500;
            position: relative;
        }
        .content-area h3 {
            font-size: 1.4rem;
            color: #1a1a2e;
            margin: 30px 0 12px;
        }
        .content-area h4 {
            font-size: 1.15rem;
            color: #495464;
            margin: 20px 0 10px;
            font-weight: 600;
        }
        .content-area p {
            margin-bottom: 16px;
        }
        .content-area ul,
        .content-area ol {
            margin: 12px 0 20px 25px;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #fef9ee;
            border-left: 4px solid #f8b500;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 25px 0;
        }
        .highlight-box strong {
            color: #e94560;
        }
        .hero-img {
            width: 100%;
            border-radius: 16px;
            margin: 25px 0;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th {
            background: #0f3460;
            color: #fff;
            padding: 12px 15px;
            text-align: left;
        }
        td {
            padding: 12px 15px;
            border-bottom: 1px solid #f0e0d0;
        }
        tr:hover td {
            background: #fdf6ef;
        }
        .interview-box {
            background: linear-gradient(135deg, #ffeef5, #fff5cc);
            border-radius: 16px;
            padding: 25px;
            margin: 25px 0;
            border: 1px solid #f8d49a;
        }
        .interview-box .quote {
            font-style: italic;
            font-size: 1.1rem;
            border-left: 4px solid #e94560;
            padding-left: 15px;
            margin: 15px 0;
            color: #333;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        @media (max-width: 600px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
        }
        .stat-card {
            background: #fff4e6;
            border-radius: 14px;
            padding: 25px 18px;
            text-align: center;
            border: 1px solid #f8d49a;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #e94560;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #666;
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .rating-area,
        .comment-area,
        .search-area {
            background: #f8f2ea;
            border-radius: 14px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid #e8ddd0;
        }
        .rating-area h3,
        .comment-area h3,
        .search-area h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }
        .star-input {
            display: flex;
            gap: 8px;
            margin: 15px 0;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .star-input i {
            color: #ccc;
            transition: color 0.2s;
        }
        .star-input i.active,
        .star-input i:hover {
            color: #f8b500;
        }
        .btn {
            display: inline-block;
            background: #0f3460;
            color: #fff !important;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
        }
        .btn:hover {
            background: #e94560;
        }
        .comment-list {
            margin-top: 20px;
            max-height: 300px;
            overflow-y: auto;
        }
        .comment-item {
            background: #fff;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 10px;
            border: 1px solid #eee;
        }
        .comment-item .name {
            font-weight: 700;
            color: #0f3460;
        }
        .comment-item .time {
            font-size: 0.8rem;
            color: #999;
            float: right;
        }
        .comment-item .text {
            margin-top: 5px;
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            color: #0f3460;
            margin-bottom: 15px;
            border-bottom: 2px solid #f8b500;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            color: #333;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
            display: block;
            padding: 5px 0;
        }
        .sidebar a:hover {
            color: #e94560;
            padding-left: 8px;
        }
        .sidebar .icon {
            color: #f8b500;
            margin-right: 8px;
        }
        footer.site-footer {
            background: #1a1a2e;
            color: #aaa;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        footer h3 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 15px;
            margin: 15px 0;
        }
        friend-link a {
            color: #f8b500;
            text-decoration: none;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #333;
            margin-top: 30px;
            font-size: 0.85rem;
            color: #777;
            grid-column: 1 / -1;
        }
        .last-updated {
            display: inline-block;
            background: #e9f7ef;
            color: #1e7a3a;
            font-size: 0.85rem;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 4px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 15px;
                border-radius: 0 0 15px 15px;
                margin-top: 10px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                padding: 12px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-area {
                padding: 20px;
            }
        }
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
