        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "DBHeaventRounded", "sans-serif";
        }
        
        html,
        body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }
        
        body {
            background: #fff;
            overflow-x: hidden;
            font-size: 16px;
            font-family: "NotoSans", "NotoSans-thai";
            line-height: 1.4;
            display: block;
        }
        
        .img-thumbnail {
            border: none;
            background: none;
        }
        
        .t_inline {
            display: inline-block;
        }
        
        .container,
        .container-fluid,
        .container-lg,
        .container-md,
        .container-sm,
        .container-xl,
        .container-xxl {
            --bs-gutter-x: 0;
        }
        
        .section {
            display: none;
            width: 100vw;
            height: 100vh;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .section.active {
            display: flex;
            opacity: 1;
        }
        
        .sec_bg {
            background-image: url('/assets/images/Background_pc.webp');
            background-size: cover;
            background-position: top;
            background-repeat: no-repeat;
            background-attachment: fixed;
            flex-direction: column;
            align-items: center;
            justify-content: space-between !important;
            padding-top: 120px;
            padding-bottom: 0;
            min-height: 100vh;
        }
        
        .logo-smp-home {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        img.logo-smp {
            display: block;
            max-width: 200px;
            height: auto;
        }
        
        .logo-smp-home img {
            height: 50px;
            width: auto;
        }
        
        .logo-container {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }
        
        .logo {
            width: 300px;
            height: auto;
            display: block;
        }
        
        .content-center {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
        }
        
        .main-title {
            text-align: center;
            margin-bottom: 0%;
        }
        
        .main-title img {
            width: 30%;
        }
        
        .search-button {
            margin-top: 20px;
        }
        
        .btn-search {
            background: linear-gradient(180deg, #FF8CD6 0%, #FF2FB5 100%);
            color: #fff;
            border: none;
            padding: 10px;
            font-size: 24px;
            width: 480px;
            font-weight: 400;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
        }
        
        .btn-search::before {
            content: '';
            position: absolute;
            top: 0px;
            left: 25px;
            right: 25px;
            height: 8px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
            border-radius: 100%;
            filter: blur(5px);
        }
        
        .btn-search:hover {
            transform: translateY(-3px);
        }
        
        .sec_info h1 {
            font-size: 72px;
            /* color: white; */
            text-align: center;
        }
        
        .sec_info {
            background-image: url('/assets/images/bg_content_pc.jpg');
            background-size: cover;
            background-position: bottom;
            background-repeat: no-repeat;
            background-attachment: fixed;
            flex-direction: column;
            align-items: center;
            justify-content: space-between !important;
            padding-top: 120px;
            padding-bottom: 0;
            overflow-y: auto;
            overflow-x: hidden;
            min-height: 100vh;
        }
        
        .form-container {
            width: 100%;
            max-width: 480px;
            position: relative;
        }
        
        .progress-bar {
            width: 100%;
            height: 10px;
            background: #91b7ed52;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .progress-fill {
            height: 100%;
            background: #007CFF;
            border-radius: 20px;
            transition: width 0.3s ease;
            position: relative;
        }
        
        .progress-fill::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 0px;
            right: 0px;
            height: 5px;
            background: #e0e0e0;
            border-radius: 100%;
            filter: blur(3px);
        }
        /* Form Title */
        
        .form-title {
            font-size: 30px;
            font-weight: 500;
            color: #121212;
            text-align: center;
        }
        /* Form Group */
        
        .form-group {
            margin-bottom: 30px;
        }
        
        .input-with-icon {
            position: relative;
            width: 100%;
        }
        
        .input-icon {
            position: absolute;
            left: 24px;
            top: 50%;
            transform: translateY(-50%);
            color: #A8A8A8;
            font-size: 20px;
            pointer-events: none;
            transition: color 0.3s ease;
            z-index: 1;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 20px 12px 50px;
            font-size: 20px;
            border: 2px solid transparent;
            border-radius: 50px;
            background: white;
            color: #2C3E50;
            transition: all 0.3s ease;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        }
        
        .form-input::placeholder {
            color: #A8A8A8;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #4A9FDB;
            box-shadow: 0 4px 12px rgba(74, 159, 219, 0.2);
        }
        /* Error State */
        
        .form-input.error {
            border-color: #E74C3C;
            animation: shake 0.3s ease;
        }
        
        .error-message {
            display: none;
            color: #E74C3C;
            font-size: 18px;
            margin-top: 8px;
            margin-left: 24px;
        }
        
        .form-input.error+.error-message {
            display: block;
        }
        
        .error-message.show {
            display: block;
        }
        /* Shake Animation */
        
        @keyframes shake {
            0%,
            100% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(-10px);
            }
            75% {
                transform: translateX(10px);
            }
        }
        /* Radio Group */
        
        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .radio-option {
            position: relative;
        }
        
        .radio-option input[type="radio"] {
            display: none;
        }
        
        .radio-label {
            display: block;
            padding: 10px 24px;
            background: white;
            border: 2px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 22px;
            color: #535353;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .radio-label:hover {
            background: #f8f8f8;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .radio-option input[type="radio"]:checked+.radio-label {
            background: #FFF8FD;
            border-color: #FFA1DE;
            color: #FF2FB5;
        }
        /* Other Input Container */
        
        .other-input-container {
            margin-top: 20px;
            display: none;
        }
        
        .other-input-container.show {
            display: block;
            animation: slideDown 0.3s ease;
        }
        
        .other-input {
            width: 100%;
            padding: 16px 24px;
            font-size: 18px;
            border: 2px solid transparent;
            border-radius: 50px;
            background: white;
            color: #2C3E50;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .other-input::placeholder {
            color: #A8A8A8;
        }
        
        .other-input:focus {
            outline: none;
            border-color: #FF2FB5;
            box-shadow: 0 4px 12px rgba(255, 47, 181, 0.2);
        }
        /* Error Message for Radio */
        
        #error2,
        #error4,
        #mbti-error,
        #mbti-card-error,
        #test-error-1,
        #test-error-2,
        #test-error-3,
        #test-error-4 {
            display: none;
            color: #E74C3C;
            font-size: 18px;
            margin-top: 15px;
            text-align: center;
            font-weight: 500;
            animation: fadeIn 0.3s ease;
        }
        
        #error2.show,
        #error4.show,
        #mbti-error.show,
        #mbti-card-error.show,
        #test-error-1.show,
        #test-error-2.show,
        #test-error-3.show,
        #test-error-4.show {
            display: block;
        }
        /* Animations */
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        /* Search Container */
        
        .search-container {
            position: relative;
            margin-bottom: 20px;
        }
        
        .search-input-wrapper {
            position: relative;
        }
        
        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 18px;
            color: #A8A8A8;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 50px;
            font-size: 20px;
            border: 2px solid transparent;
            border-radius: 50px;
            background: white;
            color: #2C3E50;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        .search-input::placeholder {
            color: #A8A8A8;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #4A9FDB;
            box-shadow: 0 4px 12px rgba(74, 159, 219, 0.2);
        }
        
        .search-input.selected {
            border-color: #DBDBDB;
            color: #2C3E50;
        }
        
        .search-input.error {
            border-color: #E74C3C;
            animation: shake 0.3s ease;
        }
        
        .clear-btn {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #535353;
            font-size: 20px;
            cursor: pointer;
            padding: 5px;
            display: none;
            transition: color 0.3s ease;
        }
        
        .clear-btn:hover {
            color: #E74C3C;
        }
        
        .clear-btn.show {
            display: block;
        }
        /* Autocomplete Dropdown */
        
        .autocomplete-dropdown {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            right: 0;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            max-height: 280px;
            overflow-y: auto;
            display: none;
            z-index: 10;
            margin-top: 15px;
        }
        
        .autocomplete-dropdown.show {
            display: block;
            animation: slideDown 0.3s ease;
        }
        
        .autocomplete-item {
            padding: 14px 20px;
            cursor: pointer;
            transition: background 0.2s ease;
            border-bottom: 1px solid #f0f0f0;
            color: #2C3E50;
            font-size: 20px;
        }
        
        .autocomplete-item:last-child {
            border-bottom: none;
        }
        
        .autocomplete-item:hover {
            background: #EEF7FF;
            color: #015DCB;
        }
        
        .autocomplete-item.highlight {
            background: #E3F2FD;
            color: #015DCB;
            font-weight: 600;
        }
        
        .autocomplete-item .match {
            color: #015DCB;
            font-weight: 600;
        }
        
        .no-results {
            padding: 20px;
            text-align: center;
            color: #535353;
            font-size: 20px;
        }
        
        .form-subtitle {
            font-size: 20px;
            color: #535353;
            text-align: center;
            margin-bottom: 30px;
            /* font-weight: 800; */
        }
        /* Scrollbar */
        
        .autocomplete-dropdown::-webkit-scrollbar {
            width: 6px;
        }
        
        .autocomplete-dropdown::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .autocomplete-dropdown::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }
        
        .autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
            background: #a1a1a1;
        }
        
        .radio-option .radio-label h2 {
            font-size: 24px;
            font-weight: 500;
            color: #535353;
            margin-bottom: 0;
        }
        
        .radio-option .radio-label p {
            font-size: 18px;
            color: #535353;
            margin-bottom: 0;
            font-weight: 100;
        }
        /* .information-4 .radio-option input[type="radio"]:checked+.radio-label {
            background: #FFF8FD;
            border-color: #FF2FB5;
        } */
        
        .information-4 .radio-option input[type="radio"]:checked+.radio-label h2 {
            color: #FF2FB5;
        }
        
        .information-4 .radio-option input[type="radio"]:checked+.radio-label p {
            color: #FF2FB5;
        }
        
        .loading-page {
            display: none;
        }
        
        .loading-page.fade-out {
            opacity: 0;
            pointer-events: none;
        }
        
        .loading-box {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 50px 20px;
            border-radius: 30px;
            max-width: 500px;
            width: 90%;
            margin: auto;
        }
        
        .loading-box h1 {
            color: #820054;
            font-size: 24px;
            font-weight: 600;
        }
        
        .loading-dots {
            color: #820054;
            font-size: 22px;
        }
        
        .loading-dots::after {
            content: '';
            animation: dots 1.5s steps(4, end) infinite;
        }
        
        @keyframes dots {
            0%,
            20% {
                content: '';
            }
            40% {
                content: '.';
            }
            60% {
                content: '..';
            }
            80%,
            100% {
                content: '...';
            }
        }
        
        .timer {
            font-size: 18px;
            color: #666;
            font-weight: 300;
        }
        
        .timer span {
            font-weight: 600;
            color: #764ba2;
            font-size: 28px;
        }
        
        .mbti-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }
        
        .btn-mbti {
            width: 100%;
            padding: 20px;
            font-size: 20px;
            font-weight: 700;
            color: #333;
            background: white;
            border: 3px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .btn-mbti:hover {
            background: #f8f8f8;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }
        
        .btn-mbti:active {
            transform: translateY(-1px);
        }
        /* MBTI Select Dropdown */
        /* select.form-input {
            appearance: none;
            background-repeat: no-repeat;
            background-position: right 20px center;
            padding-right: 50px;
            cursor: pointer;
        }
        
        select.form-input:focus {
            border-color: #FF2FB5;
        }
        
        select.form-input.error {
            border-color: #E74C3C;
            animation: shake 0.3s ease;
        }
        
        select.form-input option {
            padding: 10px;
            font-size: 16px;
        } */
        
        .mbti-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        
        .btn-mbti {
            width: 100%;
            padding: 12px;
            font-size: 24px;
            font-weight: 500;
            color: #535353;
            background: white;
            border: 2px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .btn-mbti:hover {
            background: #f8f8f8;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
            /* border-color: #BDBDBD; */
        }
        
        .btn-mbti.active {
            background: #FFF8FD;
            border-color: #FFA1DE;
            color: #FF2FB5;
        }
        
        .mbti-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        
        .mbti-card {
            background: white;
            border: 2px solid #DBDBDB;
            border-radius: 16px;
            padding: 10px 5px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
        }
        
        .mbti-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-color: #DBDBDB;
        }
        /* Selected States - สีตาม Badge */
        
        .mbti-card.selected.purple-group {
            border-color: #6F5281;
            background: #F6EAFC;
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }
        
        .mbti-card.selected.green-group {
            border-color: #53AF8A;
            background: #FDFFEA;
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
        }
        
        .mbti-card.selected.teal-group {
            border-color: #399499;
            background: #F3FFFF;
            box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
        }
        
        .mbti-card.selected.yellow-group {
            border-color: #CC9E14;
            background: #FFFBE7;
            box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
        }
        /* .mbti-card.shake {
            animation: shake 0.5s ease;
        } */
        
        .mbti-image {
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .mbti-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .mbti-badge {
            display: inline-block;
            padding: 0px 20px;
            border-radius: 25px;
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }
        
        .mbti-purple {
            background: linear-gradient(135deg, #A787B8 0%, #6F5281 100%);
        }
        
        .mbti-green {
            background: linear-gradient(135deg, #6CC5A2 0%, #53AF8A 100%);
        }
        
        .mbti-teal {
            background: linear-gradient(135deg, #49A5A3 0%, #399499 100%);
        }
        
        .mbti-yellow {
            background: linear-gradient(135deg, #E5C526 0%, #CC9E14 100%);
        }
        
        .mbti-name {
            font-size: 18px;
            font-weight: 600;
        }
        
        .purple-group .mbti-name {
            color: #9575a5;
        }
        
        .green-group .mbti-name {
            color: #53AF8A;
        }
        
        .teal-group .mbti-name {
            color: #399499;
        }
        
        .yellow-group .mbti-name {
            color: #CC9E14;
        }
        /* .form-label {
            display: block;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        } */
        /* .form-input {
            width: 100%;
            padding: 18px 24px;
            font-size: 20px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            background: white;
            color: #333;
            transition: all 0.3s ease;
        }
        
        .form-input::placeholder {
            color: #A8A8A8;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #FF2FB5;
            box-shadow: 0 4px 12px rgba(255, 47, 181, 0.2);
        }
        
        .form-input.error {
            border-color: #E74C3C;
            animation: shake 0.3s ease;
        } */
        /* Checkbox */
        
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 25px;
        }
        
        .checkbox-input {
            width: 20px;
            height: 20px;
            cursor: pointer;
            margin-top: 2px;
        }
        
        input[type="checkbox"]::before {
            content: "";
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid #FF2FB5;
            /* Default border color */
            border-radius: 3px;
            /* Optional: for rounded corners */
            vertical-align: middle;
            margin-top: -3px;
            /* margin-right: 0.5em; */
        }
        
        .checkbox-label {
            font-size: 17px;
            color: #121212;
            line-height: 1.6;
        }
        
        .checkbox-label a {
            color: #121212;
            text-decoration: none;
            font-weight: 600;
        }
        
        .checkbox-label a:hover {
            text-decoration: underline;
        }
        
        input[type=checkbox] {
            accent-color: #FF2FB5;
        }
        /* .checkbox-group.error .checkbox-label {
            color: #E74C3C;
        } */
        /* Result Section */
        
        .result-section {
            text-align: center;
        }
        
        .sec_result {
            background: #fff;
            flex-direction: column;
            align-items: center;
            justify-content: space-between !important;
            padding: 15px;
            border-radius: 16px;
            margin-top: -100px;
        }
        
        .result-mbti-display {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px;
            border-radius: 30px;
            color: white;
            margin: 30px 0;
        }
        
        .result-mbti-display h3 {
            font-size: 24px;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .result-mbti-type {
            font-size: 72px;
            font-weight: 800;
            margin: 20px 0;
        }
        
        .result-mbti-name {
            font-size: 28px;
            font-weight: 600;
            margin-top: 10px;
        }
        
        .result-info-box {
            background: #f0f9ff;
            padding: 30px;
            border-radius: 20px;
            margin-top: 30px;
        }
        
        .result-info-box h4 {
            font-size: 22px;
            color: #0369a1;
            margin-bottom: 15px;
        }
        
        .result-info-box p {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 10px;
        }
        
        .txt-contact h1 {
            text-align: left;
            font-size: 50px;
            font-weight: 600;
            color: #121212;
        }
        
        .txt-contact p {
            text-align: left;
            font-size: 19px;
            color: #121212;
            font-weight: 100;
        }
        
        .mbti-test-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        
        .test-option {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 13px 30px;
            background: white;
            border: 2px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .test-option:hover {
            background: #f8f8f8;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
            /* border-color: #BDBDBD; */
        }
        
        .test-option.selected {
            background: #FFF8FD;
            border-color: #FFA1DE;
            /* box-shadow: 0 4px 16px rgba(255, 47, 181, 0.3); */
        }
        /* .test-option.shake {
            animation: shake 0.5s ease;
        } */
        
        .option-letter {
            width: 34px;
            height: 34px;
            background: #FFF8FD;
            color: #D72497;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .test-option.selected .option-letter {
            background: #D72497;
            box-shadow: 0 4px 12px rgba(255, 47, 181, 0.4);
            color: #fff;
        }
        
        .option-text {
            font-size: 22px;
            font-weight: 500;
            color: #535353;
            flex: 1;
        }
        
        .test-option.selected .option-text {
            color: #FF2FB5;
            font-weight: 600;
        }
        
        .result-section {
            text-align: center;
        }
        /* Result Card */
        /* .result-card {
            background: white;
            border-radius: 30px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        } */
        
        .result-mbti-image {
            /* width: 200px;
            height: 200px; */
            margin: 0 auto 20px;
            /* border-radius: 50%; */
            overflow: hidden;
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
        }
        
        .result-mbti-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .txt-result-ig {
            color: #535353;
            font-size: 22px;
            padding: 20px 0;
        }
        /* .result-mbti-badge {
            display: inline-block;
            padding: 12px 40px;
            background: #8B5CF6;
            color: white;
            font-size: 32px;
            font-weight: 800;
            border-radius: 50px;
            margin-bottom: 15px;
            letter-spacing: 2px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        } */
        /* .result-mbti-name {
            font-size: 28px;
            color: #333;
            font-weight: 700;
        } */
        /* Greeting */
        /* .result-greeting {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        } */
        
        .result-greeting h3 {
            font-size: 32px;
            color: #141414;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .result-greeting h3 span {
            color: #141414;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        /* .result-greeting p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
        } */
        /* Action Buttons */
        
        .result-actions {
            display: grid;
            gap: 20px;
            justify-content: center;
        }
        
        .btn-share,
        .btn-restart,
        .btn-plan {
            display: block;
            align-items: center;
            gap: 10px;
            padding: 10px;
            font-size: 24px;
            font-weight: 500;
            width: 400px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-share {
            background: linear-gradient(180deg, #FF8CD6 0%, #FF2FB5 100%);
            color: white;
        }
        
        .btn-share:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 47, 181, 0.4);
        }
        
        .btn-restart {
            background: white;
            color: #007CFF;
            border: 2px solid #007CFF;
        }
        
        .btn-restart:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(88, 124, 253, 0.4);
        }
        
        .btn-plan {
            background: linear-gradient(180deg, #087FFD 0%, #0857C6 100%);
        }
        
        .btn-plan a {
            text-decoration: none;
            color: white;
        }
        
        .btn-plan:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(88, 124, 253, 0.4);
        }
        
        .bg_personalities {
            background-image: url('/assets/images/personalities.png');
            background-size: cover;
            background-position: bottom;
            background-repeat: no-repeat;
            min-height: 250px;
            border-radius: 8px;
            margin: 40px 0;
        }
        
        .personalities h2 {
            padding-top: 5%;
            font-size: 24px;
            color: #fff;
            font-weight: 600;
        }
        /* .personalities h4 {
            padding-top: 10%;
        } */
        
        .personalities h4,
        .personalities a {
            color: #fff;
            font-size: 20px;
            font-weight: 400;
            line-height: 1;
        }
        /* .footer-result {
            background: #fff;
            max-width: 100%;
            width: 100%;
            margin-top: 20px;
        } */
        
        .footer-result a {
            color: #535353;
            text-decoration: none;
            font-size: 19px;
            line-height: 1.8;
        }
        
        .footer-result h4 {
            font-size: 20px;
            font-weight: 500;
            padding-top: 15px;
            margin-bottom: 0;
        }
        
        .footer-result {
            width: 100%;
            background: #fff;
            padding: 20px 0;
            margin-top: 60px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        /* แถวบน: Logo และ Email */
        /* .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        } */
        
        .footer-logo {
            display: flex;
            align-items: center;
        }
        /* .logo-smp {
            height: 50px;
            width: auto;
        } */
        
        .footer-email a {
            color: #535353;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
        }
        /* .footer-email a:hover {
    color: #FF2FB5;
} */
        /* เส้นแบ่ง */
        /* .footer-divider {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 20px 0;
} */
        /* แถวล่าง: Copyright และ Links */
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-copyright {
            color: #535353;
            font-size: 16px;
        }
        /* .footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
} */
        /* .footer-links a {
    color: #535353;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
} */
        
        .footer-result {
            width: 100%;
            background: #fff;
            padding: 30px 0;
            margin-top: 60px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        /* แถวบน: Logo และ Email */
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* margin-bottom: 20px; */
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
        }
        /* .logo-smp {
            height: 35px;
            width: auto;
        } */
        
        .footer-email a {
            color: #535353;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
        }
        /* เส้นแบ่ง */
        
        .footer-divider {
            border: none;
            border-top: 1px solid #E0E0E0;
            margin: 20px 0;
        }
        /* แถวล่าง: Copyright และ Links */
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-copyright {
            color: #535353;
            font-size: 16px;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #535353;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        /* .footer-links a:hover {
            color: #FF2FB5;
            text-decoration: underline;
        } */
        
        footer {
            color: #222;
            font-size: 18px;
            text-align: center;
            padding: 1rem;
            width: 100%;
            flex-shrink: 0;
            margin-top: auto;
            position: relative;
            /* bottom: -20px; */
            z-index: 99;
        }
        
        .music-control {
            position: fixed;
            bottom: 5px;
            right: 5px;
            z-index: 10000;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff9ddc 0%, #fd32b6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .music-control:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgb(255, 146, 253);
        }
        
        .music-control i {
            color: #ffffff;
            font-size: 22px;
        }
        
        .music-control.playing {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%,
            100% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            }
            50% {
                box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6);
            }
        }