What’s Your American Political DNA? [2026 Quiz]
10 shocking questions that reveal your TRUE political identity. Over 47,000 Americans took this quiz today — results will SHOCK you.
.te-quiz{max-width:780px;margin:0 auto;font-family:-apple-system,BlinkMacSystemFont,’Segoe UI’,sans-serif}
.te-quiz h1{font-size:2rem;color:#1a1a1a;text-align:center;margin-bottom:8px}
.te-quiz .subtitle{text-align:center;color:#666;margin-bottom:30px;font-size:1.1rem}
.te-progress{background:#e9ecef;border-radius:10px;height:8px;margin-bottom:25px}
.te-progress-bar{background:linear-gradient(90deg,#dc3545,#fd7e14);height:8px;border-radius:10px;transition:width .4s}
.te-question{background:#fff;border:2px solid #e9ecef;border-radius:12px;padding:28px;margin-bottom:20px;box-shadow:0 2px 8px rgba(0,0,0,.06)}
.te-question h3{font-size:1.2rem;margin-bottom:18px;color:#1a1a1a;line-height:1.5}
.te-option{display:block;width:100%;text-align:left;padding:14px 18px;margin-bottom:10px;border:2px solid #dee2e6;border-radius:8px;background:#fff;cursor:pointer;font-size:1rem;transition:all .2s}
.te-option:hover{border-color:#dc3545;background:#fff5f5;transform:translateX(4px)}
.te-option.selected{border-color:#dc3545;background:#fff5f5;font-weight:600}
.te-option.correct{border-color:#28a745;background:#f0fff4}
.te-option.wrong{border-color:#dc3545;background:#fff5f5}
.te-btn{background:linear-gradient(135deg,#dc3545,#c82333);color:#fff;border:none;padding:14px 36px;border-radius:8px;font-size:1.1rem;font-weight:700;cursor:pointer;margin-top:10px}
.te-btn:hover{opacity:.9}
.te-btn:disabled{opacity:.5;cursor:not-allowed}
.te-result{display:none;text-align:center;padding:40px 20px;background:#fff;border-radius:16px;box-shadow:0 4px 20px rgba(0,0,0,.1)}
.te-result h2{font-size:2.2rem;margin-bottom:10px}
.te-score-circle{width:130px;height:130px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:20px auto;font-size:2.5rem;font-weight:900;color:#fff}
.te-share-btns a{display:inline-block;padding:12px 24px;border-radius:8px;color:#fff;font-weight:700;text-decoration:none;margin:5px}
.te-counter{background:#fff3cd;border-left:4px solid #ffc107;padding:12px 16px;border-radius:0 8px 8px 0;margin-bottom:20px;font-size:.95rem}
🇺🇸 What’s Your American Political DNA?
10 questions that reveal your TRUE political identity — results will SHOCK you
const questions = [
{q:”The US government spends too much money on:”, opts:[“Foreign aid and wars abroad”,”Social welfare and entitlements”,”Military defense”,”All of the above — it’s out of control”],scores:[2,3,1,0]},
{q:”The BIGGEST threat to America right now is:”, opts:[“Illegal immigration and open borders”,”Big corporations and billionaires”,”China and foreign adversaries”,”The federal government itself”],scores:[1,3,2,0]},
{q:”What should happen with the minimum wage?”, opts:[“Raise it to $20+/hour nationally”,”Keep it where it is”,”Abolish it — let the market decide”,”States should decide, not DC”],scores:[4,2,0,1]},
{q:”On gun rights, you believe:”, opts:[“The Second Amendment is absolute — no restrictions”,”Common-sense background checks only”,”Ban assault weapons and high-capacity magazines”,”Repeal and replace the Second Amendment”],scores:[0,2,4,5]},
{q:”Regarding climate change and energy:”, opts:[“Drill baby drill — energy independence now”,”Transition to renewables within 10 years”,”Climate change is a hoax pushed by elites”,”Nuclear power is the real answer”],scores:[0,4,1,2]},
{q:”On immigration, America should:”, opts:[“Build the wall and deport all illegals”,”Create a pathway to citizenship for DACA”,”Accept more refugees — it’s the American way”,”Merit-based legal immigration only”],scores:[0,4,3,1]},
{q:”The American media is:”, opts:[“Totally rigged by the Left”,”Owned by corporations serving the Right”,”Both sides are corrupt propaganda machines”,”Mostly fair with some bias”],scores:[0,5,3,2]},
{q:”Healthcare in America should be:”, opts:[“100% government-run Medicare for All”,”Private insurance with more competition”,”A public option alongside private plans”,”Exactly as it is — don’t touch it”],scores:[5,0,3,1]},
{q:”Who is MOST responsible for America’s problems?”, opts:[“Career politicians in Washington DC”,”Wall Street and the ultra-wealthy”,”Foreign countries like China”,”Liberal universities and the media”],scores:[1,4,2,0]},
{q:”Your vision for America in 2030:”, opts:[“Return to traditional values and strength”,”More equality, more diversity, more progress”,”Total government overhaul — drain the swamp”,”America First — economy, borders, security”],scores:[0,5,3,1]},
];
const profiles = [
{min:0,max:8,title:”🦅 MAGA Patriot”,color:”#dc3545″,desc:”You are America First to the core. You believe in strong borders, individual freedom, and returning America to its former greatness. Nearly 35% of Americans share your views.”},
{min:9,max:17,title:”🏛️ Traditional Conservative”,color:”#c0392b”,desc:”You lean right but value institutions. You want lower taxes, strong defense, and personal responsibility. You represent the backbone of the Republican Party.”},
{min:18,max:26,title:”⚖️ Swing Vote Independent”,color:”#f39c12″,desc:”You are the MOST POWERFUL voter in America. Both parties fight for you. You judge each issue on its merits — politicians fear and need you equally.”},
{min:27,max:35,title:”🌊 Progressive Democrat”,color:”#3498db”,desc:”You believe in systemic change, social justice, and expanding the role of government to protect the vulnerable. You represent the growing progressive wing of America.”},
{min:36,max:50,title:”🌹 Democratic Socialist”,color:”#8e44ad”,desc:”You want fundamental transformation of American society — universal healthcare, free education, and taxing the ultra-wealthy. You’re part of America’s fastest-growing political movement.”},
];
let current = 0, totalScore = 0, answers = [];
function renderQuestion() {
const q = questions[current];
document.getElementById(‘progress’).style.width = (current/10*100)+’%’;
document.getElementById(‘q-counter’).textContent = ‘Question ‘+(current+1)+’ of 10′;
let html = ‘
‘+(current+1)+’. ‘+q.q+’
‘;
q.opts.forEach((opt,i) => {
html += ‘‘;
});
html += ‘
‘;
document.getElementById(‘quiz-container’).innerHTML = html;
}
function selectAnswer(i) {
document.querySelectorAll(‘.te-option’).forEach(b => b.classList.remove(‘selected’));
document.getElementById(‘opt-‘+i).classList.add(‘selected’);
document.getElementById(‘next-btn’).disabled = false;
answers[current] = i;
}
function nextQuestion() {
if(answers[current] === undefined) return;
totalScore += questions[current].scores[answers[current]];
current++;
if(current totalScore >= p.min && totalScore {
count += Math.floor(Math.random()*3);
document.getElementById(‘live-count’).textContent = count.toLocaleString();
}, 3000);
renderQuestion();