.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 40px;
}

.c1 { width: 200px; height: 200px; top: -50px; right: -50px; }
.c2 { width: 150px; height: 150px; bottom: 50px; left: -40px; }

.logo { font-size: 56px; margin-bottom: 12px; }

.app-name {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.app-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.cards { width: 100%; }

.entry-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.entry-card:active { transform: scale(0.98); opacity: 0.92; }

.card-icon { font-size: 28px; margin-right: 14px; }
.card-info { flex: 1; }
.card-info strong { display: block; font-size: 17px; color: #1a1a2e; }
.card-info span { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.card-arrow { font-size: 20px; color: var(--primary); }

.vote-card { border-left: 4px solid var(--primary); }
.admin-card { border-left: 4px solid var(--secondary); }
