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

:root {
    --primary: #0F2C59;
    --primary-light: #F0F4FA;
    --accent: #1D9E75;
    --accent-light: #E1F5EE;
    --ink: #111827;
    --ink-muted: #4B5563;
    --line: #E5E7EB;
    --surface: #FAFAF9;
    --white: #ffffff;
    --font: 'Plus Jakarta Sans', sans-serif;
    --mono: 'DM Mono', monospace;
}

body {
    font-family: var(--font);
    background: var(--surface);
    color: var(--ink);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* GLOBAL CONTAINER 900PX */
.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* NAVBAR - Fixed & Sticky */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-badge {
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.status-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FEF3C7;
    color: #92400E;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 24px;
    border: 1px solid #FCD34D;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #D97706;
    border-radius: 50%;
}

h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1.2px;
    color: var(--primary);
    margin-bottom: 20px;
}

h1 em {
    color: var(--accent);
    font-style: normal;
}

.hero p {
    font-size: 1.15rem;
    color: var(--ink-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* MAIN CONTENT */
.main-content {
    padding-bottom: 60px;
    flex: 1;
}

section {
    margin-bottom: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 2.5rem;
    border-radius: 24px;
    transition: box-shadow 0.2s ease;
}

section:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

p {
    font-size: 1rem;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* CARD GRID 2 COLUMNS */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.card {
    padding: 1.75rem;
    border-radius: 18px;
    border: 1px solid var(--line);
}

.card.poll {
    background: #F8FAFC;
    border-left: 5px solid #3B82F6;
}

.card.vote {
    background: var(--accent-light);
    border-left: 5px solid var(--accent);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.55;
}

ul {
    margin-left: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--ink-muted);
}

li {
    margin-bottom: 0.6rem;
    line-height: 1.5;
    font-size: 0.98rem;
}

li strong {
    color: var(--primary);
}

/* FOOTER */
footer {
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 40px 0;
    font-size: 0.85rem;
    color: var(--ink-muted);
}

footer p {
    margin-bottom: 16px;
    line-height: 1.6;
}

footer p:last-child {
    margin-bottom: 0;
}

.copyright-text {
    font-size: 0.8rem;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: 16px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    }

    h1 {
    font-size: 2.2rem;
    letter-spacing: -0.8px;
    }

    .hero p {
    font-size: 1rem;
    }

    section {
    padding: 1.75rem;
    border-radius: 20px;
    }

    .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
    }

    h2 {
    font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    nav {
    height: 64px;
    }

    .logo-img {
    height: 36px;
    }

    h1 {
    font-size: 1.8rem;
    }

    .status-alert {
    font-size: 0.75rem;
    padding: 6px 14px;
    }
    
    .nav-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    }
}

.footer-about {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 30px;
}

.pse-info {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted, #6b7280);
  margin-top: 12px;
  line-height: 1.6;
}

#sdt-footer-container {
  width: 100% !important;
  /* padding: 15px 0 !important; */
  background: transparent !important;
  text-align: left !important;
  line-height: 1 !important;
  clear: both !important;
}

.sdt-text-link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 9px !important;
  color: #999 !important;
  text-decoration: none !important;
  letter-spacing: 0.5px !important;
  display: inline-block !important;
  transition: color 0.2s ease-in-out !important;
  text-transform: none !important;
}