* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f4f1eb;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffdf9;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 20px 28px;
            margin-top: 16px;
            margin-bottom: 16px;
        }
        header {
            border-bottom: 2px solid #e6ddd0;
            padding-bottom: 16px;
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2.4rem;
            font-weight: 900;
            letter-spacing: -2px;
            text-transform: uppercase;
            color: #a33b20;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: 'Impact', 'Arial Black', sans-serif;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo span {
            color: #2c3e50;
            font-weight: 300;
            letter-spacing: -1px;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #a33b20;
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            color: #2c3e50;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0eade;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 18px;
        }
        nav a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #a33b20;
            color: #fff;
        }
        nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 0.85rem;
            color: #6b5e4e;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
            padding: 8px 0;
            border-top: 1px solid #e6ddd0;
        }
        .breadcrumb a {
            color: #a33b20;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6b5e4e;
        }
        .hero {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
            border-radius: 20px;
            padding: 36px 32px;
            margin-bottom: 36px;
            color: #f4f1eb;
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
            justify-content: space-between;
        }
        .hero-text {
            flex: 2;
            min-width: 240px;
        }
        .hero-text h1 {
            font-size: 2.6rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 12px;
            color: #fff;
        }
        .hero-text h1 i {
            color: #d4845a;
            margin-right: 12px;
        }
        .hero-text p {
            font-size: 1.1rem;
            opacity: 0.88;
            max-width: 600px;
        }
        .hero-img {
            flex: 1;
            min-width: 180px;
            text-align: center;
        }
        .hero-img img {
            max-width: 100%;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.15);
            display: block;
        }
        .search-bar {
            background: #f4efe6;
            border-radius: 60px;
            padding: 8px 8px 8px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            margin-bottom: 32px;
            border: 1px solid #e0d4c4;
            transition: box-shadow 0.3s;
        }
        .search-bar:focus-within {
            box-shadow: 0 0 0 3px rgba(163, 59, 32, 0.2);
            border-color: #a33b20;
        }
        .search-bar i {
            color: #6b5e4e;
            font-size: 1.1rem;
        }
        .search-bar input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 0;
            font-size: 1rem;
            outline: none;
            min-width: 120px;
            color: #1e1e1e;
        }
        .search-bar input::placeholder {
            color: #8f7e6a;
        }
        .search-bar button {
            background: #a33b20;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 10px 28px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-bar button:hover {
            background: #7d2c16;
            transform: scale(0.98);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 36px;
        }
        .main-content {
            min-width: 0;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1a252f;
            margin-top: 40px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #a33b20;
            display: inline-block;
        }
        .main-content h2 i {
            color: #a33b20;
            margin-right: 12px;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .main-content h3 i {
            color: #d4845a;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .main-content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #3d4f5f;
            margin-top: 24px;
            margin-bottom: 8px;
            padding-left: 12px;
            border-left: 4px solid #d4845a;
        }
        .main-content p {
            margin-bottom: 18px;
            text-align: justify;
            word-spacing: 0.5px;
        }
        .main-content strong {
            color: #a33b20;
            font-weight: 700;
        }
        .main-content a {
            color: #a33b20;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted #d4845a;
            transition: border 0.2s;
        }
        .main-content a:hover {
            border-bottom: 2px solid #a33b20;
        }
        .highlight-box {
            background: #faf6ef;
            border-left: 6px solid #a33b20;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
            font-style: italic;
        }
        .highlight-box i {
            color: #a33b20;
            margin-right: 8px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 28px 0;
        }
        .stat-card {
            background: #f4efe6;
            padding: 20px 16px;
            border-radius: 16px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #e6ddd0;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .stat-card i {
            font-size: 2rem;
            color: #a33b20;
            margin-bottom: 8px;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 900;
            color: #1a252f;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #6b5e4e;
            font-weight: 600;
        }
        .interview-block {
            background: #f0ebe2;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 32px 0;
            border: 1px solid #e0d4c4;
        }
        .interview-block .q {
            font-weight: 800;
            color: #2c3e50;
        }
        .interview-block .a {
            margin-left: 20px;
            padding-left: 16px;
            border-left: 3px solid #d4845a;
            margin-bottom: 18px;
        }
        .sidebar {
            border-left: 1px solid #e6ddd0;
            padding-left: 28px;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #1a252f;
            margin-bottom: 16px;
            margin-top: 0;
            border-bottom: 2px solid #a33b20;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0 0 32px 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar li a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.9rem;
        }
        .sidebar li a i {
            color: #a33b20;
            font-size: 0.8rem;
            width: 18px;
            text-align: center;
        }
        .sidebar li a:hover {
            background: #f4efe6;
            color: #a33b20;
        }
        .interaction-area {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid #e6ddd0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .rating-box,
        .comment-box {
            background: #faf6ef;
            border-radius: 20px;
            padding: 24px 28px;
            border: 1px solid #e6ddd0;
        }
        .rating-box h3,
        .comment-box h3 {
            font-size: 1.2rem;
            font-weight: 800;
            color: #1a252f;
            margin-top: 0;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-box h3 i,
        .comment-box h3 i {
            color: #a33b20;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            margin-bottom: 16px;
            font-size: 1.8rem;
            color: #d4845a;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: transform 0.15s, color 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
            color: #a33b20;
        }
        .rating-box form,
        .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .rating-box input,
        .comment-box input,
        .comment-box textarea {
            padding: 12px 16px;
            border: 1px solid #d5c9b8;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fffdf9;
            outline: none;
            transition: border 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .rating-box input:focus,
        .comment-box input:focus,
        .comment-box textarea:focus {
            border-color: #a33b20;
            box-shadow: 0 0 0 3px rgba(163, 59, 32, 0.1);
        }
        .comment-box textarea {
            resize: vertical;
            min-height: 80px;
        }
        .rating-box button,
        .comment-box button {
            background: #a33b20;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 12px 28px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .rating-box button:hover,
        .comment-box button:hover {
            background: #7d2c16;
            transform: scale(0.98);
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #e6ddd0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
            font-size: 0.9rem;
            color: #6b5e4e;
        }
        footer .copyright {
            flex: 1;
            min-width: 200px;
        }
        footer .copyright p {
            margin-bottom: 6px;
        }
        footer .copyright i {
            color: #a33b20;
            margin-right: 6px;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            align-items: center;
            background: #f4efe6;
            padding: 16px 20px;
            border-radius: 16px;
            margin-top: 12px;
            width: 100%;
        }
        friend-link a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        friend-link a i {
            color: #a33b20;
            font-size: 0.8rem;
        }
        friend-link a:hover {
            color: #a33b20;
        }
        friend-link::before {
            content: "🤝 Friends: ";
            font-weight: 700;
            color: #2c3e50;
            margin-right: 8px;
        }
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                border-left: none;
                padding-left: 0;
                border-top: 1px solid #e6ddd0;
                padding-top: 24px;
                margin-top: 12px;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 24px 20px;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .hero-text p {
                margin: 0 auto;
            }
            .container {
                padding: 16px;
            }
        }
        @media (max-width: 640px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 14px;
                border-radius: 8px;
                border-bottom: 1px solid #f0eade;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-bar {
                border-radius: 32px;
                padding: 6px 6px 6px 16px;
            }
            .search-bar button {
                padding: 8px 18px;
                font-size: 0.85rem;
            }
            .container {
                padding: 12px;
                border-radius: 16px;
            }
            .highlight-box {
                padding: 16px;
            }
            .interview-block {
                padding: 16px;
            }
        }
        @media (max-width: 400px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero-text h1 {
                font-size: 1.4rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f4efe6;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #6b5e4e;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .update-badge i {
            color: #a33b20;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .tag {
            display: inline-block;
            background: #a33b20;
            color: #fff;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-right: 6px;
        }
        .last-updated {
            display: block;
            text-align: right;
            font-size: 0.85rem;
            color: #8f7e6a;
            margin-top: 20px;
            padding-top: 12px;
            border-top: 1px solid #e6ddd0;
        }
        .last-updated i {
            color: #a33b20;
            margin-right: 6px;
        }
