{"id":9,"date":"2026-05-31T10:34:01","date_gmt":"2026-05-31T10:34:01","guid":{"rendered":"https:\/\/vibeverdict.live\/?page_id=9"},"modified":"2026-05-31T10:34:01","modified_gmt":"2026-05-31T10:34:01","slug":"home","status":"publish","type":"page","link":"https:\/\/vibeverdict.live\/","title":{"rendered":"HOME"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>VibeVerdict | Discover Your Hidden Persona<\/title>\n<style>\n    @import url('https:\/\/fonts.googleapis.com\/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Montserrat:wght@300;400;600;800&display=swap');\n\n    :root {\n        --bg-deep-black: #050505;\n        --bg-card: #121212;\n        --text-main: #e0e0e0;\n        --text-muted: #888888;\n        --gold-accent: #d4af37;\n        --red-accent: #8b0000;\n        --border-color: #222222;\n    }\n\n    * {\n        margin: 0;\n        padding: 0;\n        box-sizing: border-box;\n    }\n\n    body {\n        background-color: var(--bg-deep-black);\n        color: var(--text-main);\n        font-family: 'Montserrat', sans-serif;\n        line-height: 1.6;\n        overflow-x: hidden;\n    }\n\n    a {\n        text-decoration: none;\n        color: inherit;\n    }\n\n    .vv-navbar {\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        padding: 25px 50px;\n        background: rgba(5, 5, 5, 0.9);\n        backdrop-filter: blur(10px);\n        position: fixed;\n        width: 100%;\n        top: 0;\n        z-index: 1000;\n        border-bottom: 1px solid var(--border-color);\n    }\n\n    .vv-logo {\n        font-family: 'Playfair Display', serif;\n        font-size: 28px;\n        font-weight: 900;\n        color: var(--gold-accent);\n        letter-spacing: 2px;\n        text-transform: uppercase;\n    }\n\n    .vv-logo span {\n        color: #fff;\n    }\n\n    .vv-nav-links {\n        display: flex;\n        gap: 30px;\n    }\n\n    .vv-nav-links a {\n        font-size: 14px;\n        font-weight: 600;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n        transition: color 0.3s;\n    }\n\n    .vv-nav-links a:hover {\n        color: var(--gold-accent);\n    }\n\n    .vv-hero {\n        height: 100vh;\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        align-items: center;\n        text-align: center;\n        padding: 0 20px;\n        background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, var(--bg-deep-black) 100%), \n                    url('https:\/\/images.unsplash.com\/photo-1518709268805-4e9042af9f23?q=80&w=2000&auto=format&fit=crop') center\/cover;\n        position: relative;\n    }\n\n    .vv-hero h1 {\n        font-family: 'Playfair Display', serif;\n        font-size: 60px;\n        font-weight: 900;\n        color: #fff;\n        margin-bottom: 20px;\n        text-shadow: 2px 5px 15px rgba(0,0,0,0.8);\n        max-width: 800px;\n    }\n\n    .vv-hero p {\n        font-size: 18px;\n        color: #ccc;\n        margin-bottom: 40px;\n        max-width: 600px;\n        font-style: italic;\n    }\n\n    .vv-btn-primary {\n        background: var(--red-accent);\n        color: #fff;\n        padding: 15px 40px;\n        font-size: 16px;\n        font-weight: bold;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        border-radius: 50px;\n        border: 1px solid #ff3333;\n        transition: all 0.3s ease;\n        box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);\n    }\n\n    .vv-btn-primary:hover {\n        background: #ff0000;\n        transform: translateY(-3px);\n        box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);\n    }\n\n    .vv-container {\n        max-width: 1200px;\n        margin: 0 auto;\n        padding: 80px 20px;\n    }\n\n    .vv-section-title {\n        font-family: 'Playfair Display', serif;\n        text-align: center;\n        font-size: 36px;\n        color: var(--gold-accent);\n        margin-bottom: 50px;\n        position: relative;\n    }\n\n    .vv-section-title::after {\n        content: '';\n        display: block;\n        width: 60px;\n        height: 2px;\n        background: var(--gold-accent);\n        margin: 15px auto 0;\n    }\n\n    .vv-quiz-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 40px;\n    }\n\n    .vv-card {\n        background: var(--bg-card);\n        border: 1px solid var(--border-color);\n        border-radius: 12px;\n        overflow: hidden;\n        transition: transform 0.4s ease, box-shadow 0.4s ease;\n        cursor: pointer;\n    }\n\n    .vv-card:hover {\n        transform: translateY(-10px);\n        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);\n        border-color: #333;\n    }\n\n    .vv-card-img {\n        width: 100%;\n        height: 400px; \/* \u1ea2nh d\u1ecdc chu\u1ea9n Pinterest *\/\n        object-fit: cover;\n        border-bottom: 1px solid var(--border-color);\n        transition: transform 0.5s ease;\n    }\n\n    .vv-card:hover .vv-card-img {\n        transform: scale(1.05);\n    }\n\n    .vv-card-content {\n        padding: 25px;\n        position: relative;\n        background: var(--bg-card);\n        z-index: 2;\n    }\n\n    .vv-tag {\n        display: inline-block;\n        font-size: 11px;\n        color: var(--gold-accent);\n        text-transform: uppercase;\n        letter-spacing: 1px;\n        margin-bottom: 10px;\n        font-weight: bold;\n    }\n\n    .vv-card-title {\n        font-family: 'Playfair Display', serif;\n        font-size: 22px;\n        color: #fff;\n        margin-bottom: 15px;\n        line-height: 1.3;\n    }\n\n    .vv-card-desc {\n        font-size: 14px;\n        color: var(--text-muted);\n        margin-bottom: 20px;\n    }\n\n    .vv-card-link {\n        font-size: 13px;\n        font-weight: 800;\n        color: #fff;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n        display: flex;\n        align-items: center;\n        gap: 5px;\n    }\n\n    .vv-card-link::after {\n        content: '\u2192';\n        transition: transform 0.3s;\n    }\n\n    .vv-card:hover .vv-card-link::after {\n        transform: translateX(5px);\n        color: var(--gold-accent);\n    }\n\n    .vv-footer {\n        background: #000;\n        padding: 40px 20px;\n        text-align: center;\n        border-top: 1px solid var(--border-color);\n        margin-top: 50px;\n    }\n\n    .vv-footer p {\n        color: var(--text-muted);\n        font-size: 14px;\n    }\n\n    @media (max-width: 768px) {\n        .vv-navbar { padding: 20px; flex-direction: column; gap: 15px; }\n        .vv-hero h1 { font-size: 40px; }\n        .vv-card-img { height: 350px; }\n    }\n<\/style>\n<\/head>\n<body>\n\n<!-- Thanh Menu -->\n<nav class=\"vv-navbar\">\n    <div class=\"vv-logo\">Vibe<span>Verdict<\/span><\/div>\n    <div class=\"vv-nav-links\">\n        <a href=\"#\">Home<\/a>\n        <a href=\"#trending\">Trending Quizzes<\/a>\n        <a href=\"#\">About<\/a>\n    <\/div>\n<\/nav>\n\n<!-- M\u00e0n H\u00ecnh Ch\u00ednh -->\n<header class=\"vv-hero\">\n    <h1>Uncover Your Hidden Persona<\/h1>\n    <p>Trust your dark instincts. Take our highly accurate, aesthetic psychology quizzes to discover your true aura, villain era, and hidden traits.<\/p>\n    <a href=\"#trending\" class=\"vv-btn-primary\">Explore Quizzes<\/a>\n<\/header>\n\n<!-- Khu V\u1ef1c Danh S\u00e1ch Quiz -->\n<main class=\"vv-container\" id=\"trending\">\n    <h2 class=\"vv-section-title\">Trending In The Shadows<\/h2>\n    \n    <div class=\"vv-quiz-grid\">\n        \n        <!-- Th\u1ebb Quiz 1 -->\n        <!-- \u0110\u1ed5i href th\u00e0nh link b\u00e0i quiz th\u1ef1c t\u1ebf c\u1ee7a b\u1ea1n tr\u00ean WordPress -->\n        <a href=\"\/dark-goddess-quiz\" class=\"vv-card\">\n            <!-- \u0110\u1ed5i src th\u00e0nh link \u1ea3nh b\u1ea1n l\u1ea5y t\u1eeb Pinterest\/Canva -->\n            <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1605806616949-1e87b487cb2a?q=80&#038;w=600&#038;auto=format&#038;fit=crop\" alt=\"Greek Goddess\" class=\"vv-card-img\">\n            <div class=\"vv-card-content\">\n                <span class=\"vv-tag\">Mythology \u2022 Psychology<\/span>\n                <h3 class=\"vv-card-title\">Which Dark Greek Goddess Is Your Alter Ego?<\/h3>\n                <p class=\"vv-card-desc\">Everyone has a dark side. Choose a cursed artifact and uncover your true dark feminine energy.<\/p>\n                <div class=\"vv-card-link\">Take The Test<\/div>\n            <\/div>\n        <\/a>\n\n        <!-- Th\u1ebb Quiz 2 -->\n        <a href=\"\/old-money-revenge\" class=\"vv-card\">\n            <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1585553616435-2dc0a54e271d?q=80&#038;w=600&#038;auto=format&#038;fit=crop\" alt=\"Old Money\" class=\"vv-card-img\">\n            <div class=\"vv-card-content\">\n                <span class=\"vv-tag\">Villain Era \u2022 Aesthetic<\/span>\n                <h3 class=\"vv-card-title\">What Is Your &#8220;Old Money&#8221; Revenge Style?<\/h3>\n                <p class=\"vv-card-desc\">Are you a corporate assassin or a velvet manipulator? Find out how you handle betrayal.<\/p>\n                <div class=\"vv-card-link\">Take The Test<\/div>\n            <\/div>\n        <\/a>\n\n        <!-- Th\u1ebb Quiz 3 -->\n        <a href=\"\/cursed-jewelry\" class=\"vv-card\">\n            <img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1611085583191-a3b181a88401?q=80&#038;w=600&#038;auto=format&#038;fit=crop\" alt=\"Cursed Jewelry\" class=\"vv-card-img\">\n            <div class=\"vv-card-content\">\n                <span class=\"vv-tag\">Secret Society \u2022 Vibe<\/span>\n                <h3 class=\"vv-card-title\">What Cursed Jewelry Do You Wear To The Secret Society?<\/h3>\n                <p class=\"vv-card-desc\">Reveal your token of entry and discover your role within the elite, untouchable shadows.<\/p>\n                <div class=\"vv-card-link\">Take The Test<\/div>\n            <\/div>\n        <\/a>\n\n    <\/div>\n<\/main>\n\n<!-- Ch\u00e2n Trang -->\n<footer class=\"vv-footer\">\n    <p>&copy; 2026 VibeVerdict. All rights reserved. Dive into the darkness.<\/p>\n<\/footer>\n\n<\/body>\n<\/html>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>VibeVerdict | Discover Your Hidden Persona VibeVerdict Home Trending Quizzes About Uncover Your Hidden Persona Trust your dark instincts. Take our highly accurate, aesthetic psychology quizzes to discover your true aura, villain era, and hidden traits. Explore Quizzes Trending In The Shadows Mythology \u2022 Psychology Which Dark Greek Goddess Is Your Alter Ego? Everyone has [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-9","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/vibeverdict.live\/index.php?rest_route=\/wp\/v2\/pages\/9","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vibeverdict.live\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/vibeverdict.live\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/vibeverdict.live\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vibeverdict.live\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=9"}],"version-history":[{"count":1,"href":"https:\/\/vibeverdict.live\/index.php?rest_route=\/wp\/v2\/pages\/9\/revisions"}],"predecessor-version":[{"id":10,"href":"https:\/\/vibeverdict.live\/index.php?rest_route=\/wp\/v2\/pages\/9\/revisions\/10"}],"wp:attachment":[{"href":"https:\/\/vibeverdict.live\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}