/* ===== ONE-CLICK PERSONALITY TEST SPECIFIC STYLES ===== */
/* @charset "UTF-8"; */

/* ===== BREADCRUMB ENHANCEMENT ===== */
.breadcrumb {
    margin: 0 auto 2rem;
    padding: 1rem 0;
    max-width: 900px;
    text-align: center;
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    font-size: 0.95rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    color: var(--border-color);
    font-size: 1.2rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.15);
}

.breadcrumb span[aria-current="page"] {
    color: #a855f7;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(192, 132, 252, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.breadcrumb span[aria-current="page"]::before {
    content: '✨';
    margin-right: 0.5rem;
    font-size: 0.9em;
}

/* ===== PERSONALITY TEST PAGE ===== */
.tool-page {
    padding: 2rem 0 5rem;
    animation: fadeIn 0.6s ease-out;
}

.tool-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
    width: 100%;
}

.tool-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    border-radius: 2px;
}

.tool-subtitle {
    text-align: center;
    color: var(--text-light);
    margin: 2rem auto 3rem;
    max-width: 800px;
    font-size: 1.125rem;
    line-height: 1.6;
    padding: 0 1rem;
    display: block;
    width: 100%;
}

/* ===== PERSONALITY HEADER ===== */
.personality-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
    width: 100%;
}

.personality-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.feature-badge:hover {
    transform: translateY(-2px);
    border-color: #a855f7;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 1.25rem;
}

/* ===== SEO INTRO CARD ===== */
/* ===== SEO INTRO CARD ===== */
.seo-intro-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 2rem auto 3rem;
    border: 1px solid var(--border-color);
    border-left: 6px solid #a855f7;
    max-width: 900px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.seo-intro-card::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.seo-intro-card h2 {
    margin-top: 0;
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.seo-intro-card h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    border-radius: 2px;
}

/* ===== SPECIAL INTRO TEXT ===== */
.seo-intro-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Specific styling for the first paragraph with links */
.seo-intro-card p:first-of-type {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(192, 132, 252, 0.08));
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin: 2rem auto 3rem;
    border-left: 4px solid #a855f7;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.1);
    max-width: 650px;
}

.seo-intro-card p:first-of-type::before {
    content: '💡';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    color: #a855f7;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

/* Style the links in the special paragraph */
.seo-intro-card p:first-of-type a {
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.seo-intro-card p:first-of-type a:hover {
    color: white;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(168, 85, 247, 0.3);
}

.seo-intro-card p:first-of-type a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    transition: width 0.3s ease;
}

.seo-intro-card p:first-of-type a:hover::after {
    width: 100%;
}

/* Add more space between sections */
.seo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--border-color);
}

/* ===== MAGIC SECTION (Test Landing) ===== */
.test-landing-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.magic-section {
    text-align: center;
    padding: 2rem 0;
    margin: 3rem 0;
}

.magic-header {
    margin-bottom: 3rem;
    text-align: center;
}

.magic-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.magic-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* ===== MAGIC CIRCLE ===== */
.magic-circle-wrapper {
    position: relative;
    margin: 3rem auto;
    width: 300px;
    height: 300px;
}

.magic-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 
        0 20px 40px rgba(168, 85, 247, 0.3),
        0 0 60px rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.magic-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent 30%
    );
    animation: rotate 10s linear infinite;
}

.circle-inner {
    width: 270px;
    height: 270px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 1rem;
    box-sizing: border-box;
    margin: 0 auto;
}

.circle-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.circle-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    text-align: center;
}

.circle-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 200px;
    line-height: 1.3;
    text-align: center;
}

/* Animated dots around circle */
.circle-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.dot-1 { top: -4px; left: 50%; animation: pulseDot 2s infinite; }
.dot-2 { top: 50%; right: -4px; animation: pulseDot 2s infinite 0.5s; }
.dot-3 { bottom: -4px; left: 50%; animation: pulseDot 2s infinite 1s; }
.dot-4 { top: 50%; left: -4px; animation: pulseDot 2s infinite 1.5s; }
.dot-5 { top: 20%; right: 20%; animation: pulseDot 2s infinite 0.3s; }
.dot-6 { bottom: 20%; left: 20%; animation: pulseDot 2s infinite 0.8s; }

/* Magic features around the circle */
.magic-features-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -50px;
    left: -50px;
    z-index: 3;
}

.magic-feature-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.magic-feature-circle:hover {
    transform: scale(1.1);
    border-color: #a855f7;
}

.feature-1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-2 {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.feature-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-circle-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.feature-circle-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* Features below the circle */
.magic-features-below {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.magic-feature-below {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.magic-feature-below:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
    box-shadow: var(--shadow-lg);
}

.feature-below-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.feature-below-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--text-color);
    text-align: center;
}

.feature-below-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

/* ===== TEST BUTTON CONTAINER ===== */
.test-button-container {
    margin: 4rem 0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#personalityForm {
    text-align: center;
}

.magic-test-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    margin: 0 auto;
    text-align: center;
}

.magic-test-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.5);
}

.btn-sparkle {
    animation: sparkle 2s infinite;
}

.btn-text {
    font-weight: 700;
    text-align: center;
}

.btn-icon {
    font-size: 1.5rem;
    text-align: center;
}

.click-counter {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-light);
    text-align: center;
}

.counter-icon {
    font-size: 1.5rem;
}

.counter-content {
    text-align: center;
}

.counter-number {
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
}

.counter-label {
    font-size: 0.875rem;
    text-align: center;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-personality {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.how-it-works-personality h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step-card-personality {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    margin: 0 auto;
}

.step-card-personality:hover {
    border-color: #a855f7;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #a855f7;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.step-content {
    text-align: center;
}

.step-content h4 {
    margin: 0.5rem 0;
    font-size: 1.125rem;
    text-align: center;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.testimonial-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    margin: 0 auto;
}

.testimonial-content {
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    text-align: center;
}

.author-name {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    text-align: center;
}

.author-title {
    color: var(--text-light);
    font-size: 0.85rem;
    text-align: center;
}

/* ===== RESULTS SECTION ===== */
.results-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
    text-align: center;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(192, 132, 252, 0.1));
    border-radius: var(--radius);
    border: 1px solid rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.results-header::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.results-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-align: center;
}

.results-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Results Card */
.results-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

/* Personality Core */
.personality-core {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
}

.core-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.core-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.core-title {
    text-align: center;
}

.core-title h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    text-align: center;
}

.type-badge-personality {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

.core-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-color);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.accuracy-meter {
    margin-top: 1.5rem;
    text-align: center;
}

.accuracy-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.accuracy-label {
    color: var(--text-color);
    text-align: center;
}

.accuracy-value {
    font-weight: 700;
    color: #a855f7;
    text-align: center;
}

.meter-bar {
    height: 10px;
    background: var(--bg-secondary);
    border-radius: 5px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    border-radius: 5px;
    transition: width 1s ease;
}

/* Insight Card */
.insight-card-personality {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    text-align: center;
}

.insight-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.insight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.insight-title {
    text-align: center;
}

.insight-title h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    text-align: center;
}

.insight-subtitle {
    color: var(--text-light);
    font-size: 0.875rem;
    text-align: center;
}

.insight-content {
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: #a855f7;
    opacity: 0.2;
    line-height: 1;
    text-align: center;
}

.insight-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
    padding: 0 2rem;
    margin: 0;
    text-align: center;
}

.reaction-section-personality {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.reaction-label {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.reaction-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.reaction-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-color);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.reaction-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.accurate-btn:hover {
    background: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

.somewhat-btn:hover {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.wrong-btn:hover {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}

.reaction-emoji {
    font-size: 1.25rem;
}

/* Stats Card */
.stats-card-personality {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-header h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    text-align: center;
}

.stats-subtitle {
    color: var(--text-light);
    font-size: 0.875rem;
    text-align: center;
}

.stats-grid-personality {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item-personality {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    text-align: left;
}

.stat-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.stat-value {
    font-weight: 700;
    color: #a855f7;
}

.stat-bar {
    height: 8px;
    background: var(--bg-color);
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    border-radius: 4px;
    transition: width 1s ease;
}

/* ===== SHARE SECTION ===== */
.share-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    text-align: center;
}

.share-section h4 {
    margin-top: 0;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.share-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
    margin-top: 0;
    font-size: 1.125rem;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    min-width: 140px;
    text-decoration: none;
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2, #1a8cd8);
    color: white;
}

.share-btn.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
    color: white;
}

.share-btn.copy {
    background: var(--bg-secondary);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.share-btn.twitter:hover {
    background: linear-gradient(135deg, #1a8cd8, #1DA1F2);
}

.share-btn.facebook:hover {
    background: linear-gradient(135deg, #365899, #4267B2);
}

.share-btn.copy:hover {
    background: var(--bg-color);
    border-color: #a855f7;
    color: #a855f7;
}

.share-icon {
    font-size: 2rem;
    text-align: center;
}

.share-text {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
}

/* ===== PERSONALITY ACTION BUTTONS ===== */
.personality-action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.action-btn-personality {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    min-height: 70px;
    position: relative;
    overflow: hidden;
}

.action-btn-personality::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.action-btn-personality:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    color: white;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background: transparent;
    color: #a855f7;
    border: 2px solid #a855f7;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.1);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(168, 85, 247, 0.4);
}

.btn-outline:hover {
    background: #a855f7;
    color: white;
}

.btn-icon {
    font-size: 1.5rem;
    text-align: center;
}

/* ===== GLOBAL STATS ===== */
.global-stats-personality {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 3rem auto;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 900px;
}

.global-stats-personality h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.global-stats-personality h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    border-radius: 2px;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.global-stat-card {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
}

.global-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 0.5rem;
    text-align: center;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
}

/* ===== RELATED TOOLS ===== */
.related-tools {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 3rem auto;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    max-width: 900px;
    text-align: center;
}

.related-tools h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.related-tools h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    border-radius: 2px;
}

.tools-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.tool-card-mini {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card-mini:hover {
    border-color: #a855f7;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tool-icon-mini {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    text-align: center;
}

.tool-card-mini:hover .tool-icon-mini {
    transform: scale(1.1);
}

.tool-name-mini {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.tool-desc-mini {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    text-align: center;
}

/* ===== FUN FACT CARD ===== */
.fun-fact-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(192, 132, 252, 0.08));
    border-radius: var(--radius);
    padding: 2rem;
    margin: 3rem auto;
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    text-align: center;
}

.fact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.fact-content {
    flex: 1;
    text-align: center;
}

.fact-content p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.125rem;
    text-align: center;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 4rem auto;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    max-width: 900px;
    text-align: center;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2rem;
    position: relative;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    border-radius: 2px;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.faq-item:hover {
    border-color: #a855f7;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-color);
}

.faq-question[aria-expanded="true"] {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-question h3 {
    margin: 0;
    flex: 1;
    font-size: 1.125rem;
    color: var(--text-color);
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a855f7;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle:hover {
    background: rgba(168, 85, 247, 0.1);
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--bg-color);
}

.faq-answer[style*="max-height"] {
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    padding: 2rem;
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: left;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(192, 132, 252, 0.1));
    border-radius: var(--radius);
    padding: 4rem;
    margin: 4rem auto;
    border: 1px solid rgba(168, 85, 247, 0.2);
    max-width: 900px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '✨';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.cta-section::after {
    content: '🧠';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.cta-content h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-button {
    position: relative;
    z-index: 1;
    min-width: 250px;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #a855f7, #c084fc);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
}

/* ===== AD SECTIONS ===== */
.ad-section {
    margin: 2.5rem auto;
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    padding: 1.5rem;
    text-align: center;
}

.ad-728 {
    min-height: 90px;
    max-width: 728px;
}

.ad-300 {
    min-height: 250px;
    max-width: 300px;
}

.ad-post-results {
    margin: 2rem auto;
    text-align: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    max-width: 728px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .tool-title {
        font-size: 2.5rem;
    }
    
    .seo-intro-card,
    .how-it-works-personality,
    .results-container,
    .results-card,
    .global-stats-personality,
    .related-tools,
    .faq-section,
    .cta-section {
        max-width: 95%;
        padding: 2.5rem;
    }
    
    .magic-circle-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .circle-inner {
        width: 220px;
        height: 220px;
    }
    
    .ad-728 {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .tool-page {
        padding: 1rem 0 3rem;
    }
    
    .tool-title {
        font-size: 2rem;
    }
    
    .tool-subtitle {
        font-size: 1rem;
        margin: 1.5rem auto 2rem;
    }
    
    .seo-intro-card {
        padding: 2rem 1.5rem;
        margin: 1.5rem auto;
    }
    
    .seo-intro-card h2 {
        font-size: 1.75rem;
    }
    
    .seo-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 1.5rem;
    }
    
    .magic-header h2 {
        font-size: 2rem;
    }
    
    .magic-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .magic-circle-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .circle-inner {
        width: 170px;
        height: 170px;
    }
    
    .circle-icon {
        font-size: 3rem;
    }
    
    .circle-text {
        font-size: 1.5rem;
    }
    
    .circle-subtext {
        font-size: 1rem;
    }
    
    .magic-features-circle {
        width: 270px;
        height: 270px;
        top: -35px;
        left: -35px;
    }
    
    .magic-feature-circle {
        width: 60px;
        height: 60px;
    }
    
    .feature-circle-icon {
        font-size: 1.25rem;
    }
    
    .feature-circle-title {
        font-size: 0.75rem;
    }
    
    .magic-features-below {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .magic-test-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .results-header {
        padding: 2rem 1.5rem;
    }
    
    .results-header h2 {
        font-size: 2rem;
    }
    
    .results-card {
        padding: 1.5rem;
    }
    
    .personality-core,
    .insight-card-personality,
    .stats-card-personality,
    .share-section,
    .global-stats-personality,
    .related-tools,
    .faq-section,
    .cta-section {
        padding: 1.5rem;
    }
    
    .insight-text {
        padding: 1.5rem;
        font-size: 1.125rem;
    }
    
    .personality-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-badge {
        width: 200px;
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .reaction-buttons {
        flex-direction: column;
    }
    
    .reaction-btn {
        width: 100%;
        justify-content: center;
    }
    
    .personality-action-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-btn-personality {
        min-height: 60px;
        padding: 1.25rem;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .tools-grid-mini {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .share-btn {
        flex-direction: row;
        justify-content: center;
        padding: 1rem;
    }
    
    .ad-728 {
        display: none;
    }
    
    .ad-300 {
        max-width: 90%;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .tool-title {
        font-size: 1.75rem;
    }
    
    .tool-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .seo-intro-card {
        padding: 1.5rem 1rem;
    }
    
    .magic-header h2 {
        font-size: 1.75rem;
    }
    
    .magic-circle-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .circle-inner {
        width: 150px;
        height: 150px;
    }
    
    .circle-icon {
        font-size: 2.5rem;
    }
    
    .circle-text {
        font-size: 1.25rem;
    }
    
    .circle-subtext {
        font-size: 0.9rem;
    }
    
    .results-header h2 {
        font-size: 1.75rem;
    }
    
    .type-badge-personality {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .insight-text {
        padding: 1.25rem;
        font-size: 1.125rem;
    }
    
    .global-stats-personality,
    .related-tools,
    .faq-section,
    .cta-section {
        padding: 1.5rem 1rem;
        margin: 2rem auto;
    }
    
    .global-stat-card {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .tools-grid-mini {
        grid-template-columns: 1fr;
    }
    
    .tool-card-mini {
        padding: 1.5rem;
    }
    
    .tool-icon-mini {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .tool-name-mini {
        font-size: 1.125rem;
    }
    
    .tool-desc-mini {
        font-size: 0.85rem;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        min-width: auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .step-card-personality {
        padding: 1.25rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .magic-test-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .ad-300 {
        min-height: 150px;
        margin: 1.5rem auto;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .tool-title {
        font-size: 1.5rem;
    }
    
    .personality-features {
        gap: 0.75rem;
    }
    
    .feature-badge {
        min-width: 100%;
    }
    
    .stats-cards,
    .tools-grid-mini,
    .magic-features-below {
        gap: 1rem;
    }
    
    .global-stat-card,
    .tool-card-mini,
    .magic-feature-below {
        padding: 1rem;
    }
    
    .faq-section,
    .cta-section {
        padding: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .magic-feature-circle:hover,
    .benefit:hover,
    .step-card-personality:hover,
    .global-stat-card:hover,
    .tool-card-mini:hover,
    .magic-feature-below:hover,
    .share-btn:hover,
    .action-btn-personality:hover,
    .type-badge-personality:hover,
    .feature-badge:hover,
    .reaction-btn:hover {
        transform: none !important;
    }
    
    .magic-feature-circle:active,
    .benefit:active,
    .step-card-personality:active,
    .global-stat-card:active,
    .tool-card-mini:active,
    .magic-feature-below:active,
    .share-btn:active,
    .action-btn-personality:active {
        transform: scale(0.98) !important;
    }
    
    .magic-test-btn:hover {
        transform: none !important;
    }
    
    .magic-test-btn:active {
        transform: scale(0.98) !important;
    }
}