:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-red: #ff3333;
    --accent-teal: #13BFD7;
    --card-bg: #1a1a1a;
    --font-main: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-teal);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-teal);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 51, 0.3);
}

/* Features/Issues Section */
.issues {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--accent-red);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: transform var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-teal);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 191, 215, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-overlay {
    opacity: 1;
}

.see-more-btn {
    padding: 15px 30px;
    background: #fff;
    color: var(--bg-color);
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.card:hover .see-more-btn {
    transform: translateY(0);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-teal);
}

.card p {
    color: #ccc;
}

.card a {
    color: var(--accent-teal);
    text-decoration: none;
    font-size: 0.9em;
    margin-left: 5px;
    position: relative;
    z-index: 10;
}

/* Modal Styles */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-container.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--accent-teal);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    display: none;
}

.modal.active {
    display: block;
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.modal h3 {
    color: var(--accent-teal);
    font-size: 2rem;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    background: var(--card-bg);
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.modal h4 {
    color: var(--accent-red);
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #ddd;
}

.modal ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #ccc;
}

.modal ul li {
    margin-bottom: 5px;
}

.modal-source {
    display: inline-block;
    color: var(--accent-teal);
    text-decoration: underline;
    font-weight: bold;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #333;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Distraction Section */
.distraction {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.05), rgba(19, 191, 215, 0.05));
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 1px solid #333;
}

.content-block h3 {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 20px;
    text-align: center;
}

.content-block .lead {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ccc;
}

.cause-list {
    list-style: none;
    margin: 30px 0;
}

.cause-list li {
    padding: 20px 0;
    border-bottom: 1px solid #333;
    line-height: 1.8;
}

.cause-list li:last-child {
    border-bottom: none;
}

.cause-list strong {
    color: var(--accent-teal);
    font-size: 1.2rem;
}

.content-block hr {
    margin: 40px 0;
    border: none;
    border-top: 2px solid #333;
}

.conclusion {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.conclusion strong {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--accent-red);
}

.final-statement {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--accent-red);
    text-transform: uppercase;
    margin-top: 40px;
}

/* Scandal Cards */
.scandal-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
    transition: all var(--transition-speed);
}

.scandal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

.scandal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.scandal-header h3 {
    color: var(--text-color);
    font-size: 1.4rem;
}

.scandal-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.scandal-badge.mp {
    background: var(--accent-red);
    color: white;
}

.scandal-badge.activist {
    background: #ff6b6b;
    color: white;
}

.scandal-badge.resigned {
    background: #666;
    color: white;
}

.scandal-badge.dropped {
    background: #999;
    color: white;
}

.scandal-badge.suspended {
    background: #ffa500;
    color: white;
}

.scandal-role {
    color: var(--accent-teal);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.scandal-incident {
    margin: 15px 0;
    line-height: 1.8;
}

.scandal-outcome {
    margin: 15px 0;
    color: #ccc;
    font-style: italic;
}

.scandal-source {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-teal);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.scandal-source:hover {
    color: var(--text-color);
}

.scandal-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
}

.scandal-summary {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(19, 191, 215, 0.1));
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--accent-red);
}

.scandal-summary h3 {
    color: var(--accent-red);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.scandal-summary ul {
    list-style: none;
    margin: 20px 0;
}

.scandal-summary ul li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.pattern-note {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-teal);
    text-align: center;
}

/* Voter Education Section */
.voter-education {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(19, 191, 215, 0.05), rgba(255, 51, 51, 0.05));
}

.voter-education .content-block {
    max-width: 900px;
    margin: 0 auto;
}

.voter-education h3 {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 20px;
}

.voter-education .lead {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 30px;
    font-weight: 700;
}

.policy-reality {
    list-style: none;
    margin: 30px 0;
}

.policy-reality li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-reality li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 1.5rem;
    font-weight: 700;
}

.voter-message {
    font-size: 1.3rem;
    margin: 30px 0;
    padding: 20px;
    background: rgba(19, 191, 215, 0.1);
    border-left: 4px solid var(--accent-teal);
    border-radius: 8px;
}

.final-message {
    font-size: 1.1rem;
    color: #ccc;
    font-style: italic;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}