:root {
  --bg-main: hsl(240, 8%, 5%);
  --bg-panel: #1A2230;
  --border: #1F2937;

  --text-main: #F8F8F8;
  --text-muted: #9BA2AE;

  --accent: #8B86FF;
  --accent-hover: #7B73E5;

  --success: #ACEECB;
  --danger: #FCA5A5;

  --radius-lg: 16px;
  --radius-full: 9999px;
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

.radius-1{
    border-radius: 1rem!important;
}

.dot-list {
  list-style-type: disc;
  padding-left: 1.25rem; /* space for dots */
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo img {
  height: 40px;
}

.connect-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
}

.connect-btn:hover {
  background: var(--accent-hover);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 80px;
}

.proposal-header h1 {
  font-size: 26px;
  margin-bottom: 8px;
}

.status {
  background: rgba(139, 134, 255, 0.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}

.meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 6px;
}

/* DAO Layout */
.dao-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.dao-content,
.dao-vote {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

/* Voting */
.vote-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vote-btn {
  height: 45px;
  border-radius: var(--radius-full);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.vote-for {
  background: var(--success);
  color: #0E3E2D;
}

.vote-against {
  background: var(--danger);
  color: #2E0C18;
}

.vote-abstain {
  background: #374151;
  color: white;
}

.results {
  margin-top: 20px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
}

/* Desktop Snapshot behavior */
@media (min-width: 1024px) {
  .dao-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
  }

  .dao-vote {
    position: sticky;
    top: 96px;
    height: fit-content;
  }
}
/* Manrope base */
.font-manrope {
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Fix Manrope bold rendering */
h1, h2 {
  letter-spacing: -0.015em;
}

/* Trust Wallet styles preserved */
@keyframes slide-in-one-tap {
  from { transform: translateY(80px); }
  to { transform: translateY(0px); }
}

.trust-wallet-one-tap .box {
  animation: slide-in-one-tap 0.5s cubic-bezier(0, 0, 0, 1.43);
}

/* Improve text readability */
p {
  line-height: 1.6;
}

/* Mobile polish */
@media (max-width: 640px) {
  h1 {
    font-size: 1.5rem;
  }
}
